2009-12-17 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / metadata / ChangeLog
1 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2
3         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
4         conventions.
5
6 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
7
8         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
9
10 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
11
12         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
13         as they are no longer used.
14         
15          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
16
17         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
18
19 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
20
21         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
22         if the owner class has not been finished before returning reflection_info.      
23
24         Fixes #565127.
25
26 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
27
28         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
29         param doesn't have custom attributes. Fixes #565117.
30
31         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
32         #565120.
33
34 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
35
36         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
37
38 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
39
40         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
41         same amount done by a core-clr enabled runtime.
42
43 2009-12-15  Marek Habersack  <mhabersack@novell.com>
44
45         * appdomain.c (mono_make_shadow_copy): make sure access mode of
46         the target files is reset to writable by owner and readable by
47         everyone else to prevent problems when updating shadow copies of
48         files whose source is read-only. Fixes bug #556884
49
50 2009-12-15  Mark Probst  <mark.probst@gmail.com>
51
52         * class.c (mono_generic_class_get_class): Allocate the generic
53         class via malloc again, so that it can be freed when any one of
54         the images of its constituent types is closed.
55
56         * metadata.c: When closing an image, don't free generic insts and
57         generic classes right away, but put them into a list for later
58         freeing.
59
60         * image.c, metadata-internals.h: Store the free list and in the
61         second pass of closing an image, free it.
62
63 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
64
65         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
66
67         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
68         types in type_hash.
69
70         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
71
72 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
73
74         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
75         user type.
76
77         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
78         is used.
79
80 2009-12-14  Miguel de Icaza  <miguel@novell.com>
81
82         * verify.c (mono_method_verify): The Unused opcodes produce an
83         InvalidProgramException on .NET
84
85 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
86
87         * loader.c (mono_method_get_header): Move assert after the verifier
88         has been called on the method header.
89
90 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
91
92         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
93
94         * appdomain.c: Bump corlib version.
95
96 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
97
98         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
99         types as well since otherwise generic instances would not return UT as arguments but
100         their undelying system type.
101
102         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
103         to reflect the fact that they can have now multiple different types.
104
105         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
106
107         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
108
109         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
110
111         * reflection.c (mono_reflection_register_with_runtime): Init super types
112         if the image is not dynamic.
113
114         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
115         check if the generic type definition is a TypeBuilder.
116
117         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
118         doesn't belong to a dynamic image, skip initialization.
119
120         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
121         base definition is not a dynamic type.
122
123 2009-12-11  Marek Habersack  <mhabersack@novell.com>
124
125         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
126         mono_profiler_string_allocation
127
128         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
129         if string profiling is enabled, call
130         mono_profiler_string_allocation
131
132         * profiler.h: added two MonoProfileFlags -
133         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
134         installation functions for the hooks below.
135
136         * profiler-private.h, profiler.c: added two hooks:
137         mono_profiler_string_allocation called whenever a string is
138         allocated by InternalAllocateStr and mono_profiler_iomap called
139         whenever IOMAP code performs an adjustement on a file path.
140
141 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
142
143         * boehm-gc.c: fixed race condition while getting the target of a
144         disappearing link (bug #522233).
145
146 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
147
148         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
149         the error.
150
151 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
152
153         * reflection.c: Add mono_reflection_register_with_runtime icall to
154         allow a MonoGenericClass to register itself as the managed mirror of
155         a given generic instance.
156         This is a temporary workaround until all MGC instantiation happens in
157         managed code.
158
159         * object-internals.h: Ditto.
160
161         * icall-def.h: Ditto.
162
163 2009-12-10  Mark Probst  <mark.probst@gmail.com>
164
165         * sgen-gc.c (find_in_remsets): Also search the generic store
166         remsets.
167
168 2009-12-10  Mark Probst  <mark.probst@gmail.com>
169
170         * sgen-gc.c: Don't access class names in debugging code when
171         unloading a domain, because they might not be valid anymore.
172
173 2009-12-10  Mark Probst  <mark.probst@gmail.com>
174
175         * domain.c, domain-internals.h: New function mono_domain_unset().
176
177         * appdomain.c (unload_thread_main): Detach the thread again at the
178         end.
179
180         * threads.c: When a thread exists or is detached, unset its domain
181         so that it's NULL when, for example, a pthread destructor runs.
182
183         * sgen-gc.c: Assert that there is no domain set after a thread is
184         done.
185
186 2009-12-10  Mark Probst  <mark.probst@gmail.com>
187
188         * class.c (mono_generic_class_get_class),
189         metadata.c (free_generic_class): Allocate generic MonoClass's from
190         the image mempool, not via malloc.  The problem with malloc is
191         that when unloading a domain those classes are freed before
192         clearing the heap and SGen needs the classes.  Rewriting the
193         unloading code to do the free later would be more work and there's
194         no point in using malloc anyway.
195
196 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
197
198         * loader.c (mono_method_signature): Always call mono_loader_unlock 
199         before returning.
200
201 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
202
203         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
204         user string blobs.
205
206         * verify-internals.h: Add new function to the internal API.
207
208         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
209         check if it's a valid string.
210
211         * object.c (mono_ldstr): Ditto.
212
213         Fixes #561943.
214
215 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
216
217         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
218         from a method before returning it. This is the expected behavior.
219
220 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
221
222         * reflection.c (inflate_method): Handle the case of a regular system type.
223
224 2009-12-08  Mark Probst  <mark.probst@gmail.com>
225
226         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
227         gathering code.
228
229         * mempool.c, mempool-internals.h: New function
230         mono_mempool_get_bytes_allocated().
231
232         * Makefile.am: sgen-pinning-stats.c added.
233
234 2009-12-08  Mark Probst  <mark.probst@gmail.com>
235
236         * sgen-gc.c (create_allocator): Only use the fast path if the
237         object size is within the small object size limit.
238
239 2009-12-07  Mark Probst  <mark.probst@gmail.com>
240
241         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
242         possibly adding padding to sizeof (GCMemSection).
243
244 2009-12-07  Mark Probst  <mark.probst@gmail.com>
245
246         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
247         reference is not in the nursery.
248
249 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
250
251         * class.c (mono_class_from_typeref): Bounds check idx against the 
252         assemblyref table.
253
254 2009-12-07  Mark Probst  <mark.probst@gmail.com>
255
256         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
257         through the potential roots, then sort the results and find the
258         pinned objects from there.
259
260         * Makefile.am: sgen-pinning.c added.
261
262 2009-12-07  Mark Probst  <mark.probst@gmail.com>
263
264         * sgen-gc.c: Record generic stores in specialized remset buffers.
265
266 2009-12-06  Mark Probst  <mark.probst@gmail.com>
267
268         * sgen-gc.c: Make pinned chunks the same size as major heap
269         sections, and align them as well, so that we can check whether an
270         object is in a pinned chunk or a major section in constant time.
271
272 2009-12-06  Mark Probst  <mark.probst@gmail.com>
273
274         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
275
276 2009-12-06  Mark Probst  <mark.probst@gmail.com>
277
278         * sgen-gc.c: Make all major heap sections the same size (currently
279         128k) and allocate them on aligned addresses.  Small heap sections
280         give us better granularity with pinned objects - we can free up
281         much more memory.
282
283 2009-12-06  Mark Probst  <mark.probst@gmail.com>
284
285         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
286         output removed.
287
288 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
289
290         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
291
292         * mono/metadata/assembly.c: When opening an assembly image, pass the real
293         names in addition to the runtime generated one.
294
295         * mono/metadata/image.h: Add a function to take the real name of the assembly
296         image.
297
298         * mono/metadata/image.c: If a real name has been passed to load an assembly,
299         use it instead of the runtime generated one.
300
301         Code is contributed under MIT/X11 license.
302
303 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
304
305         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
306         before the other checks to prevent problems if the DateTime class is blittable.
307         Hopefully fixes #559600.
308
309 2009-12-05  Mark Probst  <mark.probst@gmail.com>
310
311         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
312         returns the largest string length that will not be put into the
313         LOS.
314
315         * sgen-gc.c, gc-internal.h: New function that returns the largest
316         object size that will not be put into the LOS.
317
318         * appdomain.c: Bump corlib version.
319
320 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
321
322         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
323
324         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
325
326 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
327
328         * reflection.c (inflate_method): Fix signature.
329
330         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
331         in managed code.
332
333 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
334
335         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
336
337 2009-12-03  Mark Probst  <mark.probst@gmail.com>
338
339         * sgen-gc.c: Abstract to-space handling.
340
341 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
342
343         * loader.c (find_method_in_class): Ignore methods with broken signatures.
344
345         Fixes #559906.
346
347 2009-12-03  Mark Probst  <mark.probst@gmail.com>
348
349         * sgen-gc.c: Only add references from outside the nursery to
350         within the nursery to the global remset list.
351
352 2009-12-03  Mark Probst  <mark.probst@gmail.com>
353
354         * appdomain.c (create_exceptions): Set the domain temporarily if
355         necessary to avoid cross-domain references.
356
357 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
358
359         * verify.c (get_stack_type): Return that the type is invalid instead of
360         asserting.
361
362         * verify.c (mono_method_verify): Verify that all locals and arguments
363         have valid stack types.
364
365         Fixes #559913.
366
367 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
368
369         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
370         bounds checking overflow aware.
371
372         Fixes #559910.
373
374 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
375
376         * verify.c (do_invoke_method): Check for invalid method signatures.
377
378         Fixes #553450.
379
380 2009-12-02  Jb Evain  <jbevain@novell.com>
381
382         * appdomain.c (MONO_CORLIB_VERSION): bump.
383         * icall-def.h (get_base_definition): renamed to get_base_method
384         and add a boolean argument indicating we want the original
385         method definition, or the immediate base method.
386         * icall.c: apply the get_base_definition to get_base_method change.
387
388 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
389
390         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
391
392         Fixes #558042.
393
394 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
395
396         * class.c: remove asserts for invalid type token in
397         mono_class_name_from_token(), mono_assembly_name_from_token() and
398         mono_class_create_from_typedef () (fixes bug #553318).
399
400 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
401
402         * metadata.c, class.c, loader.c: remove assert after bsearch() for
403         incorrect assemblies (bug #553322).
404
405 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
406
407         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
408
409         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
410
411         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
412
413         * class.c (inflate_generic_context): Ditto.
414
415         * loader.c (method_from_methodspec): Ditto.
416
417         Fixes #558230.
418
419 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
420
421         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
422
423         * class.c (mono_class_create_from_typespec): Ditto.
424
425         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
426
427         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
428
429         Fixes #558184.
430
431 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
432
433         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
434
435         * verify.c (verify_delegate_compatibility): Ditto.
436
437         * verify.c (do_newobj): Ditto.
438
439         Fixes #558046.
440
441 2009-12-02  Mark Probst  <mark.probst@gmail.com>
442
443         * sgen-gc.c: Use a gray queue instead of requiring that gray
444         objects are in a contiguous region.
445
446         * sgen-gray.c: The gray queue implementation.
447
448         * Makefile.am: sgen-gray.c added.
449
450 2009-12-02  Mark Probst  <mark.probst@gmail.com>
451
452         * appdomain.c: When unloading a domain, zero its static data and
453         perform a minor collection when using SGen.  That will get rid of
454         all the remsets pointing into that domain's static data.
455
456         * sgen-gc.c: Allow remsets into static data.  By doing this we
457         need less checks so we're more efficient.
458
459 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
460
461         * verify.c (mono_method_verify): Check for catch clauses with broken
462         types.
463
464         Fixes #558465.
465
466 2009-12-01  Jb Evain  <jbevain@novell.com>
467
468         * class.c (make_generic_param_class): set the namespace of
469         the generic parameter class from its owner, if available.
470
471 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
472
473         * verify.c (code_bounds_check): Do proper overflow checking.
474
475         * verify.c (mono_method_verify): The number of switch entries is
476         an unsigned int. Properly bounds check it.
477
478         Fixes #558594.
479
480 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
481
482         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
483         mono_metadata_method_has_param_attrs which only checks if a given param
484         list has a non zero flags entry.
485
486         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
487         to inform how many params should we expect to decode.
488
489         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
490         as it's faster than mono_metadata_get_param_attrs.
491
492         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
493         add mono_metadata_method_has_param_attrs.
494
495 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
496
497         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
498         failures.
499
500         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
501         is -1 but its class is broken.
502
503         Fixes #558522.
504
505 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
506
507         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
508         for parameter overflow.
509
510         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
511         of mono_metadata_get_param_attrs.
512
513         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
514         API.
515
516         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
517
518 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
519
520         * class.c (mono_class_setup_fields): Check for fields with broken types.
521
522         Fixes #558741.
523
524 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
525
526         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
527         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
528         its TypeBuilder::CreateType ().
529
530         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
531         if not needed.
532
533         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
534         to make setup_interface_offsets happy.
535
536         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
537         compilation now works.
538
539 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
540
541         * appdomain.c (create_exceptions): New helper function extracted from
542         mono_runtime_init () to precreate objects used during exception handling.
543         (mono_runtime_init): Call it.
544         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
545
546 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
547
548         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
549         compilation until the proper one is found.
550
551 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
552
553         * class.c (mono_class_setup_vtable_general): Cache the result of
554         get_virtual_methods () since it can be slow because of the metadata
555         optimization.
556
557         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
558         from a MonoValueHashTable for now, since the later is based on an earlier
559         version of hpj's internal probing code and seems to have serious collision
560         issues.
561
562         * loader.c (mono_get_method_full): Update after the change above.
563
564 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
565
566         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
567
568 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
569
570         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
571         the GTD instead of the DGC instead of crashing.
572
573         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
574         required. Inflate fields if needed.
575
576         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
577         finished. Renamed.
578
579 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
580
581         * class.c (check_interface_method_override): Check for NULL signatures and fail
582         the type.
583
584         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
585
586         Fixes #553428.
587
588 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
589
590         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
591         the MONO_METHOD_FLAGS column instead of decoding the whole row.
592
593 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
594
595         * loader.c (field_from_memberref): Resolve the class first then the field
596         signature. Remove a lot of duplicated code and make sure we don't pass valid
597         values to mono_loader_set_error_field_load.
598
599         Fixes #553306.
600
601 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
602
603         * class.c (inflate_generic_type): Change code to use new signature of
604         mono_error_set_bad_image.
605
606         Fixes #558124.
607
608 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
609
610         * verify.c (mono_method_verify): Don't free ctx.params items if 
611         we aborted while inflating the ctx.locals. Complete previous fix
612
613 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
614
615         * verify.c (mono_method_verify): Use the uninflated type name, 
616         when the inflated is null, to report errors. Also take care when
617         freeing, not to free everything since, in case of an error, some
618         stuff would be copies (i.e. not allocated by the function itself)
619         Fix bug #558145
620
621 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
622
623         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
624         or overflow. The caller must have done this check explicitly. This guard us
625         from accessing invalid memory.
626
627         * verify.c (do_push_static_field): Check for stack overflow.
628
629         Fixes #553333.
630
631 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
632
633         * loader.c (find_method_in_class): Don't crash if the signature cannot
634         be resolved.
635
636         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
637         of asserting for the case of invalid params.
638
639         Fixes #553304.
640
641 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
642
643         * image.c (mono_image_load_module): Fix crash when a bad assembly
644         has no module at all (fix bug #553412) and also replace the 
645         g_assert with a return NULL (documented return value for failure)
646
647 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
648
649         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
650
651 2009-11-23  Miguel de Icaza  <miguel@novell.com>
652
653         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
654         file attribute to managed code and avoid doing the mask/attribute
655         checks here. 
656
657 2009-11-22  Miguel de Icaza  <miguel@novell.com>
658
659         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
660         the managed world.
661
662         * icall-def.h: New entry points.
663         
664 2009-11-19  Mark Probst  <mark.probst@gmail.com>
665
666         * process.c: Don't put references to managed objects into a
667         g_ptr_array.
668
669 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
670
671         * class.c (can_access_internals): Allow CoreCLR to participate in
672         allowing (or not) [InternalsVisibleTo] between assemblies.
673         * security-core-clr.c|h: Make sure that only trusted code (a 
674         superset of platform code) can access the internals of platform
675         code.
676
677 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
678
679         * reflection.c: use the correct base class to get the virtual method
680         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
681
682 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
683
684         * security-core-clr.c (get_caller_no_reflection_related): 
685         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
686         it's still reflection and must be filtered correctly.
687
688 2009-11-16  Mark Probst  <mark.probst@gmail.com>
689
690         * object.c (compute_class_bitmap): Fix for large bitmaps.
691
692 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
693
694         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
695
696         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
697         koush@koushikdutta.com). Disable GC_no_dls on android.
698
699 2009-11-12  Mark Probst  <mark.probst@gmail.com>
700
701         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
702         tlab_next points outside the TLAB because the allocator was
703         interrupted.
704
705 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
706
707         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
708
709 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
710
711         * object-internals.h: Change signature for mono_string_to_utf8_image.
712
713         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
714         argument.
715
716         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
717         exceptions due to mono_string_to_utf8.
718
719 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
720
721         * object-internals.h: Change signature for mono_string_to_utf8_mp.
722
723         * object.c (mono_remote_class): Make sure all resources are released before
724         raising an exception.
725
726         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
727
728 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
729
730         * mono-perfcounters.c (network_get_impl): Change variable initialization
731         ordering to fix potential memory leak in case of exceptions.
732
733         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
734         encoded strings.
735         
736 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
737
738         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
739         variable initialization ordering to fix potential memory leak in case
740         of exceptions.
741
742 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
743
744         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
745         needed.
746
747 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
748
749         * appdomain.c: Fix shadow path code to better deal with exceptions.
750
751 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
752
753         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
754         exception in the middle of the runtime code.
755
756 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
757
758         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
759         leak memory with broken envvar value.
760
761 2009-11-06  Mark Probst  <mark.probst@gmail.com>
762
763         * reflection.c (mono_reflection_setup_internal_class): Because
764         nested classes are not added to the name cache, we must put them
765         in the reflection_info_unregister_classes list.
766
767 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
768
769         * class.c: When CoreCLR is enabled don't call mono_init_com_types
770         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
771         platform (trusted) code. Instead we return a TypeLoadException to
772         be thrown later. This is the exception thrown by Silverlight 2 if
773         a type, inside application (user) code is marked with [ComImport]
774
775 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
776
777         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
778         mono_is_debugger_attached () too.
779
780         * mono-debug.c (mono_is_debugger_attached): New helper function.
781         (mono_set_is_debugger_attached): Ditto.
782
783 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
784
785         * object-internals.h: Add mono_string_to_utf8_checked.
786
787         * object.c: Implement mono_string_to_utf8_checked.
788
789 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
790
791         * class.c: Add missing check for load errors after every
792         call to mono_class_setup_fields
793
794         Fixes #552282.
795
796 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
797
798         metadata-verify.c (verify_tables_schema): Fix the error message.
799
800 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
801
802         * metadata.c: Change event table schema to use TDOR for event type
803         as this is what it's meant to be.
804
805         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
806         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
807         entry.
808
809         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
810         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
811         rows in MONO_TABLE_GENERICPARAM.
812
813         Fixes #552289.
814
815 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
816
817         * class.c (mono_image_add_to_name_cache): Assert on duplicate
818         insertion.
819
820         * reflection.c (mono_reflection_setup_internal_class): Avoid
821         registering a gc root the same MonoClass multiple times.
822         Don't register nested types on the global scope as they should
823         not be available there.
824
825 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
826
827         * culture-info-tables.h: regenerated.
828
829 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
830
831         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
832
833 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
834
835         * string-icalls.c|h: Remove string internal calls that are not 
836         used anymore by the class libraries.
837         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
838         which is not used in the class librairies.
839         * icall-def.h: Update tables.
840
841 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
842
843         * class.h: Move mono_class_inflate_generic_type_checked...
844
845         * class-internals.h: to here and make it internal. We don't want to
846         further expose MonoGenericContext. 
847
848 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
849
850         * verify.c (mono_method_verify): Improve error message.
851
852 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
853
854         * reflection.c (fieldref_encode_signature): If field_image is NULL then
855         the token is already properly encoded. Fixs 4.0 build.
856
857 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
858
859         * locales.c (construct_number_format): Check if the number index is
860         valid before trying to use it, if not, just return.
861         
862 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
863
864         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
865         since that loses the abort state. Fixes #539394.
866
867 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
868
869         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
870         explicit this argument to the call signature.
871         (mono_marshal_get_icall_wrapper): Ditto.
872
873 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
874
875         * reflection.c (fieldref_encode_signature): Add new field_image parameter
876         to indicate which assembly to use when resolving a custom-mod.
877
878         Fixes handling of volatile fields used across assemblies as reported in #551513.
879
880 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
881
882         * loader.c: Improve error messages.
883
884 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
885
886         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
887         of interfaces. Fixes IKVM.
888
889         * class.c (mono_class_setup_vtable_general): Improve debug spew.
890
891 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
892
893         * verify.c (verifier_inflate_type): Return the inflated type on success.
894
895 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
896
897         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
898
899         * threads.c (mono_thread_attach): Call the profiler thread start callback.
900
901         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
902
903         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
904         flag set.
905
906         * profiler.c: Add new profiler callbacks for runtime invoke.
907
908         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
909
910 2009-11-01  Mark Probst  <mark.probst@gmail.com>
911
912         * sgen-gc.c: Keep track of the reason for a major collection and
913         write it to the heap-dump file.
914
915 2009-10-31  Miguel de Icaza  <miguel@novell.com>
916
917         * threads.c: refactor the code that initializes the
918         thread_start_args into a reusable function and use this in the two
919         methods that start up threads.
920
921 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
922
923         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
924         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
925
926 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
927
928         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
929         Until now, we only had the per-cpu(core) counters.
930
931 2009-10-28  Mark Probst  <mark.probst@gmail.com>
932
933         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
934         mono_gc_get_suspend_signal(), which returns the suspend signal
935         number used by the GC.
936
937 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
938
939         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
940
941         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
942         signalling start_notify.
943
944 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
945
946         * appdomain.c: do not test the st_mode field for shadow-copies.
947         Fixes bug #545276.
948
949 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
950
951         * threadpool.[ch]: added hooks for thread start/finish and item
952         processing begin/end. For monotouch use only.
953
954 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
955
956         * threads.c (mono_thread_get_name): New helper function.
957
958         * reflection.c (resolve_object): Set handle_class for strings too.
959         (mono_reflection_create_custom_attr_data_args): New helper function to decode
960         a cattr blob into a set of arrays and structures without creating the custom
961         attributes themselves.
962         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
963
964         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
965
966         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
967         function.
968
969 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
970
971         * verify.c: Replace calls to mono_class_inflate_generic_type with
972         mono_class_inflate_generic_type_checked. Fixes #480005.
973
974 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
975
976         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
977         object since not all paths lead to callees initing it.
978
979 2009-10-23  Alp Toker  <alp@nuanti.com>
980
981         Fix embedding API breakage from r144688. mono-compiler.h is an internal
982         header and should not be shipped:
983
984         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
985         which is specific to the mono build. Not going to work.
986
987 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
988
989         * security-manager.c: Report if core-clr is active from
990         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
991         to allow Moonlight BCL to behave appropriately (both in browser
992         and outside, e.g. smcs)
993
994 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
995
996         * mono-config.c: ignore UTF-8 BOM and report parser errors.
997         Fixes bug #549108.
998
999 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1000
1001         * class.c: fix typo.
1002
1003 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
1004
1005         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
1006         a MonoError parameter.
1007
1008         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
1009         version that can does proper error handling.
1010
1011         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
1012
1013         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
1014
1015         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
1016
1017 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1018
1019         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
1020         NO_UNALIGNED_ACCESS is defined.
1021
1022 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
1023
1024         * marshal.c (mono_string_builder_to_utf16): Applied patch from
1025         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
1026         Fixes #549173.
1027
1028 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1029
1030         * sgen-gc.c: Shorten sections whenever possible.
1031
1032 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1033
1034         * sgen-gc.c: Use our portable semaphore #defines.
1035
1036 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1037
1038         * sgen-gc.c: A debug option for dumping the heap layout to a file
1039         after each collection.
1040
1041 2009-10-21  Mark Probst  <mark.probst@gmail.com>
1042
1043         * sgen-gc.c: Make managed write barriers atomic via
1044         thread-restarts.
1045
1046 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
1047
1048         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
1049         methods. Fixes #543021.
1050
1051 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1052
1053         * socket-io.[ch]: fix VS build.
1054
1055 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1056
1057         * icall-def.h:
1058         * socket-io.[ch]: implemented SendFile.
1059
1060 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1061
1062         * class.c (mono_class_create_from_typedef): Initialize class->element_class
1063         before the interfaces to avoid crashes later if class initialization fails.
1064         Fixes #548417.
1065
1066         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
1067         Fixes #548276.
1068
1069 2009-10-20  Marek Safar  <marek.safar@gmail.com>
1070
1071         * domain.c: Bump 4.0 version.
1072
1073 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
1074
1075         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
1076         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
1077         check since 'pubkey' can't be NULL at this stage
1078         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
1079         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
1080         initialization of 'iter'
1081
1082 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
1083
1084         * cominterop.c : Search the interface parts of vtable to find 
1085           method matches.  Fixes 547030.
1086
1087         Code is contributed under MIT/X11 license.
1088
1089 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
1090
1091         * marshal.c: BeginInvoke cannot be called on multicast delegates with
1092         multiple targets. Fixes bug #574426.
1093
1094 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1095
1096         * profiler.h: Put here the definition of
1097         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
1098         (and fix the build...).
1099
1100 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1101
1102         * profiler.c, profiler.h, profiler-private.h:
1103         Added support for different ways of getting call chains in stat mode.
1104
1105 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1106
1107         * object.c, object-internals.h: New function for computing the
1108         size of an array, factored out of mono_array_new_full().  Use
1109         SGen's functions for allocating arrays and vectors.
1110
1111         * sgen-gc.c, gc-internal.h: Special functions for allocating
1112         arrays and vectors without race conditions.  A managed array
1113         allocator method.
1114
1115         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
1116
1117 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1118
1119         * object.c, object.h, icall.c: Write barriers do the copying now,
1120         as well, so no need for an additional memcpy.
1121
1122         * sgen-gc.c: Lock when storing remsets.  Do the memory
1123         copying/moving in the write barriers.
1124
1125         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
1126
1127         * reflection.c: Added an assert.
1128
1129 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1130
1131         * threads.c, process.c: A few missing write barriers.
1132
1133 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
1134
1135         * mono-perfcounters.c, mono-perfcounters-def.h: Add
1136         network performance counters for bytes sent per second, bytes
1137         received per second, and bytes total per second.
1138
1139         Code is contributed under MIT/X11 license.
1140
1141 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1142
1143         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
1144         Fix warning.
1145
1146 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1147
1148         * threads.c, object-internals.h, object.c: Move code for
1149         transferring an object to a different domain (via
1150         serialization/remoting) to object.c.
1151
1152         * object.c (call_unhandled_exception_delegate): If the exception
1153         is in a different domain than the delegate, transfer the exception
1154         to that domain.
1155
1156 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
1157
1158         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
1159         Fixes #322934.
1160
1161 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
1162
1163         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
1164
1165 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1166
1167         * object.c (mono_method_return_message_restore): Handle the case
1168         where the argument is an instance of a generic type.  Fixes
1169         #544446.
1170
1171 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1172
1173         * object.c (set_value): Write barrier fix - we must pass the
1174         count, not the size.
1175
1176 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
1177
1178         * domain.c (mono_init_internal): Print a useful error message when encountering
1179         an old mscorlib, instead of crashing. Fixes #544307.
1180
1181 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
1182
1183         * appdomain.c (copy_app_domain_setup): Fix a warning.
1184
1185         * debug-helpers.c (dis_one): Ditto.
1186
1187 2009-10-04  Mark Probst  <mark.probst@gmail.com>
1188
1189         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
1190         into the new domain, instead of referencing the original one.
1191
1192         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
1193         non-static.
1194
1195         * appdomain.c: Corlib version bump.
1196
1197 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1198
1199         * threadpool.c: one more...
1200
1201 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1202
1203         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
1204         threads to die because we're shutting down. delgate5.exe works again.
1205
1206 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
1207
1208         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
1209           ccw_interface_hash table when a ccw is finalized.
1210
1211         Code is contributed under MIT/X11 license.
1212
1213 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1214
1215         * assembly.c, domain.c, image.c, metadata-internals.h: Split
1216         domain and image unloading into two steps.  We must do this
1217         because clearing the domain in SGen requires the class metadata to
1218         be intact, but we need to free the mono_g_hash_tables in case a
1219         collection occurs during domain unloading and the roots would trip
1220         up the GC.
1221
1222 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1223
1224         * object-internals.h: Remove serialized culture fields from
1225         MonoInternalThread.
1226
1227         * icall-def.h, thread-types.h, threads.c: Remove serialized
1228         culture icalls.
1229
1230         * appdomain.c: Corlib version bump.
1231
1232 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
1233
1234         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
1235         Fixes #543133.
1236
1237 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1238
1239         * sgen-gc.c: Try to shorten the new section after a major
1240         allocation to avoid ever-growing sections.
1241
1242 2009-10-13  Martin Baulig  <martin@ximian.com>
1243
1244         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
1245         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
1246         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
1247         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
1248
1249         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
1250
1251 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
1252
1253         * threadpool.c: fixed the order in which 'completed' and the wait
1254         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
1255         No need to use the wait_handle field of ASyncCall. Make sure the
1256         threadpool is active when adding a job or queueing an idle thread.
1257
1258 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
1259
1260         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
1261
1262         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
1263         when using --compile-all.
1264
1265 2009-09-27  Mark Probst  <mark.probst@gmail.com>
1266
1267         * metadata.c (free_generic_class): Unregister the field_objects
1268         roots if we're using SGen.
1269
1270 2009-09-27  Mark Probst  <mark.probst@gmail.com>
1271
1272         * reflection.c (mono_dynamic_image_free): Deregister the GC root
1273         for GenericParamTableEntry.gparam.
1274
1275 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
1276
1277         * marshal.c: don't create the handle when calling. It is created later
1278         if needed.
1279
1280 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1281
1282         * sgen-gc.c: Warning fixes.
1283
1284 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1285
1286         * sgen-gc.c: New debug option "xdomain-checks", which scans the
1287         whole heap for cross-domain references before each collection.
1288
1289         * sgen-scan-object.h: The scan action can now use SCAN to scan the
1290         object.
1291
1292         * threadpool-internals.h, threadpool.c: New function
1293         mono_thread_pool_is_queue_array() for checking whether a given
1294         array is used as a (cross-domain) queue by the thread pool code.
1295
1296 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1297
1298         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
1299         searches the whole heap for objects containing a specific
1300         reference.  Only for debugging.
1301
1302 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1303
1304         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
1305
1306         * icall-def.h, threads.c, threads-types.h: New icalls for copying
1307         byte arrays between domains.
1308
1309 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1310
1311         * threadpool.c:
1312         * class-internals.h:
1313         * mono-perfcounters-def.h:
1314         * mono-perfcounters.c:
1315         -There is a list of idle threads
1316         -Each of those idle threads wait on their own WaitHandle instead
1317         of all of them using the same semaphore. When a new work item is
1318         added, the job is assigned directly to an idle thread or a newly
1319         created one if possible and then the handle for that thread is
1320         signaled. Compare that to the current approach where all the
1321         threads in the pool compete to dequeue a job from the same
1322         queue.
1323         -New struct ThreadPool that brings together the bunch of static
1324         variable for each threadpool (IO and regular).
1325         -New performance counters: # of items added and its rate per
1326         threadpool. The rate will be used later, perhaps together with
1327         other perf. counters, to decide when idle threads should exit.
1328
1329 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
1330
1331         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
1332         Fix typo on Windows build.      
1333         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
1334         
1335         Code is contributed under MIT/X11 license.
1336
1337 2009-09-25  Mark Probst  <mark.probst@gmail.com>
1338
1339         * object-internals.h: The Thread class is split up into Thread and
1340         InternalThread now.  We have exactly one InternalThread per
1341         thread, and at most one Thread per appdomain per thread.  Most
1342         data is stored in InternalThread.  All InternalThread objects live
1343         in the root domain.
1344
1345         * class-internals.h: Add internal_thread_class to MonoDefaults.
1346
1347         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
1348         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
1349         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
1350         resulting from the split of the Thread class.
1351
1352         * gc-internal.h: Prototype for new function for checking whether a
1353         thread is the finalizer thread.
1354
1355         * appdomain.c: Corlib version bump.
1356
1357 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1358
1359         * appdomain.c|h: Add a mono_domain_try_unload method which is
1360         equivalent to mono_domain_unload, except that it returns an exception
1361         instead of throwing it. Make mono_domain_unload use the
1362         mono_domain_try_unload method to avoid code-duplication.
1363
1364 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
1365
1366         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
1367         a problem.
1368
1369 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
1370
1371         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
1372         aborting when a conversion is not implemented.
1373
1374 2009-09-23  Miguel de Icaza  <miguel@novell.com>
1375
1376         * verify.c: when comparing culture strings, use g_ascii_strcmp
1377
1378         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
1379         when comparing public key tokens to use memcmp on 16 bytes.   I do
1380         not believe this ever worked as advertised in the past.
1381
1382         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
1383         which would have always failed earlier.
1384
1385 2009-06-25  Miguel de Icaza  <miguel@novell.com>
1386
1387         * gc.c: Raise a NullArgumentException if the object passed is
1388         null.
1389
1390 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
1391
1392         * image.c (mono_image_close): Atomically decrement the reference count and
1393         remove the image from the hash tables, to prevent another thread from seeing a
1394         dying MonoImage. Fixes #541194.
1395
1396 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1397
1398         * threadpool.c: actually use the minimum number of 'completion ports'
1399         (for us is just a potential worker thread).
1400
1401 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1402
1403         * threadpool.c: remove ares_htable. It does not make sense any more
1404         since the same objects are now stored in GC-tracked arrays while they are
1405         in the queue.
1406
1407 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1408
1409         * threadpool.c: increase the minimum length of the queues to 128.
1410         Remove warning.
1411
1412 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
1413
1414         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
1415         return the modified signature used by string ctors.
1416
1417 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
1418
1419         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
1420         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
1421         method, to be used by full-aot.
1422
1423 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
1424
1425         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
1426         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
1427         be known to be good.
1428
1429         * class.c (mono_class_init): Fail array types if their element type fails initialization
1430         as well.
1431
1432         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
1433         initialization, additionally we request the element_type vtable to be initialized as well.
1434
1435         This is fine and should not increase the working set in any meaningful way since it's reasonable
1436         to assume       that most code will create an array and eventually populate it, which will require the
1437         type's vtable to be initialized.
1438
1439         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
1440
1441 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
1442
1443         * normalization-tables.h : regenerated.
1444
1445 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
1446
1447         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
1448         a leb128 encoding can take up to 5 bytes.
1449
1450 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
1451
1452         * class.c (verify_class_overrides): Remove useless argument.
1453
1454         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
1455         before interface enumeration as this is no longer required.
1456
1457 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
1458
1459         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
1460         used under mono_class_init context. This functions avoid any code path that
1461         calls mono_class_init, which leads it to be slow as some things like the interface
1462         bitmap are not available.
1463
1464         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
1465         of it's own broken version. Fixes the verifier part of #538588.
1466
1467         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
1468         API.
1469
1470 2009-09-15  Mark Probst  <mark.probst@gmail.com>
1471
1472         * class.c (mono_class_init): Always set an exception in a class if
1473         vtable setup fails.  Fixes #538577.
1474
1475         * generic-sharing.c: Raise an exception if mono_class_vtable()
1476         returns NULL.
1477
1478 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
1479
1480         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
1481         methods of vtypes, as they could be incorrectly shared with static methods
1482         taking an IntPtr argument.
1483
1484 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
1485
1486         * domain.c:
1487         * object.c:
1488         * class-internals.h: renamed waithandle_class to
1489         manualresetevent_class.
1490         * marshal.c: propagate the exception if a remoting BeginInvoke call
1491         fails.
1492
1493 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1494
1495         * object.c: Properly handle vtable failures.
1496
1497 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1498
1499         * socket-io.c: Assert on vtable failure.
1500
1501         * mono-mlist.c: Assert on vtable failure.
1502
1503 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1504
1505         * marshal.c: Assert on vtable failure.
1506
1507 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1508
1509         * icall.c: Properly handle vtable failures.
1510
1511 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1512
1513         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
1514
1515 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1516
1517         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
1518
1519         * console-unix.c (do_console_cancel_event): Same.
1520
1521 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1522
1523         * class-internals.h: Add mono_class_vtable_full function that allows control
1524         if an exception should be raised or not.
1525
1526         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
1527         to do what its documentation say, that is to return NULL and set exception_type on
1528         failure.
1529
1530         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
1531         and change the code to honor it.
1532
1533 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1534
1535         * verify.c: Fix typo in error message.
1536
1537 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
1538
1539         * security-core-clr.c: Fix default_platform_check so it can run
1540         the runtime coreclr tests (without an infinite recursion when
1541         throwing an exception).
1542
1543 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1544
1545         object.c (mono_delegate_ctor_with_method): Guard against null method.
1546
1547 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1548
1549         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
1550         that should be replaced with error handling later.
1551
1552 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1553
1554         * marshal.c (mono_delegate_end_invoke): Fix warning.
1555
1556 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1557
1558         * loader.c (mono_field_from_token): Properly handle invalid
1559         dynamic tokens.
1560
1561 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1562
1563         * pedump.c (verify_image_file): Skip types that can't be
1564         decoded.
1565
1566 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1567
1568         * verify.c: Look for recursive valuetypes only against the
1569         type been initialized as this is a lot simpler and works.
1570
1571 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1572
1573         * verify.c: Ensure that fields are properly loaded before
1574         checking them.
1575
1576 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
1577
1578         * object.c (mono_object_get_virtual_method) : Call 
1579           mono_cominterop_get_invoke if the object is a COM object.
1580
1581         Code is contributed under MIT/X11 license.
1582
1583 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
1584
1585         * verify.c: Check for recursive valuetype definitions.
1586
1587 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
1588
1589         Use inheritance-aware interface offsets. Inherited types use the same offsets
1590         of their parents. This reduce offset duplication in case more than one type in
1591         the inheritance tree explicitly implements the same interface.
1592
1593         This also removes a source of vtable bubbles found in #532409. An abstract type
1594         isn't required to provide abstract methods to all interfaces it implements, which
1595         resulted in a bubble with the previous scheme as the child would get a non-full
1596         vtable from its parent. We fail all concrete types with vtable bubbles, so this
1597         should be fixed.
1598
1599         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
1600         it's expected to not cause any significant increase beyond that.
1601
1602         * class.c (setup_interface_offsets): Compute super class iface offsets
1603         first to force sharing.
1604
1605         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
1606         dumping only the relevant ones.
1607
1608         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
1609         methods a new slot regardless if they belong to an interface or not. This allows
1610         an inherited type to override the iface method separately from the class one.
1611
1612 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
1613
1614         * threadpool.c: make the Sleep() alertable to prevent delays exiting
1615         applications that take less than 2s to execute.
1616         Bug #524984 fixed.
1617
1618 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
1619
1620         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
1621
1622         * object.c (mono_get_runtime_callbacks): New helper function to return
1623         the runtime callbacks.
1624
1625         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
1626         mono_get_runtime_build_info () as the display name.
1627         
1628 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
1629
1630         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
1631         argument, since NEWARR expects a native int. Fixes #481559.
1632
1633 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1634
1635         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
1636         against broken SRE methods.
1637
1638 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1639
1640         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
1641         a NULL variable. Abort early on failure.
1642
1643 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1644
1645         * class.c (can_access_type): Fail visibility test for non nested
1646         types with nested visibility.
1647
1648 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
1649
1650         * assembly.c (parse_public_key): Avoid allocating (and not 
1651         freeing) the public key array when it's not requested by the 
1652         caller.
1653         * threads.c (mono_thread_manage, mono_thread_create_internal, 
1654         ves_icall_System_Threading_Thread_Thread_internal): Free 
1655         allocated memory on error.
1656
1657 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1658
1659         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
1660
1661 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1662
1663         * class.c (mono_class_setup_fields): Remove duplicated local variable
1664         named gklass.
1665         Rename gklass to gtd to reflect the fact that it points to the generic
1666         type definition.
1667         Remove the duplicated call to mono_class_setup_fields on gtd and move
1668         the error check to the beginning.
1669
1670 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1671
1672         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
1673         Remove cruft of the previous patch.
1674
1675 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1676
1677         * metadata-verify.c (verify_method_table): Check for abstract + final.
1678         Fixes #534175.
1679
1680 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1681
1682         * verify.c (verify_class_fields): Check for duplicate fields.
1683
1684 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1685
1686         * metadata-verify.c: Verify the typeref table for duplicates.
1687
1688 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1689
1690         This reverts r140936 and properly handles interfaces with static methods. The
1691         right fix is to ensure vtables without bubles which is an easier to verify
1692         constraint. We should avoid such special cases as of the reverted patch as those
1693         only make the runtime more brittle.
1694
1695         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
1696         static methods on interfaces.
1697
1698         * class.c (setup_interface_offsets): Use the number of virtual methods when
1699         calculating interface offsets instead of the number of methods. This way we
1700         avoid bubles on the layout.
1701
1702 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
1703
1704         * metadata-verify.c (verify_metadata_header): Some very smart
1705         obfuscators like to add extra stream headers. Ignore them.
1706
1707 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
1708
1709         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
1710         methods correctly.
1711
1712 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
1713
1714         * metadata-verify.c: Verify for duplicated types.
1715
1716 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
1717
1718         * metadata-verify.c (verify_typedef_table): Verify for nested types
1719         without an entry on the nested class table.
1720
1721 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
1722
1723         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
1724         <tom_hindle@sil.org>. Add locking around hash table accesses.
1725
1726 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1727
1728         * verify.c (mono_verifier_verify_class): Verify all interface if
1729         really are interfaces. Fixes #534184.
1730
1731 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
1732
1733         * pedump.c: Initialize all types during metadata validation so we report
1734         errors only detected as part of class initialization.
1735
1736 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
1737
1738         * metadata-verify.c (verify_method_table): PInvoke requires method to
1739         be static. Fixes #534189
1740
1741 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
1742
1743         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
1744         being NULL.
1745
1746 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1747
1748         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
1749         for holes or bad methods. Fixes #525314.
1750
1751 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1752
1753         * class.c (setup_interface_offsets): Don't allocate slot
1754         for the same interface multiple times. This creates bubbles
1755         that waster space and make vtable verification harder.
1756
1757         The same interface get a slot multiple times since we need
1758         to get the closure of all implemented interfaces, which means
1759         the same interface is reported multiple times.
1760
1761 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1762
1763         * verify.c (mono_verifier_verify_class): Don't check the fields
1764         of generic instances since the context on which they got expanded
1765         might lead to false positives.
1766
1767         Such thing happens when a generic type is inflated in the context
1768         of a generic method and the inflated type of a field turns into a
1769         generic method argument, which causes the checking code to think
1770         it's an invalid class when it's not.
1771
1772 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1773
1774         * verify.c (mono_type_is_valid_in_context): Verify if type
1775         is NULL and remove duplicate test.
1776
1777 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1778
1779         * verify.c (mono_verifier_verify_class): Check fields for
1780         invalid generic arguments.
1781
1782 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1783
1784         * class.c (verify_class_overrides): Verify if for static
1785         and non virtual methods.
1786
1787 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1788
1789         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
1790         Check for errors after retrieving the vtable.
1791
1792 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1793
1794         * class.c (mono_class_setup_vtable_general): Verify
1795         if method overrides are valid before processing them.
1796
1797 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1798
1799         * marshal.c (mono_array_to_lparray): Fix minimal build with
1800         cominterop disabled.
1801
1802         * marshal.c (mono_free_lparray): Same.
1803
1804 2009-08-21  Mark Probst  <mark.probst@gmail.com>
1805
1806         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
1807         the hash function for the ares_htable.
1808
1809 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
1810
1811         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
1812         bit for assembly flags. MS is ok with it but there is no spec anywhere
1813         on its mean
1814
1815 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1816
1817         * class.c (mono_class_create_from_typedef): Emit profiler events
1818         in all cases.
1819
1820 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1821
1822         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
1823         Release memory on failure.
1824
1825 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1826
1827         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
1828         to the internal API.
1829
1830         * metadata.c (get_constraints): Use a single-linked table as we don't
1831         traverse it backward. Fail and return FALSE if only of the contraint types
1832         is not found.
1833
1834         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
1835         to mono_metadata_load_generic_param_constraints except for having a return value.
1836         This has to be done since the later is part of the public API.
1837
1838         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
1839         and fail the type.
1840
1841         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
1842         and fail the method.
1843
1844 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1845
1846         * metadata-verify.c (is_valid_method_header): Add work-around to deal
1847         with MS broken behavior of emmitting EH section sizes without the
1848         header size added.
1849
1850 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1851
1852         * metadata.c (mono_type_create_from_typespec): Don't allocate image
1853         memory until we're sure that we'll need it. This avoids leaking for
1854         broken types or duplicated instantiation.
1855
1856 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1857
1858         * metadata-verify.c (is_valid_method_header): Fix stupid formating
1859         mistake.
1860
1861 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1862
1863         * metadata-verify.c (is_valid_method_header): Fix number of clauses
1864         and expected size calculation.
1865
1866 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1867
1868         * class.c (mono_class_get_field_idx): Add fixme for broken
1869         behavior for types with multiple fields with the same name.
1870         I would rather fix it, but have no idea on how to generate
1871         such artifact for testing.
1872
1873 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1874
1875         * verify.c (verifier_load_field): We should allow references to
1876         fields to be made using the generic type definition. It's up to
1877         the loader system to fail invalid ops.
1878
1879         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
1880         are invalid.
1881
1882 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1883
1884         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
1885
1886         * metadata-internals.h: Fix declaration of 
1887         mono_metadata_interfaces_from_typedef_full.
1888
1889         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
1890         heap_alloc_result parameter that controls if the result should be
1891         g_malloc'd.
1892
1893         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
1894         array be g_malloc'd and properly document this public API function.
1895
1896 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1897
1898         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
1899         remove METHOD_HEADER_TINY_FORMAT1.
1900
1901         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
1902
1903         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
1904
1905         Both spec and MS uses only 2 bits to enumerate the kind of header.
1906         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
1907         is superfluous, only used for tiny headers with odd code lengths.
1908
1909         This change also make sure that mono doesn't wronly interpret bit 2
1910         of fat header flags, which is currently reserved.
1911
1912 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1913
1914         * metadata.c (do_mono_metadata_parse_type): Do error
1915         checking for element types. Don't abort if presented
1916         with a broken type kind.
1917
1918 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1919
1920         * metadata.c (mono_metadata_parse_method_signature_full):
1921         Gracefully fail bad vararg signatures.
1922
1923 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1924
1925         * profiler.c:
1926         * class.c: Fix warnings for uninitialized variables.
1927
1928 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1929
1930         * icall.c: Fix _NSGetEnviron method declaration warning.
1931
1932 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1933
1934         * icall.c:
1935         * reflection.c: Make bitwise checks explicit.
1936
1937 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1938
1939         * debug-helpers.c:
1940         * marshal.c: Fix printf warnings.
1941
1942 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
1943
1944         * reflection.c (encode_cattr_value): Fix a warning.
1945
1946 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1947
1948         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
1949         of array bounds.
1950
1951 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1952
1953         * loader.c (mono_method_signature): Don't assert on broken
1954         signature. Print a more useful error message.
1955
1956 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1957
1958         * loader.c (mono_method_get_marshal_info): Assert if
1959         signature is invalid. Bounds check stores to the
1960         mspecs array;
1961
1962 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1963
1964         * loader.c (field_from_memberref): Fix warning.
1965
1966 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1967
1968         * loader.c (mono_method_get_param_names): Check if signature
1969         is null. Don't store beyond the size of the name array.
1970
1971 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1972
1973         * loader.c (mono_get_method_constrained): Check if signature
1974         is null.
1975
1976 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1977
1978         * loader.c (mono_loader_set_error_bad_image): Improve
1979         error messages.
1980
1981 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1982
1983         * loader.c (mono_get_method_full): Convert an assertion
1984         into a loader error.
1985
1986 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1987
1988         * class-internals.h, class.c: Better naming and documentation.
1989
1990 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
1991
1992         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
1993         obj is NULL.
1994
1995 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1996
1997         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
1998         parsing fails.
1999
2000 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2001
2002         * loader.c (mono_loader_error_prepare_exception): Handle missing field
2003         errors with no class set.
2004
2005         * loader.c (field_from_memberref): If the field signature is of the wrong
2006         type fail with a MissingFieldException instead of a BadImageException as
2007         this is the behavior observed on MS. 
2008
2009 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2010
2011         * loader.c (field_from_memberref): Don't crash if either the field
2012         signature or the typespec class are invalid.
2013
2014 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2015
2016         * verify.c (verifier_load_field): Don't allow field related
2017         ops to reference fields on generic type definition.
2018
2019 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2020
2021         * metadata-verify.c: Add new warning level for errors specified
2022         by ECMA 335 but that MS ignores.
2023
2024         * metadata-verify.c (verify_method_table): Make compiler controled
2025         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
2026         this check is safe because the end result will only be some visibility
2027         exceptions been thrown.
2028
2029 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2030
2031         * verify.c (get_boxable_mono_type): Don't allow the
2032         use of the generic type definition on boxed type positions.
2033
2034         Fixes #531237.
2035
2036 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2037
2038         * threadpool.c: Make sure no cross-domain references remain in
2039         ares_htable or the arrays that are thrown away when resizing.
2040
2041 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2042
2043         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
2044         list of classes for which we have to unregister reflection_info
2045         with the GC and which are not in the namespace cache.
2046
2047         * reflection.c (mono_reflection_initialize_generic_parameter): Add
2048         the class to the list.
2049
2050 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2051
2052         * domain.c (mono_domain_free): Unregister the GC roots in
2053         MonoDomain.
2054
2055 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2056
2057         * reflection.c (mono_reflection_type_get_handle): Fix typo.
2058
2059 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2060
2061         * class.c: Add mono_class_get_field_from_name_full which does
2062         the same as mono_class_get_field_from_name but does check field
2063         signature as well.
2064
2065         * class-internals.h: Export mono_class_get_field_from_name_full as
2066         part of the internal API.
2067
2068         * loader.c (field_from_memberref): Search fields by name and signature
2069         as it's valid to have two fields with same name but different types.
2070
2071         Fixes #528055.
2072
2073 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
2074
2075         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
2076
2077         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
2078
2079         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
2080         System.Type.
2081
2082 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
2083
2084         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
2085
2086         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
2087
2088 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2089
2090         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
2091         to sgen-scan-object.h, which can be included and parameterized via
2092         macros.
2093
2094         * Makefile.am: sgen-scan-object.h added.
2095
2096 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2097
2098         * gc.c: #define GC_dont_gc if we're compiling with SGen.
2099
2100 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2101
2102         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
2103         before clearing a domain in the GC.
2104
2105 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2106
2107         * exception.c (mono_exception_from_name_domain): Actually create
2108         the exception in the specified domain.
2109
2110         * appdomain.c (mono_domain_create_appdomain_internal): Create the
2111         OutOfMemoryException a bit later so that the domain is inialized
2112         "enough" that it works.
2113
2114 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2115
2116         * threads.c (thread_cleanup): Clean up the cached_culture_info
2117         array to prevent cross-domain references.
2118
2119 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
2120
2121         * metadata.c: more documentation for MonoType accessors.
2122
2123 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
2124
2125         Fix incorrect size definitions where the tail array isn't a list
2126         of pointers
2127         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
2128         define size.
2129         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
2130         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
2131         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
2132
2133 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2134
2135         * reflection.h:
2136         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
2137
2138 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2139
2140         * metadata.c:
2141         * loader.c:
2142         * metadata-internals.h:
2143         * method-builder.c:
2144         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
2145
2146 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2147
2148         * cominterop.c:
2149         * metadata.c:
2150         * metadata.h:
2151         * loader.c:
2152         * marshal.c:
2153         * reflection.c: #define for sizeof in MonoType and
2154         MonoMethodSignature.
2155
2156 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2157
2158         * domain.c:
2159         * domain-internals.h: add and use #define's instead of sizeof()
2160         for MonoJitInfo and MonoJitInfoTable.
2161
2162 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2163
2164         * object.c:
2165         * class.h: use #define instead of sizeof() for MonoRemoteClass.
2166
2167 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
2168
2169         * metadata.c:
2170         * metadata.h:
2171         * object.c:
2172         * class-internals.h:
2173         * generic-sharing.c:
2174         * marshal.c: use a #define instead of sizeof() for a few
2175         structures that use a zero-length array.
2176
2177 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
2178
2179         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
2180         to handle inflated generic methods.
2181
2182         * appdomain.c: Bump corlib version.
2183
2184         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
2185         instances.
2186
2187         * reflection.c (fixup_method): Same
2188
2189         * reflection.c (resolve_object): Same.
2190
2191         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
2192         g_error and a decent message.
2193
2194 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
2195
2196         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
2197         from the object because it could not yet be available globally
2198         (it happens if the profiler tries to create a gchandle on the
2199         MonoThread object of a thread that is still registering itself
2200         with the runtime).
2201
2202 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
2203
2204         * reflection.c (mono_generic_class_get_object): Initialized the
2205         managed type arguments array.
2206
2207         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
2208
2209         * appdomain.c: Bump corlib version.
2210
2211 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
2212
2213         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
2214         #527902.
2215
2216 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
2217
2218         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
2219         Avoid a crash if synch_cs is not set.
2220         
2221         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
2222         Handle the case when the handle is 0.
2223
2224         * appdomain.c: Bump corlib version.
2225
2226 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
2227
2228         * reflection.c (mono_type_get_object): Fix a warning.
2229
2230 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2231
2232         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
2233         descriptor here.  We assume it's already been computed.
2234
2235         * generic-sharing.c (instantiate_other_info): Compute the GC
2236         descriptor for info type MONO_RGCTX_INFO_KLASS.
2237
2238 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2239
2240         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
2241         type, so don't use MONO_OBJECT_SETREF to set a field.
2242
2243 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2244
2245         * gc.c: We were missing one case where invoking a finalizer would
2246         not reset the domain.  Also, in the finalizer thread loop, assert
2247         that we're in the root domain.
2248
2249 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2250
2251         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
2252         if the type is not an array.
2253
2254 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2255
2256         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
2257         method bound to the declaring type of the method. Raise an exception
2258         if the type is not a generic param.
2259
2260 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2261
2262         * class.c (print_unimplemented_interface_method_info): Print the
2263         full type name.
2264
2265         * class.c (mono_class_setup_vtable_general): When dealing with a
2266         generic instance first check if the generic type definition is
2267         not broken.
2268
2269 2009-02-11 Tom Hindke <tom_hindle@sil.org>
2270
2271         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
2272
2273         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
2274
2275         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
2276
2277         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
2278
2279         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
2280
2281         Code is contributed under MIT/X11 license
2282
2283 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
2284
2285         * verify.c: Fix naming of stelem and ldelem.
2286
2287 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2288
2289         * generic-sharing.c: Replace the templates lock with the loader
2290         lock because of very hard to resolve deadlock issues.
2291
2292 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
2293
2294         * icall.c (ves_icall_Type_GetMethodsByName): Use 
2295         mono_class_get_vtable_size () instead of accessing klass->vtable_size
2296         directly. Fixes #525338.
2297
2298         * class.c (mono_class_get_vtable_size): New helper function.
2299
2300         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
2301         the field belongs to the type. Fixes #525733.
2302
2303 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2304
2305         * sgen-gc.c: When we stop a thread and its stack top is not within
2306         its allocated stack (because it's in an altstack signal handler),
2307         restart it and stop it again, until it is.
2308
2309 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2310
2311         * sgen-gc.c: Take a thread's stack top and registers from the
2312         sigcontext in the suspend signal handler.
2313
2314         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
2315         stuff to sgen-archdep.h.
2316
2317         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
2318         caller, because have code in sgen-archdep.h to acquire that data.
2319
2320 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
2321
2322         * profiler.c, profiler.h, profiler-private.h:
2323         Added support for keeping track of code chunks and buffers.
2324
2325 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
2326
2327         * metadata-verify.c: Fix endianness problems on decoding functions.
2328         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
2329
2330 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2331
2332         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
2333         schema for vectors and one dimension SZARRAY.
2334
2335 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2336
2337         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
2338         schema for vectors and one dimension SZARRAY.
2339
2340 2009-07-27  Mark Probst  <mark.probst@gmail.com>
2341
2342         * icall-def.h, thread-types.h, threads.c: New separate icalls for
2343         Interlocked.(Compare)Exchange with object arguments, which invoke
2344         write barriers.
2345
2346 2009-07-26  Miguel de Icaza  <miguel@novell.com>
2347
2348         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
2349         passed invalid arguments.   Fixes another crasher in the
2350         Silverlight test suite.
2351
2352         * class.c (mono_class_array_element_size): Return 0 for the size
2353         of the class;  This fixes the crasher exposed by :
2354
2355         typeof (void).MakeArrayType ();
2356
2357         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
2358         if there is no method to dereference.    Put all the code that
2359         depends on this inside the if (method) block.
2360
2361         This fixes the crasher exposed by Microsoft's Silvelright CLR test
2362         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
2363
2364         With this change, we pass the test.
2365         
2366         * reflection.c (mono_reflection_sighelper_get_signature_local):
2367         Only dereference the assembly if it has been set.    Fixes a
2368         crasher exposed by #525328
2369
2370 2009-07-25  Mark Probst  <mark.probst@gmail.com>
2371
2372         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
2373         don't perform the store in mono_gc_wbarrier_generic_nostore().
2374         Remove the second argument (value), which is not needed.
2375
2376 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
2377
2378         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
2379         the build.
2380
2381         * boehm-gc.c: Ditto.
2382         
2383 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2384
2385         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
2386         not perform the store itself.  Introduce
2387         mono_gc_wbarrier_generic_nostore(), which is the same as
2388         mono_gc_wbarrier_generic_store(), except it doesn't perform the
2389         store.
2390
2391 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2392
2393         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
2394         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
2395         we still need the memcpy().
2396
2397 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2398
2399         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
2400         so that big arrays are handled correctly.  Always use
2401         safe_object_get_size() to calculate array object sizes, which
2402         takes bounds into account.
2403
2404 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2405
2406         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
2407         GC descriptor is computed before we use it.
2408
2409 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2410
2411         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
2412         write barrier if necessary.
2413
2414 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2415
2416         * icall-def.h, icall.c, thread-types.h: New separate icall for
2417         VolatileWrite(object&,object) that uses a write barrier.
2418
2419         * console-unix.c, file-io.c, icall.c, threads.c: Use write
2420         barriers in icalls which write to "ref" or "out" arguments.
2421
2422 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
2423
2424         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
2425         handler in a separate icall, to reduce the size of the wrappers.
2426
2427 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2428
2429         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
2430
2431 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2432
2433         * metadata-verify.c (parse_field): Allow byref field.
2434
2435         * metadata-verify.c (parse_locals_signature): Allow byref locals.
2436
2437         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
2438
2439 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2440
2441         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
2442         Fixes #522784.
2443
2444 2009-07-20  Robert Jordan  <robertj@gmx.net>
2445
2446         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
2447         Fix invalid IL in valuetype handling (STOBJ must push the
2448         corresponding class). Fixes bug #523149.
2449
2450         Code is contributed under MIT/X11 license.
2451
2452 2009-07-20  Geoff Norton  <gnorton@novell.com>
2453
2454         * gc.c: Use proper semaphores where available on posix and darwin.
2455
2456 2009-07-19  Geoff Norton  <gnorton@novell.com>
2457
2458         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
2459
2460 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
2461
2462         * refletion.c (is_sre_usertype): Change name to is_usertype and
2463         invert it's result so it returns true if the type is an user type
2464         and not the opposite.
2465
2466         * reflection.c (is_*_type): Change all of those to use new macro
2467         check_corlib_type_cached that cached the type lookup so we don't
2468         need to do string comparisons all the type. Changed the signature
2469         to take a MonoClass instead.
2470
2471         * reflection.c: Change mono_image_create_token and resolve_object
2472         to use is_sre_* functions.
2473
2474 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2475
2476         * sgen-gc.c: Check for writes to the stack in the managed
2477         wbarrier as well.
2478
2479 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2480
2481         * sgen-gc.c: When a thread is unregistered, don't free its remsets
2482         but put them on a list which is processed with the other thread's
2483         remsets.
2484
2485 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2486
2487         * sgen-gc.c: Fix and enable the internal allocator instead of
2488         using malloc/free (which causes deadlocks).
2489
2490 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
2491
2492         * refletion.c: Fix builds with SRE disabled by adding a minimal
2493         implementation of mono_reflection_type_get_handle.
2494
2495 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2496
2497         * refletion.c: Make mono_reflection_type_get_handle non static.
2498
2499         * object-internals.h: Export mono_reflection_type_get_handle.
2500
2501         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
2502         unmanaged handle using mono_reflection_type_get_handle.
2503
2504 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2505
2506         * refletion.c: Replace all reads of MonoReflectionType::type with
2507         calls to mono_reflection_type_get_handle. Only the functions that
2508         deal with constructing TypeBuilder::type have not been changed
2509         because they have to deal with NULL values.
2510
2511         This is a first step into supporting reflection types that don't
2512         map directly into their unmanaged counterpart.
2513
2514 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
2515
2516         * metadata-verify.c (parse_locals_signature): Don't complain
2517         on signature with zero locals since MS generates it and doesn't
2518         bother with.
2519
2520 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
2521
2522         * reflection.c (mono_image_get_array_token): Resolve return
2523         type using mono_reflection_type_get_handle.
2524
2525         * reflection.c (mono_image_get_array_token): Resolve array method
2526         parent type using mono_reflection_type_get_handle.
2527
2528 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
2529
2530         * reflection.c (mono_image_basic_init): Applied patch from
2531         <Dax@daxxfiles.net>. Set the public key token from the assembly
2532         builder. Fixes #518909.
2533
2534         * appdomain.c: Bump corlib version.
2535
2536 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
2537
2538         * class.c (mono_class_needs_cctor_run): Make this return false if
2539         the class has no cctor.
2540
2541 2009-07-13  Mark Probst  <mark.probst@gmail.com>
2542
2543         * sgen-gc.c: When the minor GC needs to allocate a new section,
2544         invoke the major GC afterwards.
2545
2546 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
2547
2548         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
2549           Applying the window_style field to the SHELLEXECUTEINFO struct.
2550
2551         Code is contributed under MIT/X11 license.
2552
2553 2009-07-13  Mark Probst  <mark.probst@gmail.com>
2554
2555         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
2556         locking earlier.  Fix it in the managed allocator by making sure
2557         that no thread is stopped there before the GC runs.  If we do stop
2558         a thread there, we restart it and let it run a but, until it stops
2559         somewhere else.
2560
2561         * gc-internal.h, gc.c: Function for getting the IP from a signal
2562         context via a function registered by mini.
2563
2564 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
2565
2566         * object-internals.h (MonoIntPtr): New structure describing a boxed
2567         IntPtr.
2568
2569         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
2570         returns. Fixes #519953.
2571
2572         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
2573
2574 2009-07-09  Mark Probst  <mark.probst@gmail.com>
2575
2576         * class-internals.h, generic-sharing.c: New RGCTX info type for
2577         getting a remoting invoke with check wrapper.
2578
2579 2009-07-07  Geoff Norton  <gnorton@novell.com>
2580
2581         * icall-def.h: Fix the enable-minimal build.
2582
2583 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2584
2585         * object-internals.h: Add MonoReflectionDerivedType.
2586
2587         * reflection.c: Implement support for PointerType.
2588         Fixed tons of warnings.
2589
2590 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2591
2592         * object-internals.h: Add MonoReflectionByRefType.
2593
2594         * reflection.c: Implement support for ByRefType.
2595
2596 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2597
2598         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
2599
2600         * object-internals.h: Add MonoReflectionArrayType and
2601         mono_reflection_create_unmanaged_type.
2602
2603         * reflection.c: Implement support for ArrayType.
2604
2605 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2606
2607         * metadata-verify.c (is_valid_method_header): Parse EH block
2608         flags correctly.
2609
2610 2009-07-03  Mark Probst  <mark.probst@gmail.com>
2611
2612         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
2613         processing the disappearing links, and process disappearing links
2614         in a loop until no new objects are copied.
2615
2616 2009-07-03  Mark Probst  <mark.probst@gmail.com>
2617
2618         * object.c (handle_enum): Invoke the write barrier when copying
2619         value type instances.
2620
2621         * sgen-gc.c: Register remsets for unmanaged write barriers only
2622         when the address written to is actually on the heap.  This makes
2623         set_value() in object.c work without requiring that the result be
2624         on the heap.
2625
2626 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
2627
2628         The runtime wrappers are all bound to a given type that must
2629         exist in the same image. For regular images we use the <Module>
2630         type, which is required to exist for all images.
2631
2632         The <Module> type can't be used for dynamic images because it
2633         might not exist at the time the wrapper is required, so we create
2634         a synthetic type to use instead.
2635
2636         The current code works because of the 2 stage setup of MonoClass,
2637         but once this is gone it will no longer work.
2638
2639         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
2640
2641         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
2642
2643         * object-internals.h: Export mono_image_set_wrappers_type icall
2644         as part of the internal API.
2645
2646         * marshal.c (get_wrapper_target_class): If the image is dynamic,
2647         use MonoDynamicImage::wrappers_type instead of the <Module> type.
2648
2649         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
2650         image wrappers_type to the provided value.
2651
2652 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
2653
2654         * appdomain.c (deregister_reflection_info_roots): No need
2655         to use the image lock here.
2656
2657 2009-07-02  Mark Probst  <mark.probst@gmail.com>
2658
2659         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
2660
2661 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
2662
2663         * threads.c: Store the thread start argument in a hash table instead of
2664         registering it as a root, as libgc doesn't support unregistering roots
2665         under windows, leading to 'too many root sets' errors when many threads
2666         are created.
2667
2668         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
2669         shutdown, they can still be referenced by the other dying objects.
2670         Fixes #514506.
2671
2672 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
2673
2674         * socket-io.c: DontLinger does not allow LingerOptions.
2675
2676 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2677
2678         * metadata-verify.c: The spec doesn't mention that it's possible to add
2679         custom attribute to a generic parameter. Fixed.
2680
2681 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2682
2683         * class.c (inflate_generic_type): Don't crash while trying to output a message
2684         on why we're aborting.
2685
2686 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
2687
2688         * socket-io.c: DontLinger can take an int or a boolean too.
2689
2690 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
2691
2692         * gc.c: check for a null argument to SuppressFinalize () and
2693         ReRegisterForFinalize ().
2694
2695 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2696
2697         * loader.c (method_from_methodspec): Call into the verifier to check
2698         the signature.
2699
2700         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
2701
2702         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
2703         part of the internal API.
2704
2705 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2706
2707         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
2708         the signature.
2709
2710         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
2711
2712         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
2713         part of the internal API.
2714
2715 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2716
2717         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
2718         the signature.
2719
2720         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
2721         blob verification.
2722
2723         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
2724         part of the internal API.
2725
2726 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2727
2728         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
2729         when doing basic verification. 
2730
2731         This check must be done since the runtime peeks into signatures in much
2732         more places than it does decoding so it makes sense to ensure that all
2733         pointers to blob objects are well formed.
2734
2735 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2736
2737         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
2738         Use proper overflow dectection. Fix usage of it.
2739
2740 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2741
2742         * loader.c (field_from_memberref): Call into the verifier to check
2743         the signature.
2744
2745         * loader.c (mono_method_get_signature_full): Same.
2746
2747         * loader.c (method_from_memberref): Same.
2748
2749         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
2750
2751         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
2752         part of the internal API.
2753
2754 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2755
2756         * threadpool.c (mono_thread_pool_add): If the domain is unloading
2757         or unloaded, still return an AsyncResult, but don't add it to the
2758         threadpool.
2759
2760 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
2761
2762         * threads.c: fix missing colon when DEBUG is defined.
2763
2764 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2765
2766         * threadpool.c: Don't add new calls to a threadpool if the domain
2767         of the call is unloading or unloaded.  When dequeuing a job, null
2768         the reference in the queue.
2769
2770 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2771
2772         * sgen-gc.c (null_link_in_range): Add the dislink for the old
2773         generation if an object was moved.
2774
2775 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
2776
2777         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
2778           parameters of type SAFEARRAY[VARIANT].
2779
2780         * reflection.c (encode_marshal_blob): Properly generate element type
2781           (SafeArraySubType marshal attribute option).
2782
2783         Code is contributed under MIT/X11 license.
2784
2785 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
2786
2787         * reflection.c: in mono_method_clear_object () really ensure all the
2788         objects are removed.
2789
2790 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2791
2792         * loader.c (mono_method_signature): Call into the verifier to check
2793         the method signature.
2794
2795         * metadata-verify.c (verify_method_table): Move signature verification
2796         to verify_method_table_full.
2797
2798         * metadata-verify.c: Add mono_verifier_verify_method_signature.
2799
2800         * verify-internals.h: Export mono_verifier_verify_method_signature as
2801         part of the internal API.
2802
2803 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2804
2805         * loader.c (mono_method_get_header): Call into the verifier to
2806         check the method header.
2807
2808         * metadata-verify.c: Add mono_verifier_verify_method_header.
2809
2810         * verify-internals.h: Export mono_verifier_verify_method_header as
2811         part of the internal API.
2812
2813 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2814
2815         * class.c (mono_class_find_enum_basetype): Call into the verifier to
2816         check the field signature. Replace an assert with an explicit check.
2817
2818         * class.c (mono_class_setup_fields): Call into the verifier to check
2819         the field signature.
2820
2821         * metadata-verify.c: Add mono_verifier_verify_field_signature.
2822
2823         * verify-internals.h: Export mono_verifier_verify_field_signature as
2824         part of the internal API.
2825
2826 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2827
2828         * class.c (mono_class_find_enum_basetype): Simplify this function
2829         by moving code outside of the loop and not decoding static fields.
2830
2831 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2832
2833         * metadata-verify.c (verify_typedef_table): Check the extends
2834         token here. Move to here a flags check from verify_typedef_table_full.
2835
2836 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
2837
2838         * metadata-verify.c (is_valid_method_header): Fix a warning.
2839
2840         * metadata-internals.h (MonoImage): Remove the unused 
2841         static_rgctx_invoke_wrapper_cache.
2842
2843         * image.c marshal.c: Ditto.
2844
2845 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2846
2847         * image.c (do_mono_image_load): Enable table data verification.
2848
2849 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2850
2851         * metadata-verify.c (is_valid_constant): Fix nullref check.
2852
2853 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2854
2855         * metadata-verify.c (is_valid_constant): Fix string bounds check.
2856
2857 2009-06-22  Mark Probst  <mark.probst@gmail.com>
2858
2859         * sgen-gc.c: Managed allocation with pthreads TLS.
2860
2861         * threads.c, threads-types.h: Functions for the JIT to tell the
2862         runtime whether it supports the MONO_TLS opcode.
2863
2864 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2865
2866         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
2867         without methods.
2868
2869 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2870
2871         * metadata-verify.c (is_valid_constant): Fix the string length check.
2872         Use safe overflow checking. Add decent error messages.
2873
2874 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2875
2876         * metadata-verify.c: Move remaininh blob checks to the offline
2877         verification path.
2878
2879 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2880
2881         * metadata-verify.c: Move more blob checks to the offline verification
2882         path.
2883
2884 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
2885
2886         * object-internals.h : Adding interrupt_on_stop field.
2887
2888         * threads.c (mono_thread_request_interruption) : On Windows exit the
2889           thread if interrupt_on_stop is set.
2890
2891         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
2892          Removing old interrupt logic and setting the interrupt_on_stop for the
2893          thread when calling accept.
2894
2895         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
2896          setting the interrupt_on_stop for the thread when calling accept.
2897
2898         Contributed under MIT/X11 license.
2899
2900 2009-06-20  Martin Baulig  <martin@ximian.com>
2901
2902         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
2903
2904 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
2905
2906         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
2907         running in no-exec mode.
2908
2909 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2910
2911         * metadata-verify.c (verify_method_table): Move header
2912         checking to verify_method_table_full.
2913
2914         * metata-verify.c (mono_verifier_verify_full_table_data):
2915         Call verify_method_table_full.
2916
2917 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2918
2919         * metadata-verify.c (verify_field_table): Move signature
2920         checking to verify_field_table_full.
2921
2922         * metata-verify.c (mono_verifier_verify_full_table_data):
2923         Call verify_field_table_full.
2924
2925 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2926
2927         * metadata-verify.c (verify_typedef_table): Move remaining
2928         stuff to verify_typedef_table_full.
2929
2930 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2931
2932         * metadata-verify.c: Kill is_corlib from VerifyContext.
2933         It is only used by the offline mode.
2934         So we better remove it from the runtime path.
2935
2936 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2937
2938         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
2939         function that perform the offline metadata verification steps.
2940
2941         * metadata-verify.c (verify_typedef_table): Move some checks to
2942         verify_typedef_table_full and make it been called by new function
2943         mono_verifier_verify_full_table_data.
2944
2945         * pedump.c: Call mono_verifier_verify_full_table_data.
2946
2947         * verify-internals.h: Export mono_verifier_verify_full_table_data as
2948         part of the internal API.
2949
2950 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2951
2952         * metadata-verify.c (typedef_is_system_object): Fix System.Object
2953         check.
2954
2955         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
2956         flags bits. SupportLastError was confused as bit 7 instead of 6.
2957
2958         * metadata-verify.c (verify_implmap_table): Fix import scope verification
2959         to check against the module ref table instead of module.
2960
2961         * metadata-verify.c (verify_implmap_table): Fix corlib check.
2962
2963         * pedump.c: Call mono_image_load_names.
2964
2965 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2966
2967         * image.c: Extract mono_image_load_names from do_mono_image_load.
2968
2969         * metadata-internals.h: Export mono_image_load_names as part of
2970         the internal API.
2971         
2972 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
2973
2974         * metadata.c (mono_metadata_cleanup): Free the generic method cache
2975         first, as it could reference data in the other caches.
2976
2977 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
2978
2979         * metadata-verify.c: Finished with method header verification.
2980
2981 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
2982
2983         * metadata-verify.c: Added more header verification code.
2984         Now only EH clauses are missing.
2985
2986 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
2987
2988         * marshal.c (get_runtime_invoke_type): Don't share primitive types
2989         for return values.
2990
2991 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
2992
2993         * metadata-verify.c: Initial method header verification.
2994
2995 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
2996
2997         * metadata-verify.c (verify_import_table): The IAT contents
2998         might end been patched by the windows DL when running with
2999         coree enabled.
3000
3001 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
3002
3003         * class.c (mono_class_from_typeref): If the enclosing type is not
3004         found return null instead of crashing. Fixes #508487.
3005
3006 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
3007
3008         * normalization-tables.h : updated to the latest unicode charcter
3009           data.
3010         * appdomain.c : bump corlib version.
3011
3012 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
3013
3014         * class.c (mono_class_from_name): Fix support for assembly references
3015         in the EXPORTEDTYPE table. Fixes #511704.
3016
3017 2009-06-13  Geoff Norton  <gnorton@novell.com>
3018
3019         * domain.c: Ensure that mono_domain_assembly_open actually opens the
3020         assembly in the target domain.
3021
3022 2009-06-12  Robert Jordan  <robertj@gmx.net>
3023
3024         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
3025         because "this" of the managed signature has become an
3026         ordinary parameter in the unmanaged signature.
3027
3028 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
3029
3030         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
3031         field for owner-less generic containers.
3032
3033         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
3034         image field of the owner-less generic containers created here.
3035
3036         * metadata.c (mono_metadata_load_generic_params): Ditto, the
3037         contain is ownerless until the caller sets its owner.
3038
3039         * metadata.c (type_in_image): Handle owner-less generic containers
3040         correctly.
3041         
3042 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3043
3044         * image.c (mono_image_close): Support debug_assembly_unload for
3045         dynamic images too.
3046
3047 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
3048
3049         * class.c: Fix some typos in comments.
3050
3051 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3052
3053         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
3054
3055         * threads.c (mono_thread_execute_interruption): Avoid creating the
3056         abort exception object while holding the synch_cs lock.
3057
3058 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
3059
3060         * metadata-verify.c: Verify basic cattr content.
3061
3062 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
3063
3064         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
3065         nested types.
3066         
3067         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
3068         support for nested types. Fixes #511704.
3069
3070 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3071
3072         * metadata-verify.c: Verify methodspec signatures.
3073
3074 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3075
3076         * metadata-verify.c: Verify typespec signatures.
3077
3078 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
3079
3080         * metadata.c (free_inflated_method): Call 
3081         mono_marshal_free_inflated_wrappers (), which was missed earlier.
3082
3083 2009-06-08  Miguel de Icaza  <miguel@novell.com>
3084
3085         * mono-config.c: Small change to report the PPC64/ILP32 model.
3086
3087 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3088
3089         * metadata-verify.c (parse_type): Check szarray.
3090
3091 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3092
3093         * metadata-verify.c (parse_type): Check fnptr.
3094
3095 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3096
3097         * metadata-verify.c (parse_type): Check generic instances.
3098
3099 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3100
3101         * metadata-verify.c (parse_type): Check array shape.
3102
3103 2009-06-05  Robert Jordan  <robertj@gmx.net>
3104
3105         * class.c (mono_class_create_from_typedef): Check only for
3106         mscorlib's System.Array.
3107
3108 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3109
3110         * metadata-verify.c (parse_type): Check pointer, class/valuetype
3111         and generic params. 
3112
3113         * metadata-verify.c (parse_field): Check the signature.
3114
3115 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3116
3117         * metadata-verify.c: Implement locals signature check.
3118
3119 2009-06-04  Marek Safar  <marek.safar@gmail.com>
3120
3121         * domain.c: Add .NET 4.0 Beta 1 version.
3122
3123 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
3124
3125         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
3126           For QueryInterface on CCWs consider the base class
3127           interfaces as well.
3128
3129         Code is contributed under MIT/X11 license.
3130
3131 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3132
3133         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
3134
3135         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
3136         used.
3137
3138         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
3139         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
3140
3141         * generic-sharing.c (inflate_other_data): Ditto.
3142         
3143 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3144
3145         * metadata-verify.c: Implement property signature check.
3146
3147 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3148
3149         * sgen-gc.h: Register saving support for PPC.
3150
3151 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3152
3153         * sgen-gc.c: Fixed a pthread TLS screwup.
3154
3155 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3156
3157         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
3158         supported.
3159
3160 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3161
3162         * sgen-gc.c: Disable TLA and managed allocation if the __thread
3163         keyword is not supported.
3164
3165 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3166
3167         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
3168         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
3169         the inflated method is freed. Fixes #508389.
3170
3171         The code is contributed under the MIT/X11 license.
3172         
3173 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
3174
3175         * marshal.c (get_wrapper_target_class): New helper function.
3176         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
3177         the <Module> class of the image. Fixes #509049.
3178
3179 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3180
3181         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
3182         Check if the thread was interrupted and proccess it straight away.
3183         Makes abortion much more responsive.
3184
3185 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3186
3187         * threads.c (mono_thread_execute_interruption): Use atomic cas with
3188         MonoThread::interruption_requested to match it's counterpart.
3189
3190         Fixes a hang in abort-stress-1 on a 2 core x86.
3191
3192         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3193         Fix warning.
3194
3195 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3196
3197         Change MonoImage::name_cache to be protected by the image lock
3198         instead of the loader lock.
3199
3200         * appdomain.c (deregister_reflection_info_roots): Protect access
3201         to name_cache.
3202
3203         * class.c (mono_image_init_name_cache): Change from the loader lock
3204         to the image lock. Check if the cache wasn't already created.
3205
3206         * class.c: Change from the loader to the image lock.
3207
3208         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
3209         the code to hold the image lock while iterating over name_cache and
3210         not go into mono_array_new holding it.
3211
3212         * metadata-internals.h: Add a comment about this change.
3213
3214 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3215
3216         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
3217         Under the 2.0 profile raise the loader error.
3218
3219         Fixes #508532.
3220
3221 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3222
3223         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
3224         of ldind opcode for generic instances so we don't fail for direct wrappers.
3225         This only affect direct calls.
3226
3227 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
3228
3229         * reflection.c (create_dynamic_mono_image): Fix warnings.
3230
3231         * generic-sharing.c (other_info_equal): Ditto.
3232         
3233 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3234
3235         * metadata-verify.c: Implement field signature check.
3236
3237 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3238
3239         * metadata-verify.c: Implement standalone signature check.
3240
3241 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3242
3243         * metadata-verify.c: Implement methodref signature check.
3244
3245 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
3246
3247         * object-internals.h (MonoRuntimeCallbacks): New structure containing
3248         callbacks supplied by the runtime.
3249
3250         * object.c (mono_install_callbacks): New internal function to install
3251         the callbacks.
3252
3253         * object.c (mono_create_ftnptr): Move the implementation of this to
3254         mini/.
3255
3256         * object.c (mono_get_addr_from_ftnptr): Ditto.  
3257
3258 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3259
3260         * metadata-verify.c (parse_return_type): Proper byref check.
3261         * metadata-verify.c (is_valid_method_signature): Check for zero arity
3262         generic signatures and method params.
3263
3264 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3265
3266         * metadata-verify.c (decode_signature_header): Fix bounds check.
3267
3268         * metadata-verify.c (parse_custom_mods): Check custom mods.
3269
3270         * metadata-verify.c (parse_type): Do initial basic verification
3271         of valid values.
3272         
3273         * metadata-verify.c (is_valid_method_signature): Parse the generic
3274         param count.
3275
3276 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
3277
3278         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
3279         discarded based on their most specific definition so we set the method_slots
3280         array before checking if the method is acceptable or not.
3281
3282         Fixes #506757.
3283
3284 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3285
3286         * icall.c: Free the old array when resizing a mono_ptr_array.
3287
3288 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3289
3290         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
3291         for the hashes whose keys are managed objects.
3292
3293 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3294
3295         * object-internals.h, threads.c: Set the execution context on
3296         thread start here, not in corlib.
3297
3298         * appdomain.c: Bump corlib version.
3299
3300 2009-05-27  Martin Baulig  <martin@ximian.com>
3301
3302         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
3303         if `_mono_debug_using_mono_debugger' is set to make things work
3304         properly when embedding Mono.
3305
3306 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
3307
3308         * class.c (mono_class_setup_fields): Don't mark simd types as having
3309         16 bytes alignment as the whole runtime doesn't support.
3310
3311 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
3312
3313         * metadata-verify.c (safe_read): Use endian safe read macros.
3314
3315 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
3316
3317         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
3318         it is read-only when using full aot.
3319
3320 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3321
3322         * metadata-verify.c (is_valid_method_signature): Verify parts
3323         of the return type. Provide an error message in case of failure.
3324
3325 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3326
3327         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
3328
3329 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3330
3331         * metadata-verify.c: Include the size prefix in the bounds check.
3332
3333 2009-05-22  Miguel de Icaza  <miguel@novell.com>
3334
3335         * icall.c: Remove warnings.
3336
3337         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
3338         prevent auto-detection based on GCC defines.
3339
3340         Add PS3
3341
3342         * metadata-verify.c: Do not include signal.h
3343
3344         * generic-sharing.c, marshal.c: Add returns to avoid some warning
3345         messages.  Not sure why the g_assert_not_reached is not enough to
3346         quiet the compiler.
3347         
3348
3349         * appdomain.c: Remove code that is not used when
3350         DISABLE_SHADOW_COPY is set.
3351
3352         * image.c: use g_getenv
3353
3354 2009-05-21  Miguel de Icaza  <miguel@novell.com>
3355
3356         * reflection.c: Remove code that it not used with
3357         DISABLE_REFLECTION_EMIT is defined.
3358
3359 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
3360
3361         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
3362         invoke wrappers.
3363
3364 2009-05-20  Miguel de Icaza  <miguel@novell.com>
3365
3366         * socket-io.c
3367         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
3368         the ifdef here and instead put that on io-layer
3369
3370 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3371
3372         * metadata-verify.c: Verify the generic param constraint table.
3373
3374 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3375
3376         * metadata-verify.c (verify_generic_param_table): Fix
3377         thinko on the valid flags bits for generic params.
3378
3379 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3380
3381         * metadata-verify.c: Verify the methodspec table.
3382
3383 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3384
3385         * metadata-verify.c: Verify the generic param table.
3386
3387 2009-05-19  Mark Probst  <mark.probst@gmail.com>
3388
3389         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
3390
3391 2009-05-19  Mark Probst  <mark.probst@gmail.com>
3392
3393         * sgen-gc.c: Use generation enum more consistently and use the
3394         correct generation in mono_gc_register_for_finalization().
3395
3396 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3397
3398         * metadata-verify.c: Verify the nested class table.
3399
3400 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3401
3402         * metadata-verify.c: Verify the manifest resource table.
3403
3404 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
3405
3406         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
3407
3408 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
3409
3410         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
3411         wrappers, this is now done in the JIT.
3412         
3413         * class.c (mono_set_generic_sharing_supported): New internal function.
3414         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
3415
3416 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3417
3418         * metadata-verify.c: Verify the exported type table.
3419
3420 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3421
3422         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
3423
3424 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3425
3426         * metadata-verify.c: Verify the file table.
3427
3428 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3429
3430         * metadata-verify.c (verify_assembly_table): Fix an error message.
3431
3432         * metadata-verify.c: Verify the assemblyref table.
3433
3434 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3435
3436         * metadata-verify.c (verify_assembly_table): Fix the valid
3437         bits mask for flags.
3438
3439 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
3440
3441         * debug-helpers.c (mono_method_full_name): Print generic parameters of
3442         generic methods as well.
3443
3444 2009-05-15  Geoff Norton  <gnorton@novell.com>
3445
3446         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
3447         use-case and is significantly more performant than the wapi layer.
3448
3449 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3450
3451         * metadata-verify.c: Verify the assembly table.
3452
3453 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3454
3455         * metadata-verify.c: Fix rows limit check.
3456
3457 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3458
3459         * metadata-verify.c: Verify the fieldrva table.
3460
3461 2009-05-13  Mark Probst  <mark.probst@gmail.com>
3462
3463         * sgen.c: Speed up weak links and finalizers by grouping them by
3464         generation.
3465
3466 2009-05-13  Mark Probst  <mark.probst@gmail.com>
3467
3468         * marshal.c (delegate_hash_table_add): When overwriting an entry,
3469         free the old GCHandle (only applies to SGen).
3470
3471 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
3472
3473         * loader.c (mono_get_method_from_token): Avoid the expensive call to
3474         mono_metadata_load_generic_params () for non-generic methods.
3475
3476 2009-05-12  Mark Probst  <mark.probst@gmail.com>
3477
3478         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
3479         New function for returning a monitor's weak link if it has one.
3480
3481         * sgen-gc.c: Remove an object's monitor's weak link (if it has
3482         one) when clearing a domain.  These can still be around because
3483         the object might not have been collected.
3484
3485 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
3486
3487         * gc.c: Fix a warning.
3488
3489 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
3490
3491         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
3492         prevous wait that resulted in a deadlock on Windows when initializing
3493         the runtime form DllMain. Also results in improved startup time.
3494         (finalizer_thread): Get rid of thread_started_event.
3495         * threads.c, threads-types.h (mono_thread_create_internal): Return the
3496         resulting MonoThread.
3497
3498         Contributed under MIT/X11 license.
3499
3500 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
3501
3502         * metadata-verify.c: Verify the implmap table.
3503         Don't require that #US and #Strings be present.
3504
3505 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
3506
3507         * security-core-clr.c: Delegate checks are done at creation time,
3508         not a invocation time. Fix exception for Telerik Silverlight demo
3509
3510 2009-05-11  Mark Probst  <mark.probst@gmail.com>
3511
3512         * sgen-gc.c (need_remove_object_for_domain): Remove the special
3513         case for the Thread class.
3514
3515         * threads.c: Do clean-up of abort exception/state in
3516         thread_cleanup() instead of Thread.free_internal().  Also clean up
3517         current_appcontext.  The reason we have to do that is because
3518         those references might point into another domain and if that
3519         domain is unloaded before the thread is finalized, they point to
3520         invalid data.
3521
3522 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
3523
3524         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
3525         stub signatures.
3526         
3527         Contributed unter MIT/X11 license.
3528
3529 2009-05-09  Miguel de Icaza  <miguel@novell.com>
3530
3531         * verify.c, metadata-verifier.c: Add support for disabling the
3532         verifier in some builds.
3533
3534         [ Sorry, my previous commit accidentally commited some work in
3535         progress ]
3536
3537 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
3538
3539         * class.c (mono_class_setup_fields): Set class->field.first for
3540         generic instances.
3541
3542 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
3543
3544         * metadata-verify.c: Verify the typespec table.
3545
3546 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
3547
3548         * metadata-verify.c: Verify the module table.
3549
3550 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3551
3552         * metadata-verify.c: Verify the methodimpl table.
3553
3554 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3555
3556         * metadata-verify.c: Verify the property table.
3557
3558 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
3559
3560         * debug-helpers.c (mono_method_desc_match): Add support for generic
3561         glob patterns.
3562
3563 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
3564
3565         * metadata-verify.c: Verify the propertymap table.
3566
3567 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
3568
3569         * metadata-verify.c: Verify the event table.
3570
3571         * metadata-verify.c (search_sorted_table): Fix offset
3572         calculation.
3573
3574 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
3575
3576         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
3577
3578 2009-05-01  Mark Probst  <mark.probst@gmail.com>
3579
3580         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
3581         because mono_delegate_free_ftnptr() needs it.
3582
3583 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3584
3585         * metadata-verify.c: Verify the eventmap table.
3586
3587 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3588
3589         * metadata-verify.c: Verify the standalonesig table.
3590
3591 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3592
3593         * metadata-verify.c: Verify the field layout table.
3594
3595 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3596
3597         * class.c (mono_type_get_name_recurse): Don't crash
3598         for ownerless generic params.
3599
3600         * debug-helpers.c (mono_type_get_desc): Correct the format
3601         for ownerless generic params.
3602
3603 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3604
3605         * metadata-verify.c: Verify the class layout table.
3606
3607 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3608
3609         * metadata-verify.c: Verify the decl security table.
3610
3611 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3612
3613         * domain.c (mono_domain_set_internal_with_options): Don't do
3614         anything if the old domain is the same as the old one.  Fixes
3615         #499326.
3616
3617 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3618
3619         * appdomain.c: Deregister the reflection_info roots when unloading
3620         a domain.
3621
3622         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
3623         memory allocated by a domain and frees its disappearing links.
3624
3625         * boehm-gc.c, null-gc.c: Empty implementation of
3626         mono_gc_clear_domain().
3627
3628 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3629
3630         * appdomain.c (clear_cached_vtable): Free the static fields memory
3631         block.
3632
3633 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3634
3635         * gc.c: Set the correct domain when invoking finalizers.
3636
3637         * appdomain.c: Set the correct domain when creating threads.
3638
3639 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3640
3641         * sgen-gc.c: Fix skip size for vectors.
3642
3643 2009-05-03  Martin Baulig  <martin@ximian.com>
3644
3645         * mono-debug-debugger.c
3646         (mono_debugger_check_breakpoints): Check class init handlers even
3647         if we don't have any method load handers.
3648
3649 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
3650
3651         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
3652         returning refonly assemblies if refonly is FALSE. Fixes #499013.
3653
3654 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
3655
3656         * metadata-verify.c: Verify the field marshal table.
3657
3658 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
3659
3660         * metadata-verify.c: Verify the custom attribute table.
3661
3662 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3663
3664         * metadata-verify.c: Verify the constant table.
3665
3666 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3667
3668         * metadata-verify.c: Verify the memberef table.
3669
3670 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3671
3672         * metadata-verify.c (get_coded_index_token): Remove
3673         dead argument.
3674
3675 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3676
3677         * metadata-verify.c: Verify the interfaceimpl table.
3678
3679 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3680
3681         * verify.c: Improve error message.
3682
3683         * debug-helpers.c (mono_type_get_desc): Harden the code that
3684         deals with VAR and MVAR.
3685
3686 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
3687
3688         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
3689         part of #498692.
3690
3691 2009-04-23 Tom Hindle <tom_hindle@sil.org>
3692
3693         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
3694         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
3695
3696 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
3697
3698         * security-core-clr.c: Avoid redundant checks for platform code, 
3699         e.g. check for method and for class (very common) and check
3700         for class and outer class (less common)...
3701
3702 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
3703
3704         * reflection.c: Avoid returning random cattrs for synthetic methods.
3705         Fixes #498545.
3706
3707 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3708
3709         * assembly.c: assemblies in the GAC should never be shadow-copied.
3710
3711 2009-04-26  Mark Probst  <mark.probst@gmail.com>
3712
3713         * domain.c, domain-internals.h: Disable
3714         track_resurrection_{objects,handles}_hash in MonoDomain if using
3715         SGen.
3716
3717 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3718
3719         * metadata-verify.c: Verify the param table.
3720
3721 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3722
3723         * metadata-verify.c (verify_typedef_table): Range check FieldList and
3724         MethodList.
3725
3726         * metadata-verify.c (verify_method_table): Proper check the ParamList
3727         field.
3728
3729 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3730
3731         * metadata-verify.c (verify_method_table): Check for runtime
3732         implemented functions such as delegate .ctors. Remove spurious
3733         printf.
3734         
3735 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3736
3737         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
3738
3739 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3740
3741         Don't allocate MonoGenericInfo for ownerless generic params.
3742         * class-internals.h (MonoGenericParam::info): Move field to ...
3743         (MonoGenericParamFull): ... this.  New struct.
3744         (MonoGenericContainer::type_params): Change type to
3745         MonoGenericParamFull.
3746         (MonoGenericParam, MonoGenericContainer): Update accessors.
3747         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
3748         'info' field for ownerless generic param.
3749         (mono_metadata_load_generic_params): Update to changes.
3750         * reflection.c (mono_reflection_create_generic_class): Likewise.
3751         (reflection_methodbuilder_to_mono_method): Likewise.
3752         (mono_reflection_initialize_generic_parameter): Likewise.
3753
3754 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3755
3756         Don't use MonoGenericParamInfo for ownerless generic params.
3757         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
3758         use ParamInfo class at all.
3759         (mono_class_from_generic_parameter): Use them.
3760         (make_generic_param_class): Fix a couple of instances where 'pinfo
3761         == NULL' wasn't handle.
3762
3763 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3764
3765         * class.c (make_generic_param_class): Carve out of ...
3766         (mono_class_from_generic_parameter): ... here.
3767
3768 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3769
3770         Simplify mono_class_from_generic_parameter
3771         * class-internals.h (MonoGenericParamInfo::token): New field.
3772         * metadata.c (mono_metadata_load_generic_params): Initialize it
3773         from metadata.
3774         * class.c (mono_class_from_generic_parameter): Use it instead of
3775         searching through metadata.
3776
3777 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3778
3779         * metadata-verify.c: Add verification of the method table.
3780
3781 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3782
3783         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
3784         Delegate::Invoke optimization.
3785
3786 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3787
3788         * appdomain.c (mono_domain_create_appdomain_internal): Free the
3789         string returned by get_shadow_assembly_location_base.
3790
3791         * appdomain.c (get_shadow_assembly_location_base): Add a comment
3792         about caller's ownership.
3793
3794 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3795
3796         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
3797         reflection memory on domain unload.
3798
3799         * domain.c (mono_domain_free): Don't free refobject_hash, let the
3800         reflection cleanup code do it.
3801
3802         * domain-internals.h: Add mono_reflection_cleanup_domain.
3803
3804         This fixes a memory leak for managed mirrors of reflection objects
3805         on domain unload. 
3806
3807 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
3808
3809         * metadata-verify.c: Implement more verification of the field table.
3810
3811 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
3812
3813         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
3814         doesn't try to parse the input assembly, which can be broken.
3815
3816 2009-04-23  Mark Probst  <mark.probst@gmail.com>
3817
3818         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
3819         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
3820         by using the lowest bit in the link to store whether the link is
3821         tracked.  Move the track_resurrection hashes into boehm-gc.c.
3822
3823 2009-04-22  Miguel de Icaza  <miguel@novell.com>
3824
3825         * Makefile.am: Split the console support in platform specific code
3826         and put together a framework for making this easy in the future so
3827         that we can start splitting code instead of having a mess of PLATFORM_WIN32
3828
3829 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3830
3831         * pedump.c: Fix a warning.
3832
3833 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3834
3835         * verify.c (mono_delegate_type_equal): Compare valuetypes using
3836         mono_class_from_mono_type to avoid bad interactions with the dual representation
3837         of the generic type definition.
3838
3839 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3840
3841         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
3842         get the MonoClass for the call context type as it might be a generic
3843         instance.
3844
3845         Fixes #491483.
3846
3847 2009-04-21  Mark Probst  <mark.probst@gmail.com>
3848
3849         * object-internals.h: The Thread object has no execution_context
3850         member anymore.
3851
3852         * threads.c, threadpool.c, threads-types.h: Accessor functions for
3853         the execution context.
3854
3855         * appdomain.c: Bump corlib version.
3856
3857 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3858
3859         * verify.c (do_newobj): Improve error message.
3860
3861 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3862
3863         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
3864         is nested in the filter block.
3865
3866         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
3867         block is not fully nested.
3868
3869         Fixes #495656.
3870
3871 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3872
3873         * verify.c (verify_type_compatibility_full): Compare MonoClass and
3874         not MonoType to check for equality of valuetypes as the generic type
3875         definition allows for two different encodings: the generic type definition
3876         class or a generic instance over the GTD arguments.
3877
3878         Fixes #496175.
3879
3880 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3881
3882         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
3883
3884         * verify.c (do_initobj): Improve error message.
3885
3886 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3887
3888         * metadata-verify.c: Enable pe verification as the issue with #496453
3889         is that the authenticode data directory have a different unspecified
3890         format. Ignore it for now.
3891
3892         * pedump.c: Run the metadata verifier together with the IL verifier.
3893
3894         Fixes ##496453.
3895
3896 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3897
3898         * metadata-verify.c: Temporarily disable pe verification due to #496453.
3899
3900 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3901
3902         * class.c (can_access_type): Check visibility against
3903         the element type for pointers and arrays.
3904
3905         Fixes #496150.
3906
3907 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3908
3909         * metadata-verify.c: Fix cli and table verification to use information
3910         from the MonoImage. A lot of duplicated code got killed.
3911
3912 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3913
3914
3915         This patch starts to integrate the metadata verifier with the runtime code.
3916
3917         This patch causes major regression in functionality for the metadata verifier
3918         as cli and table verification are disabled since they require to be ported to
3919         use MonoImage information.
3920
3921         * image.c (do_mono_image_load): Split the code in this function
3922         into mono_image_load_pe_data and mono_image_load_cli_data.
3923         Add     care_about_pecoff parameter to not load pecoff data.
3924         Call into the metadata verifier for pecoff and cli verification.
3925
3926         * image.c (mono_image_open_raw): New function that doesn't perform
3927         any parsing of the image contents.
3928         
3929         The reason for the 3 new functions is to give pedump better control
3930         into the interaction with the verifier.
3931
3932         * metadata-internals.h: Add new functions from image.c as part of the
3933         internal mono API.
3934
3935         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
3936         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
3937         to make those functions work together with the runtime.
3938
3939         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
3940         true if the image needs to be verified.
3941
3942         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
3943
3944         * pedump.c: Use new metadata verifier API.
3945
3946 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
3947
3948         * object.c (mono_install_vtable_trampoline): Make this receive a
3949         trampoline creation function instead of trampoline, allowing the JIT
3950         to use a different trampoline for each vtable.
3951
3952 2009-04-18  Mark Probst  <mark.probst@gmail.com>
3953
3954         * object.c (mono_raise_exception): Don't reset the thread abort
3955         exception state here.
3956
3957 2009-04-18  Mark Probst  <mark.probst@gmail.com>
3958
3959         * icall-def.h: New icall for getting the thread abort exception
3960         state for a thread.
3961
3962         * object.c, thread.c, object-internals.h: A thread's abort
3963         exception state is now a GC handle.  To get the object it stands
3964         for, we must move it into the current app domain, if it's
3965         different than the one where it originated from.
3966
3967         * appdomain.c: Bump corlib version.
3968
3969         * domain.c, domain-internals.h: New function for setting the
3970         domain and migrate the thread abort exception or not.
3971
3972 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3973
3974         * metadata-verify.c: Add initial verification of the
3975         field table.
3976
3977 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3978
3979         * metadata-verify.c: Add a macro to conditionally enable
3980         dumping of verification information. Add  make_coded_token
3981         and search_sorted_table to enable search sorted tables
3982         by a given coded token.
3983
3984 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3985
3986         * metadata-verify.c: Add array mapping from table index
3987         to description offset. Add get_col_offset and get_col_size
3988         functions.
3989
3990 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3991
3992         * metadata-verify.c: Add remaining table descriptions offsets.
3993         Add remaining coded index descriptions.
3994
3995 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3996
3997         * metadata-verify.c: Fixed constant table description.
3998         Fixed calculation of HasCustomAttribute coded index size.
3999         Fixed calculation of size for many table indexes. 
4000
4001 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4002
4003         * pedump.c (dump_metadata): Dump table offset instead
4004         of useless pointer in memory.
4005
4006 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4007
4008         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
4009
4010 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4011
4012         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
4013         a missing of for interface types.
4014
4015 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4016
4017         * metadata-verify.c (verify_pe_optional_header): Add comment of why
4018         the code is commented.
4019
4020         * metadata-verify.c (verify_resources_table): Remove spurious printf
4021         and don't fail if there are unmanaged resources. Gmcs generates a useless
4022         one     for all assemblies - I bet it's some MS compatibility junk.
4023
4024 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4025
4026         * metadata-verify.c (verify_typedef_table): Verify the extends field.
4027
4028         * metadata-verify.c (mono_image_verify): Add a is_corlib.
4029
4030         * verify-internals.h: Same.
4031
4032         * pedump.c: Fix for mono_image_verify new signature.
4033
4034 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4035
4036         * metadata-verify.c (verify_typedef_table): Verify for some invalid
4037         flags combinations.
4038
4039 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4040
4041         * metadata-verify.c (verify_module_table): Ignore the generation field.
4042
4043 2009-04-15  Martin Baulig  <martin@ximian.com>
4044
4045         * debug-mono-symfile.c
4046         (mono_debug_symfile_lookup_location): Don't print a warning for
4047         unknown extended opcodes if they're within 0x40 and 0x7f.
4048
4049 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
4050
4051         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
4052         invoke signatures returning an enum. Fixes #494847.
4053
4054 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4055
4056         * metadata-verify.c: Initial code to verify the typedef table.
4057
4058 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4059
4060         * verify.c (mono_method_verify): Don't fail if an unconditional branch
4061         with non empty stack happens before the beginning of a try block.
4062
4063         Fixes #494812.
4064
4065 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4066
4067         * metadata-verify.c: Verify typename and typenamespace fields of
4068         the typeref table.
4069
4070 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4071
4072         * metadata-verify.c: Initial code to verify the typeref table.
4073
4074 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4075
4076         * verify.c (verify_delegate_compatibility): Fix error message.
4077
4078 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
4079
4080         * security-core-clr.c: Fix typo
4081
4082 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4083
4084         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
4085         a MonoGHashTable to keep its values alive.
4086         (emit_marshal_boolean): Fix a warning.
4087
4088 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4089
4090         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
4091         not have any interface configured for IPv4/IPv6.
4092
4093 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4094
4095         * assembly.c: fix typo in error message.
4096
4097 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4098
4099         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
4100         allocating the location holding the this argument to prevent
4101         'too many root sets' errors.
4102
4103         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
4104         to mark fields as special static.
4105         (mono_field_static_get_value): Handle special static fields.
4106         (mono_field_static_set_value): Ditto.
4107
4108         * class-internals.h (struct _MonoClassField): Document this.
4109
4110 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4111
4112         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
4113           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
4114           case.  This will handle when managed code returns null to native code.
4115
4116         Code is contributed under MIT/X11 license.
4117
4118 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4119
4120         * object.c (build_imt_slots): Changing a free to a g_free to match
4121           the g_malloc0 in add_imt_builder_entry that allocated this memory.
4122
4123         Code is contributed under MIT/X11 license.
4124
4125 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4126
4127         * marshal.c (emit_marshal_boolean): Adding code to ensure that
4128           the correct TRUE value is passed through the marshaling layer.
4129
4130         Code is contributed under MIT/X11 license.
4131
4132 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
4133
4134         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
4135         correctly. Fixes #492330.
4136         
4137         * marshal.c: Fix the embedding of object pointers into JITted code in
4138         the native-to-managed wrappers by allocating some GC tracked memory, and
4139         embedding the address of that.
4140
4141 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
4142
4143         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
4144         pointers into the vtable.
4145
4146 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
4147
4148         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
4149
4150         * verify.c (verify_ldftn_delegate): Improve error message.
4151
4152 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4153
4154         * reflection.c (my_mono_class_from_mono_type): Remove.
4155
4156 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4157
4158         Prepare to reduce memory usage of owner-less generic parameters (1/n)
4159         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
4160         and constraints fields into ...
4161         (MonoGenericParamInfo): ... this.
4162         (mono_generic_param_info, mono_generic_container_get_param_info):
4163         New accessors.
4164         * class.c, debug-helpers.c, icall.c: Update to changes.
4165         * metadata.c, reflection.c, verify.c: Likewise.
4166
4167 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
4168
4169         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
4170
4171         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
4172         
4173         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
4174         booleans with sbytes.
4175
4176 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4177
4178         * class.c (can_access_instantiation): Verify accesibility of element types
4179         for arrays and pointers.
4180
4181         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
4182
4183         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
4184
4185         Fixes #493068.
4186
4187 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4188
4189         * verify.c (do_invoke_method): Improve error messages.
4190
4191 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
4192
4193         * verify.c:  Fixing the MSVC build.
4194
4195         Code is contributed under MIT/X11 license.
4196
4197 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
4198
4199         * security-core-clr.c: Simplify get_reflection_caller not to call
4200         mono_method_get_last_managed (another stack walk) and adjust the
4201         callers to handle a (should not happen) NULL return value.
4202
4203 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4204
4205         Add accessors to some MonoGenericParam fields
4206         * class-internals.h (mono_generic_param_owner): New accessor.
4207         (mono_generic_param_num): Likewise.
4208         (mono_type_get_generic_param_owner): New helper.
4209         (mono_type_get_generic_param_num): New helper.
4210         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
4211
4212 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4213
4214         * class-internals.h (mono_generic_container_get_param): New wrapper.
4215         * class.c, icall.c, metadata.c, verify.c: Use it.
4216
4217 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4218
4219         Fix gtest-252.cs
4220         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
4221         the standard case/loop.  In particular, don't complain about
4222         references to generic type definitions.
4223
4224 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
4225
4226         * debug-helpers.c (dis_one): Decode string arguments.
4227
4228 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4229
4230         * pedump.c (dump_verify_info): Dump type name correctly.
4231
4232 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4233
4234         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
4235         are larger than code size.
4236
4237         This can happen in valid code if the try/catch block is not followed by any instruction
4238         and do a backward branch on the leave instruction.
4239
4240         Fixes #492494.
4241
4242 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
4243
4244         * security-core-clr.c: Fix typo while comparing second method names
4245         in can_avoid_corlib_reflection_delegate_optimization
4246
4247 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
4248
4249         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
4250
4251         Fixes #487738.
4252
4253 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
4254
4255         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
4256         a MVAR using a class context.
4257
4258         Fixes #490335.
4259
4260 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
4261
4262         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
4263
4264         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
4265
4266         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
4267         functions supplied by the JIT for the SGEN GC.
4268
4269         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
4270         
4271 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
4272
4273         monitor.c (mono_monitor_try_enter_internal):
4274         Added calls to profile monitor contentions.
4275         Also duplicated a small piece of code (the "get the monitor" logic)
4276         from the fast path to the slow path, and changed the relevant goto
4277         statements, so that monitor acquisition events can be emitted from the
4278         slow path (this is by Paolo Molaro).
4279
4280 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
4281
4282         * profiler.c, profiler.h, profiler-private.h:
4283         Added support for profiling monitor contentions.
4284
4285 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
4286
4287         * metadata-verify.c: Verify the modules table.
4288
4289 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
4290
4291         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
4292         using the context of the method been verifier and not of the method been called.
4293
4294         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
4295         safely inflate generic types. 
4296
4297 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4298
4299         * security-core-clr.c: Change the strategy for checking the 
4300         "reflection using delegates optimization" to avoid unneeded 
4301         attributes in multiple class libraries.
4302
4303 2009-04-02  Mark Probst  <mark.probst@gmail.com>
4304
4305         * sgen-gc.c: Remove object element in the disappearing link struct
4306         by storing the object pointer in the link.
4307
4308 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4309
4310         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
4311
4312 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4313
4314         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
4315
4316         * verify.c (mono_method_verify): Do proper bounds checking of exception
4317         clause ranges.
4318
4319 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4320
4321         * loader.c (mono_field_from_token): Don't crash if the field parent could
4322         not be decoded.
4323
4324 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4325
4326         * sgen-gc.c: Execute critical finalizers after ordinary
4327         finalizers.
4328
4329         * class-internals.h, domain.c: Add CriticalFinalizerObject to
4330         mono_defaults.
4331
4332 2009-03-31 Jb Evain <jbevain@novell.com>
4333
4334         * verify.c (do_ldstr): don't check if a string is in the user strings
4335         heap if the current image is dynamic.
4336
4337 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4338
4339         * sgen-gc.c: Wait until the last finalizer has executed when
4340         returning from WaitForPendingFinalizers.
4341
4342 2009-03-31  Martin Baulig  <martin@ximian.com>
4343
4344         * mono-debug-debugger.h (MonoDebuggerEvent): Add
4345         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
4346         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
4347         (mono_debugger_event_create_appdomain): New function.
4348         (mono_debugger_event_unload_appdomain): New function.
4349
4350         * appdomain.c (mono_domain_create_appdomain_internal): Call
4351         mono_debugger_event_create_appdomain().
4352
4353 2009-03-31  Martin Baulig  <martin@ximian.com>
4354
4355         * mono-debug-debugger.c
4356         (mono_debugger_register_class_init_callback): Also register the
4357         class init callback if the class is already initialized to make
4358         things work with shadow copied assemblies.
4359
4360 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
4361
4362         * security-core-clr.c
4363         (mono_security_core_clr_ensure_reflection_access_field): Let 
4364         critical code access the field (just like we do for methods). Use
4365         check_field_access helper.
4366         (mono_security_core_clr_ensure_reflection_access_method): Use 
4367         check_field_access helper.
4368
4369 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4370
4371         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
4372         call the run-finalize function directly.
4373
4374         * gc.c, gc-internal.h: Make run_finalize() non-static.
4375
4376 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4377
4378         * sgen-gc.c: Use a separate struct for disappearing links.
4379
4380 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
4381
4382         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
4383         * MaxIOVectorLength enabled, just ignore them.
4384         Fixes bug #349688.
4385
4386 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
4387
4388         * metadata-verify.c: Fix eglib build.
4389
4390 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
4391
4392         * threads-types.h: Fix the win32 build.
4393
4394 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
4395
4396         * class.c: move coreclr inheritance/override checks to 
4397         security-core.clr.c
4398         * security-core.clr.c|h: add code from class.c with additional
4399         documentation. Fix override check when the method is not critical.
4400
4401 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
4402
4403         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
4404         (match_class): Ditto.
4405
4406 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
4407
4408         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
4409
4410         * metadata-verify.c: Implement table layout row size calculation. Verify
4411         the total size of the tables.
4412
4413 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
4414
4415         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
4416
4417 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4418
4419         * appdomain.c:
4420         * console-io.[ch]: added new mono_console_init() to make sure that
4421         file descriptors 0, 1 and 2 are opened.
4422         Bug #489019 fixed.
4423
4424 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
4425
4426         * appdomain.h: Export a new callback type and a new function to
4427         set this callback. This allow a mono host to provide it's own
4428         definition for "platform code".
4429         * metadata-internals.h: Add a core_clr_platform_code flag on 
4430         _MonoImage to (cache and) know if it is representing platform 
4431         code.
4432         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
4433         on platform code images.
4434         * security-core-clr.c|h 
4435         (mono_security_set_core_clr_platform_callback): Allow the host
4436         to provide it's own platform check definition.
4437         (mono_security_core_clr_determine_platform_image): Detect if an 
4438         image is platform code (using the specified callback).
4439         (mono_security_core_clr_is_platform_image): Return cached value 
4440         for platform code.
4441
4442 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
4443
4444         * threads.c (mono_create_thread): New helper function to wrap CreateThread
4445         which has different parameter types for the 'tid' argument in windows and
4446         the io-layer.
4447
4448         * appdomain.c attach.c threads.c: Use the new helper.
4449
4450 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
4451
4452         * metadata-verify.c: Verify valid table bits.
4453
4454 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
4455
4456         * metadata-verify.c (verify_metadata_header): Store size in the size field.
4457
4458         * metadata-verify.c: Add initial table schema verification.
4459
4460 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
4461
4462         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
4463         obtain the refclass argument needed by mono_param_get_objects (). Fixes
4464         #488383.
4465
4466         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
4467
4468         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
4469
4470 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
4471
4472         * security-core-clr.c: Add/update documentation
4473
4474 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
4475
4476         * marshal.c (emit_marshal_object): Generate code to throw an exception
4477         instead of throwing it. Fixes #488670.
4478
4479 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
4480
4481         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
4482         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
4483         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
4484         and add a call to mono_security_core_clr_ensure_delegate_creation
4485         to do the extra checks required by CoreCLR.
4486         * security-core-clr.c|h: Add function to check delegate creation,
4487         both in the binding and accessibility, under CoreCLR.
4488
4489 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
4490
4491         * reflection.c (mono_reflection_create_dynamic_method): when 
4492         coreclr is enabled make sure that every resolved object are
4493         checked (e.g. field and method access).
4494         * security-core-clr.c|h: Add function to check objects resolved
4495         when a dynamic method is created.
4496
4497 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4498
4499         * metadata-verify.c: Cache directory rva translations.
4500
4501         * metadata-verify.c: Add cli-header and streams verification.
4502
4503 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4504
4505         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
4506         the wrong offset (8 instead of 6).
4507
4508 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
4509
4510         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
4511         methods, return the native function address itself. Fixes
4512         #487758.
4513
4514 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
4515
4516         * console-io.c: some of the values for control characters might not be
4517         present.
4518
4519 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
4520
4521         * exception.c|h: Add helpers to create [Field|Method]AccessException
4522         * icall.c: Add required coreclr check calls for field reflection.
4523         Move the existing (method) check logic into security-core-clr.c
4524         * security-core-clr.c: Add functions to check if the access of a
4525         field or method is allowed when reflecting under coreclr. This is
4526         mostly done using a stack walk to find the "real" caller: i.e. the
4527         code that is calling the reflection
4528
4529 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
4530
4531         * gc-internal.h: Change location of gc_wrapper.h
4532
4533 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
4534
4535         * class.c: Simplification to coreclr checks for overrides that
4536         makes it easier to set breakpoints.
4537
4538 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
4539
4540         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
4541         mono_security_core_clr_method_level): Avoid potential 
4542         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
4543         user/application code) and make it easier to set breakpoints
4544
4545 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4546
4547         * metadata-verify.c: Reject cli header tables that mono don't handle.
4548
4549 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4550
4551         * pedump.c: Fix CLI header dumping.
4552
4553 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4554
4555         * metadata-verify.c: More CLI header verification.
4556
4557 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
4558
4559         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
4560
4561 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
4562
4563         * metadata-verify.c: Initial verification of the CLI header.
4564
4565 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
4566
4567         * metadata-verify.c (verify_resources_table): Fix verification of zero
4568         sized resource section and id entries count.
4569
4570 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
4571
4572         * icall.c: Handle user types in many Type icalls. Fixes #486303.
4573
4574 2009-03-17  Jb Evain  <jbevain@novell.com>
4575
4576         * profiler.c: call mono_gc_base_init from mono_profiler_load.
4577
4578 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
4579
4580         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
4581         (mono_gc_make_descr_for_array): Ditto.
4582
4583 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
4584
4585         * verify.c (mono_verifier_is_class_full_trust): Add support for
4586         CoreCLR security mode where trusted assemblies are defined as
4587         "platform code".
4588
4589 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4590
4591         * metadata-verify.c: Add minimal PECOFF resource verification.
4592
4593 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4594
4595         * metadata-verify.c: Be less restrictive with some coff fields.
4596
4597 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4598
4599         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
4600         params as boxed values on stack. Fixes #485706.
4601
4602 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
4603
4604         * console-io.c: the termios values may vary in different flavors of unix.
4605
4606 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
4607
4608         * console-io.[ch]: return the entire set of control characters when
4609         initializing the terminal.
4610         * appdomain.c: bump corlib version.
4611
4612 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
4613
4614         * mono-perfcounters.c: added support for in-process custom
4615         performance counters.
4616
4617 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4618
4619         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
4620
4621 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4622
4623         * metadata-verify.c: Verify the data pointed by the import table. 
4624
4625 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4626
4627         * metadata-verify.c (load_data_directories): Store data
4628         directory contents.
4629
4630         * metadata-verify.c: Verify the import table. 
4631
4632 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4633
4634         * metadata-verify.c: Verify data directories.
4635
4636 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4637
4638         * metadata-verify.c: Check section header flags.
4639
4640 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
4641
4642         * appdomain.c: if the assembly name is a shadow-copied file, return
4643         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
4644         in mono_make_shadow_copy.
4645         * icall.c: if the assembly name is a shadow-copied file, replace it
4646         with the original assembly path.
4647
4648         Bug #484244 fixed. NUnit tests for corlib can be run without
4649         --noshadow now.
4650
4651 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
4652
4653         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
4654         entries when the table is reallocated.
4655
4656         * icall.c: Allocate the memory used by the mono_ptr_array macros using
4657         mono_gc_alloc_fixed () since it contains GC refs.
4658
4659 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
4660
4661         * reflection.c (ensure_complete_type): New helper function to call
4662         type resolve handlers for unfinished dynamic types.
4663         (resolve_object): Call it for MonoClassFields. Fixes #483852.
4664
4665 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
4666
4667         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
4668         #483247.
4669
4670 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
4671
4672         * appdomain.c (get_shadow_assembly_location): Fix memleak.
4673
4674 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
4675
4676         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
4677         between GCHandles of type WeakTrackResurrection and the objects they
4678         point to.
4679
4680         * gc.c: Partly implement the sematics of GCHandles of type 
4681         WeakTrackResurrection: these handles should only be cleared after the
4682         finalizer of the object they are pointing to has ran.
4683
4684 2009-03-06  Mark Probst  <mark.probst@gmail.com>
4685
4686         * icall.c: Partially revert r126631 because using the jump
4687         trampolines for generic shared methods makes it superfluous.
4688
4689 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
4690
4691         * threads.c (handle_store): Create the 'threads' hash table with the proper
4692         MONO_HASH_VALUE_GC type.
4693
4694 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
4695
4696         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
4697         FIRST_GC_TRACKED.
4698
4699         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
4700         and LAST_GC_TRACKED as a GC root.
4701
4702         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
4703
4704         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
4705         the static data even if it consists of 1 reference.
4706
4707         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
4708         if there is a GC descriptor.
4709
4710         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
4711         instead of through the GC since they contain no object references.
4712
4713 2009-03-05  Mark Probst  <mark.probst@gmail.com>
4714
4715         * generic-sharing.c (instantiate_other_info): Always return a jump
4716         trampoline for method code.
4717
4718 2009-03-05  Marek Habersack  <mhabersack@novell.com>
4719
4720         * culture-info-tables.h: generated to include the en-tt culture.
4721
4722 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
4723
4724         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
4725         capture the thread context.
4726
4727         * object.c (mono_async_result_new): Cache the invoke wrappers to
4728         ExecutionContext::Capture.
4729
4730 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
4731
4732         * marshal.h: Add a prototype for what mono_compile_method returns
4733         for invoke wrappers.
4734
4735         * gc.c: Use the new prototype declaration.
4736
4737 2009-03-04  Geoff Norton  <gnorton@novell.com>
4738
4739         * boehm-gc.c: Add some MONO_LOG tracing for the GC
4740         * gc-internal.h:
4741         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
4742
4743 2009-03-04  Martin Baulig  <martin@ximian.com>
4744
4745         * mono-debug.h
4746         (mono_debugger_runtime_invoke): Removed.
4747
4748         * mono-debug-debugger.c
4749         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
4750
4751 2009-03-02  Martin Baulig  <martin@ximian.com>
4752
4753         * mono-debug.h
4754         (mono_debugger_unhandled_exception): Removed.
4755         (mono_debugger_handle_exception): Removed.
4756         (mono_debugger_throw_exception): Removed.
4757
4758         * mono-debug.c
4759         (mono_debug_debugger_version): Bump to 5.
4760
4761         * mono-debug-debugger.c: Moved the exception handling code to
4762         ../mini/debug-mini.c
4763
4764 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
4765
4766         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
4767         finalize_objects_hash.
4768
4769         * gc.c: Use the separate lock to access the finalize_objects_hash field.
4770         
4771         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
4772         field.
4773
4774         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
4775         cache.
4776
4777         * image.c (mono_image_close): Free it.
4778         
4779         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
4780         allowing a creation of a wrapper which invokes its method using a CALLVIRT
4781         on the this argument.
4782
4783         * gc.c (run_finalize): Optimize the calling of the finalizers.
4784
4785 2009-03-03  Martin Baulig  <martin@ximian.com>
4786
4787         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
4788         of the `MonoGenericInst' changes.
4789
4790 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4791
4792         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
4793         mono_array_class_get_cached to reduce locking contention. Extract
4794         a domain var.
4795
4796         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
4797         intermediary managed arrays. Use caching version of mono_array_new
4798         to allocate the result array.
4799
4800         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
4801
4802         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
4803
4804         * locales.c (create_names_array_idx):  Use mono_array_new_cached
4805         to reduce locking contention.
4806
4807 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
4808                 
4809         * object.c (mono_method_add_generic_virtual_invocation): Put back the
4810         thunk builder code for the non-interface case.
4811
4812 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
4813
4814         * object.c (get_generic_virtual_entries): New helper function to collect
4815         the virtual generic method instances which need to be added to an IMT
4816         thunk.
4817         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
4818         Instead of creating a new IMT thunk, reset the vtable slot to the
4819         trampoline, the thunk will be created the next time the trampoline is called.
4820         (build_imt_slots): Add support for virtual generic methods in interfaces by
4821         adding to the IMT thunk all the methods registered using 
4822         mono_method_add_generic_virtual_invocation ().
4823
4824         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
4825         (struct _MonoIMTCheckItem): Ditto.
4826
4827         * object.c (mono_method_add_generic_virtual_invocation): Take a
4828         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
4829         the IMT thunk to include all items.
4830         
4831         * object.c (mono_class_create_runtime_vtable): Add a missing
4832         mono_loader_unlock ().
4833
4834 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4835
4836         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4837
4838         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
4839
4840 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4841
4842         * object-internals.h: Rename _MonoReflectionEvent to
4843         MonoReflectionMonoEvent so it reflects the right managed type.
4844         Add a MonoReflectionEvent that correctly represents System.EventInfo.
4845
4846         * icall.c:
4847         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
4848         type.
4849
4850 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4851
4852         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
4853         intermediary managed arrays. Use caching version of mono_array_new
4854         to allocate the result array.
4855
4856 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4857
4858         * reflection.c: Use cached version of mono_array_new alongside
4859         the mono_reflection_get_custom_attrs_by_type call path.
4860
4861 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4862
4863         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
4864         intermediary managed arrays. Use caching version of mono_array_new
4865         to allocate the result array.
4866
4867         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
4868
4869 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4870
4871         * icall.c: Add small implementation of a growable stack bound array.
4872
4873         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
4874
4875         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
4876         intermediary managed arrays. Use caching version of mono_array_new
4877         to allocate the result array.
4878
4879 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
4880
4881         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
4882         helps Enum::CompareTo to be implemented without reboxing all enums
4883         to their underlying type.
4884 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
4885
4886         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
4887         since it acquires a global lock leading to scalability problems.
4888
4889         * profiler.c: Make the stat profiler work with multiple appdomains, this
4890         currently only works when no appdomains are unloaded.
4891
4892 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4893
4894         * appdomain.c: make the check to avoid copying when the assembly is
4895         already shadow copied actually work.
4896
4897 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
4898
4899         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4900
4901         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
4902         changes to the managed side.
4903
4904 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
4905
4906         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
4907         classes + a separate lock for it, as it is used frequently at runtime, not
4908         just during metadata loading/JIT compilation.
4909
4910         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
4911         for szarrays.
4912         
4913         * object-internals.h (mono_class_from_name_cached): New macro to cache
4914         the results of the lookup locally without having to declare a static
4915         variable to hold it.
4916         (mono_class_get_field_from_name_cached): Ditto.
4917         (mono_array_class_get_cached): Ditto.
4918
4919         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
4920         the new macros.
4921         
4922         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
4923         slower search in metadata.
4924
4925         * pedump.c: Fix a warning.
4926
4927 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
4928
4929         * reflection.c (encode_locals): Add checks for user types.
4930         (method_encode_clauses): Ditto.
4931         (method_encode_code): Ditto.
4932         (mono_image_create_token): Ditto.
4933
4934         * object-internals.h: Change the type of more fields from MonoReflectionType*
4935         to MonoObject*.
4936
4937 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
4938
4939         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
4940         the a thread does not suspend within 100ms.
4941
4942         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
4943         in addition to StopRequested as well.
4944
4945         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
4946
4947         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
4948         search the method_hash before inserting a new entry, to avoid crashes when
4949         the same method is inserted multiple times, causing the old 
4950         MonoDebugMethodInfo structure to be freed by the value dtor function.
4951
4952 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4953
4954         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
4955         SO_EXLUSIVEADDRUSE where available.
4956
4957 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
4958
4959         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
4960         runtime invoke wrappers, this time it is string ctor wrappers, which
4961         pass a dummy string as 'this' instead of their obj argument. Fixes
4962         #478473.
4963
4964 2009-02-21  Jb Evain  <jbevain@novell.com>
4965
4966         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
4967         only get create_culture once.
4968
4969 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
4970
4971         * reflection.c (mono_reflection_setup_internal_class): Move the user type
4972         check before the locking.
4973         
4974         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
4975         (mono_reflection_create_runtime_class): Ditto.
4976         (mono_reflection_sighelper_get_signature_local): Ditto.
4977         (mono_reflection_sighelper_get_signature_field): Ditto.
4978
4979         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
4980         is a System.MonoType object or similar.
4981         (monotype_cast): New helper function to cast a MonoObject to a 
4982         MonoReflectionType object.
4983
4984         * object-internals.h: Change MonoReflectionType* members in structures to
4985         MonoObject* members to force the usage of the monotype_cast () function.
4986
4987         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
4988         structures/arrays. This causes us to assert instead of crashing when 
4989         instances of user defined subclasses of System.Type are encountered.
4990
4991 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
4992
4993         * cil-coff.h:
4994         * icall-def.h:
4995         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
4996         win32 resource loaded from a PE file.
4997
4998         * image.c: fix mono_image_lookup_resource.
4999
5000 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5001
5002         * icall-def.h:
5003         * threads-types.h:
5004         * threads.c: added internal call for WaitHandle.SignalAndWait.
5005
5006 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
5007
5008         * cominterop.c : Adding cominterop_type_from_handle and 
5009           registering it as an icall.  Replacing all references
5010           to type_from_handle.
5011
5012         Code is contributed under MIT/X11 license.
5013
5014 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5015
5016         * Makefile.am: Add lock-tracer.h and lock-trace.c.
5017
5018         * appdomain.c: Call the tracer init function.
5019
5020         * domain-internals.h: Enable the tracer for the domain locks.
5021
5022         * image.c: Enable the tracer for image locks.
5023
5024         * loader.c: Enable the trace for the loader lock.
5025
5026         * lock-tracer.h:
5027         * lock-tracer.c: Initial implementation of the lock trace utility.
5028         The tracer requires a compile time define to be enabled and a env var
5029         to be enabled at runtime.
5030
5031 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5032
5033         * domain.c (mono_domain_code_foreach): Improve documentation.
5034
5035 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5036
5037         * appdomain.c:
5038         * generic-sharing.c:
5039         * object.c:
5040         * reflection.c:  Adjust locking order to the new semantics where the loader lock
5041         comes first.
5042
5043 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
5044
5045         * domain.c: Add mono_domain_code_* functions that perform locking
5046         around the domain codeman.
5047
5048         * domain-internals.h: Export those functions.
5049
5050         * object.c: Use new functions instead of acquiring the domain lock.
5051
5052 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
5053
5054         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
5055         delegate. Fixes #477396.
5056
5057 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5058
5059         * reflection.c (create_custom_attr): Get rid of alloca.
5060
5061 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
5062
5063         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
5064           Adding exception handling for all CCW calls.
5065
5066         Code is contributed under MIT/X11 license.
5067
5068 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5069
5070         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
5071
5072         * marshal.c (emit_marshal_boolean): Add null checks to the new 
5073         native->managed marshalling code. Fixes #476247.
5074
5075 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5076
5077         * class.c (mono_class_get_vtable_entry): Move the addition of
5078         static rgctx invoke wrappers for vtable methods here, this simplifies
5079         a lot of code and causes fewer rgctx wrappers to be created.
5080
5081         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
5082         name of the statistics to begin with an uppercase.
5083
5084 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5085
5086         * reflection.c: Revert previous change as it breaks the build.
5087         
5088 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5089
5090         * verify.c: Properly handle SZARRAY element type.
5091
5092         Fixes #474271.
5093
5094 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5095
5096         * reflection.c (mono_image_create_method_token): Correctly encode
5097         MethodDef MemberRefParent token.
5098
5099         Fixes #472845.
5100
5101 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5102
5103         * image.c (mono_image_close): Delete the critical section before
5104         freeing the memory holding it.
5105
5106 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5107
5108         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
5109         Fixes #476257.
5110
5111 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5112
5113         * pedump.c (main): Call mono_marshal_init so pedump
5114         doesn't crash.
5115
5116 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5117
5118         * loader.c (method_from_memberref): Properly fix #474271 and
5119         don't break the runtime bad.
5120
5121 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5122
5123         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
5124         (mono_domain_alloc0): Ditto.
5125
5126 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5127
5128         * loader.c (method_from_memberref): Don't abort if the array
5129         method is not found. A regular loader failure is more informative
5130         and correct.
5131
5132         Fixes #474271.
5133
5134 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5135
5136         *loader.c: Guard MonoImage::method_cache/methodref_cache
5137         using the image lock instead of the loader lock.
5138
5139         * metadata.h: Add comments about which fields are protected by
5140         the image lock.
5141
5142 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5143
5144         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
5145
5146         * generic-sharing.c (mono_method_construct_object_context): Remove the
5147         wrapper_type == NONE assert, it is not needed.
5148
5149 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
5150
5151         * reflection.c (clear_cached_object): New helper function.
5152         (mono_method_clear_object): New function to clear the cached reflection
5153         objects for a dynamic method.
5154
5155         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
5156         Partly fixes # 463323.
5157         
5158 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5159
5160         * class.c:
5161         * loader.c:
5162         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
5163
5164 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5165
5166         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
5167         take the image lock instead of the loader lock.
5168
5169         * metadata-internals.h: Export new functions.
5170
5171 2009-02-12  Miguel de Icaza  <miguel@novell.com>
5172
5173         * domain.c (app_config_parse): Remove another use of stat that is
5174         not necessary as g_file_get_contents already does the presence
5175         check. 
5176
5177 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
5178
5179         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
5180
5181         * marshal.c: Move the bstr handling code to cominterop.c.
5182
5183         * marshal.c: Remove some COM interop code missed previously.
5184
5185 2009-02-12  Miguel de Icaza  <miguel@novell.com>
5186
5187         More Paolo patches from the Wii port:
5188         
5189         * security.c: Remove ves_icall_System_Environment_get_UserName
5190         from here.
5191
5192         * icall.c: And put ves_icall_System_Environment_get_UserName
5193         here. 
5194
5195         * appdomain.c (mono_set_private_bin_path_from_config): Remove
5196         redundant call to stat that was only used to test for the file
5197         existence.   Patch from Paolo.
5198
5199         * gc.c (run_finalize): If COM is disabled, do not link in
5200         mono_marshal_free_ccw.
5201
5202         * generic-sharing.c: Use alloca.h here as well.
5203
5204 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
5205
5206         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
5207
5208 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
5209
5210         * cominterop.c cominterop.h: New files.
5211
5212         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
5213         function/typedefs which are needed by cominterop.c global.
5214
5215 2009-02-12  Mark Probst  <mark.probst@gmail.com>
5216
5217         * generic-sharing.c: Don't take the loader lock to guard image
5218         mempool allocs.
5219
5220 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5221
5222         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
5223         called without the loader lock which is required to guard MonoImage:tokens.
5224
5225 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5226
5227         * class.c:
5228         * metadata.c:
5229         * method-builder.c:
5230         * marshal.c:
5231         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
5232
5233 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5234
5235         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
5236         Rework the code to use regular mono_image_alloc/0.
5237
5238         * loader.c: Rework the code to use regular mono_image_alloc/0.
5239
5240         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
5241
5242 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
5243
5244         * object-internals.h : Fixing a typo in the 
5245           MonoReflectionComVisibleAttribute struct.
5246
5247         * marshal.c (cominterop_com_visible): Check the implemented 
5248           interfaces for ComImport.
5249
5250         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
5251           assume that bools should be treated as VARIANTBOOLs.
5252
5253         * marshal.c (emit_marshal_boolean): Adding cases for 
5254           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
5255
5256         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
5257           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
5258
5259         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
5260           should be treated as VARIANTBOOLs.    
5261
5262         Code is contributed under MIT/X11 license.
5263
5264 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5265
5266         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
5267         allocation with the image lock.
5268
5269 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5270
5271         This patch is the last of a series to remove explicit reference of MonoImage::mempool
5272         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
5273
5274         * object.c: Add mono_string_to_utf8_image.
5275
5276         * object-internals.h: Export mono_string_to_utf8_image.
5277
5278         * reflection.c: Rework all explicit references to the the image mempool to go thought
5279         the mono_image_alloc set of functions.
5280
5281 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5282
5283         This patch is the third of a series to remove explicit reference of MonoImage::mempool
5284         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
5285         and generics-sharing.c.
5286
5287         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
5288         as first argument. Note that this function remains broken as it doesn't perform locking around the
5289         mempool allocation.
5290
5291         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
5292
5293         * image.c: Add g_slist_append_image.
5294
5295         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
5296         the supplied image for allocation. Move code into mono_metadata_field_info_full.
5297
5298         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
5299         Fix all related code to do the same.
5300
5301         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
5302
5303         * metadata-internals.h: Fix the signatures.
5304
5305 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5306
5307         This patch is the second of a series to remove explicit reference of MonoImage::mempool
5308         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
5309         and similar to work using MonoImage.
5310
5311         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
5312         MonoMemPool.
5313
5314         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
5315
5316         * class.c (mono_metadata_signature_deep_dup): Same.
5317
5318         * class.c (inflate_generic_type): Same.
5319
5320         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
5321
5322         * metadata.c (mono_metadata_signature_dup_full): Same.
5323
5324         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
5325         mono_metadata_signature_dup_full.
5326
5327         * metadata.c (mono_metadata_type_dup): Same.
5328
5329         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
5330
5331         * reflection.c: Same.
5332
5333         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
5334
5335         * metadata-internals.h: Fix the signatures.
5336
5337         * class-internals.h: Same.
5338
5339 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5340
5341         This patch is the first of a series to remove explicit reference of MonoImage::mempool
5342         and use mono_image_alloc set of functions instead. 
5343
5344         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
5345         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
5346         of a MonoMemPool.
5347
5348         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
5349
5350         * class.c (g_list_prepend_mempool): Removed.
5351
5352         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
5353
5354         * image.c: Add g_list_prepend_image.
5355
5356         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
5357
5358         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
5359
5360
5361 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5362
5363         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
5364         mono_image_unlock.
5365
5366         * image.c (mono_image_init): Init the lock field.
5367  
5368         * image.c (mono_image_init): Cleanup the lock field.
5369
5370         * image.c: Add mono_image_(un)lock functions.
5371
5372 2009-02-11  Mark Probst  <mark.probst@gmail.com>
5373
5374         * class.c, class-internals.h: mono_method_get_context_general()
5375         combines the functionality of mono_method_get_context() and
5376         mini_method_get_context().
5377
5378         * generic-sharing.c, domain-internals.h:
5379         mono_method_construct_object_context() and
5380         mono_domain_lookup_shared_generic() moved from mini.
5381
5382         * icall.c (ves_icall_InternalInvoke): Handle the case where the
5383         method doesn't have the correct instantiation because it's shared
5384         generic code.  Fixes #473999.
5385
5386 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
5387
5388         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
5389
5390         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
5391         
5392 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5393
5394         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
5395
5396         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
5397
5398         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
5399         and recheck the cache for dups after it.
5400
5401         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
5402
5403         Fixes one of the deadlocks found in #473150.
5404
5405 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
5406
5407         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
5408           For Win32, add additional break conditions for accept.
5409
5410         Code is contributed under MIT/X11 license.
5411
5412 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
5413
5414         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
5415         lazily initialize the native wrapper cache.
5416         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
5417         cache, since they are different from the normal wrappers.
5418
5419         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
5420
5421         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
5422         AOT compiled native wrappers.
5423
5424 2009-02-09  Geoff Norton  <gnorton@novell.com>
5425
5426         * appdomain.h:
5427         * security-core-clr.c: Allow enabling core-clr from the embedding
5428         API.
5429
5430 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5431
5432         * socket-io.c: when requesting all the local ips, if there are no
5433         interfaces up and running, MS returns 127.0.0.1.
5434
5435 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5436
5437         * mono-perfcounters-def.h: processor time is an inverse time.
5438         Fixes bug #468625.
5439
5440 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5441
5442         * socket-io.c: an empty host name returns the list of local IPs.
5443         Fixes bug #386637 part 1/2.
5444
5445 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
5446
5447         * verify.c (mono_class_interface_implements_interface): Call
5448         mono_class_setup_interfaces ().
5449         (merge_stacks): Ditto.
5450
5451 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
5452
5453         * class.c (mono_class_setup_interfaces): New function to lazily initalize
5454         klass->interfaces.
5455         (mono_generic_class_get_class): Don't initalize klass->interfaces.
5456         (mono_generic_class_get_class): Ditto.
5457
5458 2009-02-06  U-QUACK\miguel  <miguel@quack>
5459
5460         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
5461         they live in security.c
5462
5463         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
5464         another bit from Paolo's code.
5465
5466 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
5467
5468         * object.c (build_imt_slots): Add a small optimization to avoid inflating
5469         methods which will be discarded by add_imt_builder_entry ().
5470
5471         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
5472         need to be boxed.
5473
5474         * loader.c: Add a statistics for the size of the memberref signature cache.
5475         
5476         * loader.c (find_cached_memberref_sig): New helper function.
5477         (cache_memberref_sig): Ditto.
5478
5479         * loader.c: Cache the result of parsing memberref signatures, since otherwise
5480         they will be parsed again for every generic instantiation, leading to unbounded
5481         memory growth.
5482
5483 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5484
5485         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
5486         parameters of generic methods.
5487
5488         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
5489         after the original method is copied to the inflated method.
5490         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
5491
5492         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
5493         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
5494
5495         * class.c metadata.c: Update after the changes above.
5496
5497 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
5498
5499         * metadata-verify.c: Simplified error handling and added
5500         section table validation.
5501
5502 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5503
5504         * class-internals.h (MonoClassExt): New structure containing rarely used
5505         fields of MonoClass.
5506         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
5507         through a new 'ext' field.
5508
5509         * class.c (mono_class_alloc_ext): New helper function to allocate 
5510         class->ext.
5511
5512         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
5513
5514 2009-02-05  Mark Probst  <mark.probst@gmail.com>
5515
5516         * object.c (mono_object_get_virtual_method): Properly inflate
5517         generic methods.  Fixes #472692.
5518
5519 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
5520
5521         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
5522         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
5523         for the parent type, the created type must be ready to be used on a generic
5524         instantiation.
5525         We fill this_arg/byval_arg if the parent is a generic instance to make sure
5526         we won't have duplicated entries in generic_inst_cache.
5527
5528         Fixes #469553.
5529
5530 2009-02-05  Miguel De Icaza  <miguel@novell.com>
5531
5532         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
5533         replace with plain BSD per the comments on the bug MONO77637.
5534
5535 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5536
5537         * class.c (mono_class_get_generic_class): New accessor function.
5538         (mono_class_get_generic_container): Ditto.
5539
5540         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
5541         fields, similar to the ones in MonoMethod.
5542
5543         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
5544         (mono_class_create_from_typedef): Set klass->is_generic if needed.
5545
5546         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
5547         
5548         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
5549         the same information as element_class->byval_arg.
5550
5551         * class.c reflection.c: Remove references to class->byval_arg.
5552
5553         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
5554         klass->enum_basetype directly.
5555
5556         * verify.c metadata.c object.c icall.c reflection.c: Use 
5557         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
5558         directly.
5559
5560 2009-02-04  Miguel de Icaza  <miguel@novell.com>
5561
5562         * icall-def.h: Remove internal calls for sockets when
5563         DISABLE_SOCKET is defined, file system writing features when the
5564         OS only support reading and not writing data and Policy support if
5565         the Policy is disabled.
5566         
5567         * image.c (do_mono_image_open): Apply Paolo's patches for using
5568         mono_file_map_ APIs here.
5569
5570         * assembly.c: Add support for platforms to avoid prefix
5571         auto-detection. 
5572
5573 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
5574
5575         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
5576         warning.
5577
5578         * class.c (mono_class_inflate_generic_class): New helper function.
5579
5580         * class.c: Use mono_class_inflate_generic_class in a few places. Add
5581         statistics for inflated methods/classes.
5582
5583         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
5584
5585         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
5586         the call is made from Delegate.CreateDelegate () for the invoke method of
5587         a delegate.
5588
5589         * loader.c: Add a statistics for the memory occupied by inflated signatures.
5590
5591         * metadata.c (mono_metadata_signature_size): New helper function.
5592
5593         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
5594         generic instances.
5595
5596         * metadata.c (inflated_method_in_image): Avoid calling 
5597         mono_method_signature () if the method does not already have a signature.
5598
5599 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5600
5601         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
5602         valuetype is compatible with target type, check by inheritance as a
5603         VT is not really compatible with System.ValueType, for example.
5604
5605         * verify.c (do_invoke_method): Improve error message.
5606
5607         * verify.c (do_box_value): If boxing a nullable, use the type argument
5608         on stack instead.
5609
5610         * verify.c (do_newobj): Improve error message.  
5611
5612         Fixes #469549.
5613
5614 2009-02-03  Miguel de Icaza  <miguel@novell.com>
5615
5616         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
5617
5618 2009-02-03  Mark Probst  <mark.probst@gmail.com>
5619
5620         * generic-sharing.c: Don't hold domain lock when calling
5621         instantiate_other_info().  Fixes #471958.
5622
5623         * domain-internals.h, loader.c: Describe locking policy of domain
5624         lock vs loader lock.
5625
5626 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5627
5628         * verify.c (mono_delegate_signature_equal): Make it possible to check
5629         first-arg-bound delegates to static method.
5630
5631         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
5632         static methods with the first arg bound.
5633
5634         Fixes #469529.
5635
5636 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5637
5638         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
5639         errors.
5640
5641         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
5642         under strict mode. Any type, when boxed can be seen as a reference type.
5643
5644         Fixes #469528.
5645
5646 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5647
5648         * object.h: The lower bound of an array is a signed integer value.
5649         Introduce mono_array_lower_bound_t typedef. It should be used instead of
5650         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
5651
5652         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
5653         calculate the upper bound.
5654         
5655         Fixes #471252.
5656
5657 2009-02-02  Miguel de Icaza  <miguel@novell.com>
5658
5659         From Paolo's work, refactored, cleared up:
5660         
5661         * threadpool.c, icall.c: ifdef code that requires a working socket
5662         stack.
5663
5664         * metadata.c (mono_metadata_field_info): Do not attempt to return
5665         a value from a function declared as void.
5666
5667         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
5668         from the console stack.
5669
5670         * assembly.c: use strrchr instead of rindex.
5671
5672         * class.c, object.c, marshal.c, icall.c, reflection.c: include
5673         alloca.h on systems that have it.
5674
5675         * environment.c: Avoid code that uses stuff from
5676         HAVE_SYS_UTSNAME_H
5677         
5678         * appdomain.c: Include sys/time.h.
5679
5680         * console-io.c: include sys/ioctl.h if it is available.
5681
5682 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
5683
5684         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
5685
5686         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
5687         the method builder.
5688
5689         * marshal.c: Set mb->skip_visibility instead of setting it on the method
5690         after it was created and cached, as the later is not thread safe.
5691         
5692 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
5693
5694         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
5695         called while the debugging module is not initialized. Fixes #471669.
5696
5697 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
5698
5699         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
5700
5701         Fixes #471255.
5702
5703 2009-02-02  Mark Probst  <mark.probst@gmail.com>
5704
5705         * generic-sharing.c (lookup_or_register_other_info): Make sure the
5706         loader lock is not taken while the templates lock is held.  Fixes
5707         #471089.
5708
5709 2009-02-02  Mark Probst  <mark.probst@gmail.com>
5710
5711         * metadata.c (type_in_image): Added a check to fix a monodis
5712         crash.
5713
5714 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
5715
5716         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
5717         nullable arguments.
5718
5719         * object.c (mono_runtime_invoke_array): Ditto.
5720         
5721         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
5722         freeing wrappers of dynamic methods.
5723
5724         * loader.c (mono_free_method): Call it. Fixes #463323.
5725         
5726         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
5727         methods taking vtype/byref arguments, to fix yet another bug caused by
5728         the sharing of runtime invoke wrappers. Partly fixes #471259.
5729
5730 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
5731
5732         * debug-mono-symfile.c (check_line): Return NULL instead of returning
5733         <first file in file table>:1 when the IL offset does not have an associated
5734         line number.
5735
5736 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
5737
5738         * mono-debug.c (mono_debug_lookup_locals): New function to return local
5739         variable info for a method.
5740
5741         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
5742         
5743 2009-01-30  Jb Evain  <jbevain@novell.com>
5744
5745         * pedump.c: reuse code from monodis to make sure pedump honors
5746         MONO_PATH, which is needed to verify net_2_1 assemblies.
5747
5748 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
5749
5750         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
5751         there is no line number info.
5752
5753 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
5754
5755         Avoid some MonoType allocations
5756         * reflection.c (mono_reflection_initialize_generic_parameter):
5757         Reuse MonoType from param->pklass rather than allocating one.
5758         (mono_dynamic_image_free): Update to changes.
5759
5760 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
5761
5762         Rearrange some code to improve consistency
5763         * reflection.c (mono_reflection_setup_generic_class): Move body ...
5764         (mono_reflection_initialize_generic_parameter): ... here.
5765
5766 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
5767
5768         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
5769         with type constraints as an experiment.
5770
5771         * boehm-gc.c (on_gc_notification): Update mono_stats.
5772
5773 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
5774
5775         Avoid some allocations
5776         * class-internals.h (_MonoGenericInst::type_argv): Convert from
5777         pointer to tail array to avoid extra allocation.
5778         * metadata.c (free_generic_inst): Update to changes.
5779         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
5780         on-stack struct.
5781
5782 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
5783
5784         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
5785         return TRUE if the two type objects are the same.
5786
5787 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5788
5789         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
5790         (mono_class_native_size): Use klass->marshal_info->min_align instead of
5791         klass->min_align, since klass->min_align contains the managed alignment,
5792         while the native alignment can be different, like for longs on x86.
5793         Fixes #469135.
5794
5795         * class-internals.h (MonoMarshalType): Add a min_align field.
5796
5797 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
5798
5799         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
5800         the 1.0 format.
5801
5802 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5803
5804         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
5805         some comments about the usage of the used_regs field.
5806
5807         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
5808         Fixes #469217.
5809
5810 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
5811
5812         * appdomain.c: return NULL instead of throwing FileNotFoundException
5813         when LoadAssembly() fails.
5814
5815 2009-01-23  Mark Probst  <mark.probst@gmail.com>
5816
5817         * metadata.c (mono_metadata_generic_param_equal): Only compare the
5818         image if the owner is NULL.  Fixes the AOT failures.
5819
5820 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
5821
5822         * metadata.c (mono_metadata_load_generic_params): Initialize the 
5823         MonoGenericParam structure using memset so the image field is initialized
5824         as well.
5825
5826 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5827
5828         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
5829         a plain store.
5830
5831 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
5832
5833         * class.c (mono_class_setup_vtable_general): In the generic instance
5834         optimization, set method->slot for abstract virtual methods. Fixes part of
5835         #467834.
5836
5837 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5838
5839         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
5840         which signals that the unloading has started but all appdomain services must
5841         remain operational.
5842
5843         * appdomain.c (mono_domain_unload): The initial state for unloading now
5844         is unloading_start and we switch to unloading after the managed call to
5845         AppDomain::DomainUnload has finished.
5846
5847         The new unloading state has to be created because managed code in the
5848         DomainUnload event can depend on things like the threadpool still working.
5849         The domain must remain fully functional while the event executes.
5850
5851         This shown as an issue due to Process::WaitForExit, which waits for
5852         async reads of stdout and stderr to complete. Since those are processed
5853         in the threadpool the code deadlocks because the DomainUnload callback 
5854         waits for the async read finished event, which should have been set by a
5855         threadpool job but has been discarded due to the domain been in unload
5856         state.
5857
5858 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5859
5860         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
5861         image must match.
5862
5863 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5864
5865         * reflection.c (resolve_object): For fields, inflate the class and
5866         then get the field in the inflated class.
5867
5868 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5869
5870         * object-internals.h (struct _MonoException): Added a comment
5871         explaining the new use of trace_ips.
5872
5873 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5874
5875         * generic-sharing.c (inflate_other_data): Inflate array methods
5876         correctly.
5877
5878         * loader.c, class-internals.h: Rename search_in_array_class() to
5879         mono_method_search_in_array_class() and make it non-static.
5880
5881 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
5882
5883         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
5884         Hopefully fixes #458168.
5885
5886 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
5887
5888         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
5889         as it is performed elsewhere.
5890
5891         Code is contributed under MIT/X11 license
5892
5893 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
5894
5895         * mono-perfcounters-def.h: Add counters for asp.net requests total and
5896         requests queued.
5897         * object.c (mono_raise_exception): Increment the exceptions total
5898         counter when an exception is thrown.
5899         * class-internals.h: Add a location for storing the total number of
5900         asp.net requests served.
5901         * mono-perfcounters.c: Implement update support for asp.net counters
5902         from the class libraries. Implement read support for asp.net counters
5903         and exceptions total counter.
5904
5905 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
5906
5907         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
5908         accessing klass->methods. Fixes #467385.
5909
5910 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
5911
5912         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
5913         for byval arguments without an [Out] attribute. Fixes #467212.
5914
5915         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
5916         Fix compilation under android.
5917         
5918         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
5919         processed, scan them directly after they are copied, to achieve better locality
5920         and cache usage.
5921
5922         * socket-io.c: Applied patch from Koushik Dutta
5923         (koush@koushikdutta.com). Disable IPV6 when running under android.
5924
5925 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
5926
5927         * icall.c (ves_icall_InternalExecute): Add write barriers.
5928
5929         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
5930         the GC code.
5931
5932         * sgen-gc.c: Implement write barriers in IL code.
5933
5934 2009-01-17  Geoff Norton  <gnorton@novell.com>
5935
5936         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
5937
5938 2009-01-17  Geoff Norton  <gnorton@novell.com>
5939
5940         * image.c: When unloading the image->references table, there can be gaps
5941         in it.  Ensure that we iterate every entry to avoid leaking assembly references
5942         when unloading an appdomain.
5943
5944 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
5945
5946         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
5947         speed up ptr-in-nursery checks.
5948
5949         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
5950         threads_lock () to prevent deadlocks.
5951
5952         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
5953         does not need to be scanned during minor collections, since writes to it
5954         must use write barriers.
5955
5956 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
5957
5958         * metadata-verify.c: Add pe nt header verification.
5959         
5960 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
5961
5962         * gc.c: Fix a few warnings when using SGEN.
5963
5964 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
5965
5966         * metadata-verify.c: Add pe optional header verification.
5967
5968 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
5969
5970         * sgen-gc.c: Add support for user defined marker functions, used by
5971         MonoGHashTable to avoid registering a GC root for every hash node.
5972
5973 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
5974
5975         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
5976         non-pinned roots into separate hashes to avoid having to traverse them
5977         in functions which are only interested in one kind.
5978
5979 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
5980
5981         * metadata-verify.c: Add pe header machine field verification.
5982         
5983 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
5984
5985         * metadata-verify.c: Add pe header size verification.
5986
5987 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
5988
5989         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
5990         using the GC, they don't contain references.
5991
5992         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
5993
5994 2009-01-13  Geoff Norton  <gnorton@novell.com>
5995
5996         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
5997         AppDomains created on the native side can be cleaned up on the native side.
5998
5999 2009-01-13  Geoff Norton  <gnorton@novell.com>
6000
6001         * appdomain.c: Ensure that we call mono_context_init for the embedding api
6002         as well as the managed api.
6003
6004 2009-01-13  Geoff Norton  <gnorton@novell.com>
6005
6006         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
6007         with a MonoAppDomain initialized against it.
6008
6009 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6010
6011         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
6012         
6013         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
6014
6015         * marshal.c: Avoid setting the exception clauses after a method has been entered 
6016         into the wrapper caches. Fixes #465700.
6017
6018         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
6019         method builder.
6020         (mono_mb_create_method): Set the clauses from the method builder.
6021
6022 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6023
6024         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
6025         Patch from Makoto Kishimoto.
6026
6027 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6028
6029         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
6030         encoding them as ROOT_DESC_COMPLEX.
6031         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
6032
6033 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
6034
6035         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
6036         no longer point to the nursery.
6037
6038         * sgen-gc.c: Add a few comments/FIXMEs.
6039         
6040         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
6041
6042         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
6043         initialization of the various _method variables thread safe. Fixes
6044         #465377.
6045
6046 2009-01-12  Mark Probst  <mark.probst@gmail.com>
6047
6048         * domain.c, domain-internals.h: Remove the shared_generics_hash
6049         and its lookup functions.
6050
6051 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
6052
6053         * socket-io.c:  Fixing the MSVC build. 
6054
6055         Code is contributed under MIT/X11 license.
6056
6057 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
6058
6059         * metadata-verify.c: Add pe header watermark verification.
6060
6061 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6062
6063         * metadata-verify.c: Add lfanew verification.
6064
6065 2009-01-12  Jb Evain  <jbevain@novell.com>
6066
6067         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
6068         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
6069
6070 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
6071
6072         * socket-io.c: Fix the build.
6073
6074         * environment.c: Fix an #ifdef.
6075
6076 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6077
6078         * threadpool.c (async_invoke_thread): Handle the wait function returning
6079         WAIT_IO_COMPLETION as well.
6080         (async_invoke_io_thread): Ditto.
6081
6082 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
6083
6084         * threads.c: Fixing the Windows build.
6085
6086         Code is contributed under MIT/X11 license.
6087
6088 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6089  
6090         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
6091         interrupt a wait.
6092         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
6093         the thread to wait again.
6094
6095 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6096
6097         * metadata-verify.c: Initial skeleton of the metadata verifier.
6098
6099         * pedump.c: Add support for the metadata verifier.
6100
6101         * verify-internal.h: Export the whole assembly metadata verifier function.
6102
6103 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6104
6105         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
6106
6107 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6108
6109         * Makefile.am: Upgrade dtrace-prelink.sh location.
6110
6111 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6112
6113         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
6114         well. Otherwise the shutdown deadlock that happens on unix will can happen
6115         as well.
6116         If the main thread code finishes too fast it's possible that the finalizer
6117         thread won't have executed yet, won't record itself as the finalizer thread
6118         and the shutdown sequence will wait on it forever.
6119
6120 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6121
6122         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
6123         with MSVC.
6124
6125 2009-01-08  Miguel de Icaza  <miguel@novell.com>
6126
6127         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
6128         Robert Jordan for pointing this out.
6129
6130 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
6131
6132         * icall.c
6133         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
6134         ves_icall_System_IO_DriveInfo_GetDriveType.
6135
6136 2009-01-07  Miguel de Icaza  <miguel@novell.com>
6137
6138         * icall.c: Wrap calls to mono_strtod in CriticalSection
6139         invocations when using eglib, to work around #464316.
6140
6141 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6142
6143         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
6144         return value of GetCurrentDirectory to never access unitialized memory.
6145
6146 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6147
6148         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
6149         return value of GetCurrentDirectory and expand the buffer if needed.
6150
6151         Fixes #459094.
6152
6153 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
6154
6155         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
6156           Adding a call to mono_init_com_types.
6157
6158         Code is contributed under MIT/X11 license.
6159
6160 2009-01-07  Geoff Norton  <gnorton@novell.com>
6161
6162         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
6163         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
6164         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
6165         be the value of the ip buffer.
6166
6167 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6168
6169         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
6170         interfaces_packed here.
6171
6172         Fixes part of #463294.
6173
6174 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6175
6176         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
6177
6178         Fixes part of #463294.
6179
6180 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6181
6182         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
6183         is a boxed complex as well.
6184
6185         Fixes part of #463294.
6186
6187 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6188
6189         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
6190         control if a methodspec should be created for the generic method definition from external assemblies.
6191         Caching of methodspec is done using the handleref hash table.
6192
6193         Fixes #462592.
6194
6195 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
6196
6197         * loader.c (find_method): When searching the interfaces of a class
6198         check the transitive closure of implemented interfaces.
6199
6200         Fixes #463303.
6201
6202 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
6203
6204         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
6205         
6206 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
6207
6208         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
6209         interfaces calculation to fill_valuetype_array_derived_types.
6210
6211         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
6212         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
6213         for example.
6214
6215         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
6216         interfaces for valuetypes if needed.    
6217
6218         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
6219         for their basetype as well. Types are array expanded if rank is > 0.
6220
6221         Fixes #400716.
6222
6223 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
6224
6225         * socket-io.h : Changing the signature of
6226           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
6227           the blocking state.
6228
6229         * icall-def.h :  Changing the signature of
6230           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
6231
6232         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
6233           For Windows only.  Avoid blocking when calling accept by
6234           querying for a connection via select.  The loop also queries
6235           the thread state every 1000 micro seconds for the thread
6236           stop state.  This will avoid the process hanging on shutdown
6237           when using a TcpChannel that is never connected to.
6238
6239         Code is contributed under MIT/X11 license.
6240
6241 2008-12-30  Marek Safar  <marek.safar@gmail.com>
6242
6243         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
6244
6245 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
6246
6247         * class.c (get_implicit_generic_array_interfaces): Extract common
6248         code to a helper function making it a lot easier on the eyes.
6249
6250 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
6251
6252         * class.c (get_implicit_generic_array_interfaces): If the internal
6253         enumerator is an interface inflate System.Object instead of itself.
6254
6255         Fixes #461261.
6256
6257 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
6258
6259         * object.c (mono_runtime_invoke_array): Don't assert with
6260         byref nullable types.
6261
6262         * marshal.c (mono_marshal_get_runtime_invoke): To handle
6263         byref nullables we unbox the object and store it on the
6264         stack. 
6265         We can't use the boxed object since it is the T of Nullable<T>
6266         and the boxed representation of a nullable it's underlying type
6267         or null.
6268         We could cheat and create a boxed nullable and use the same
6269         machinery of other byref VTs but this feels like a hack and
6270         using the stack has the bonus of reducing heap pressure.
6271
6272         Fixes #461941.
6273
6274 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
6275
6276         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
6277         return value.
6278
6279         Fixes #461867.
6280
6281 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
6282
6283         * icall-def.h : Adding an internal call definition for 
6284           System.Environment.internalBroadcastSettingChange.
6285
6286         * icall.c : Adding a Windows only implementation to broadcast a 
6287           WM_SETTINGCHANGE when an environment variable has changed.
6288
6289         Code is contributed under MIT/X11 license.
6290
6291 2008-12-19  Mark Probst  <mark.probst@gmail.com>
6292
6293         * class.c, class-internals.h: Made
6294         mono_class_has_parent_and_ignore_generics() non-static.
6295
6296 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
6297
6298         * image.c: deal with the mmap failing when loading an image.
6299
6300 2008-12-17  Geoff Norton  <gnorton@novell.com>
6301
6302         * threadpool.c: Ensure that the io_queue_lock is initialized
6303         in all circumstances, as we always attempt to cleanup against it.
6304
6305 2008-12-17  Miguel de Icaza  <miguel@novell.com>
6306
6307         * icall.c (ves_icall_System_Environment_get_Platform): For
6308         compatibility reasons for existing client code we will keep
6309         returning 4 for a while.   
6310
6311         For how long will depend on the documentation being updated, and
6312         for us to give client code a chance to be updated.
6313
6314         This reverts the original decison on #433108 since we did not
6315         catch roughly 33 instances of the broken code in our own source
6316         code base, we did not catch failures on the buildbots, and QA did
6317         not bring this as a problem.
6318
6319         Only today I found some customer's code breaking due to our own
6320         class libraries not being fully updated and tracked it down to
6321         this change.  I am reverting it because if we could not even get
6322         our story straight in our own code base, how can we hope that our
6323         end user code be fixed?
6324
6325         As of this morning, our Wiki page that documents how to detect
6326         Unix had not been fixed.    
6327
6328 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
6329
6330         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
6331
6332         * class.c (mono_class_get_fields): Handle loading errors.
6333
6334 2008-12-12 Mark Mason <mmason@upwardaccess.com>
6335
6336         * 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.
6337         
6338 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6339
6340         * mono-perfcounters.c: avoid warning.
6341
6342 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6343
6344         * reflection.c (ensure_runtime_vtable): Work on generic instances and
6345         make sure all interfaces have MonoClass::interface_id set.
6346
6347         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
6348         method table is property set.
6349
6350 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6351
6352         * class.c: New function mono_class_setup_interface_id that setup
6353         MonoClass::interface_id if needed.
6354
6355         * class-internals.h: Export new function.
6356
6357 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6358
6359         * class.c: Add code to sanity check the vtable after setup_vtable_general
6360         has done it's work.
6361
6362 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
6363
6364         * icall.c: make Assembly.GetExecutingAssembly work properly when
6365         reflection is used to invoke the method.
6366         Bug #321781 fixed.
6367
6368 2008-12-11  Mark Probst  <mark.probst@gmail.com>
6369
6370         * metadata/generic-sharing.c: Look for constraints in all type
6371         arguments, not just the first one.
6372
6373 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
6374
6375         * appdomain.c: return the correct CodeBase for an Assembly instance
6376         that was loaded from the shadow-copy directories.
6377         Bug #458190 fixed.
6378
6379 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
6380
6381         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
6382
6383         * sgen-gc.c (check_object): New debugging helper function.
6384
6385         * object.c: Fix calls to mono_value_copy_array ().
6386
6387 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6388
6389         * class.c (mono_class_setup_fields): If working on an inflated class
6390         first check if the generic definition did init with success.
6391
6392         Fixes #445361.
6393
6394 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6395
6396         pedump.c (main): Fix a warning.
6397
6398 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
6399
6400         * object-internals.h : Adding a definition for 
6401           MonoReflectionComVisibleAttribute.
6402
6403         * marshal.c (cominterop_com_visible) :  Method added to check the 
6404           ComVisible attribute of a class.
6405
6406         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
6407           cominterop_raise_hr_exception added to consolidate common code 
6408           to raise hr exceptions.
6409
6410         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
6411           if a managed class should support IDispatch.
6412
6413         * marshal.c 
6414           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
6415           Added additional checks for managed object when getting 
6416           an IDispatch interface.
6417
6418         Code is contributed under MIT/X11 license.
6419
6420 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6421
6422         pedump.c (main): Handle mono_get_method () returning NULL. 
6423
6424 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6425
6426         * marshal.h: Fix a warning.
6427
6428 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
6429
6430         * marshal.c : Adding cominterop_release_all_rcws to release all
6431           runtime callable wrappers held by the runtime.
6432
6433         * marshal.h : Adding declaration for cominterop_release_all_rcws.
6434           
6435         Code is contributed under MIT/X11 license.
6436
6437 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6438
6439         * metadata.c (mono_image_alloc_lock): New helper function.
6440         (mono_image_alloc0_lock): Ditto.
6441
6442         * metadata.c: Use the alloc_lock () helper functions for allocating
6443         memory from the image mempool.
6444
6445 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
6446
6447         * class.c (mono_class_from_generic_parameter): Document it's
6448         locking behavior. Fix double checked locking here, we stored in
6449         param->pklass a partially initialized MonoClass and no membar was used.
6450
6451 2008-12-05  Marek Habersack  <mhabersack@novell.com>
6452
6453         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
6454         (3) functions are present in the C library use them to do the
6455         job. If they are absent, make sure that the sum of int_part and
6456         dec_part is rounded before returning. This is necessary due to the
6457         division of dec_part by the power of 10 before the final addition
6458         is performed - if the result is not rounded in some cases it will
6459         yield invalid results.
6460
6461 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
6462
6463         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
6464         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
6465         instruction instead of a pointer constant.
6466
6467 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
6468
6469         * loader.c (mono_method_get_header): Do most of the work outside the
6470         loader lock, to avoid assembly load hook deadlocks.
6471
6472         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
6473         (mono_metadata_parse_type_full): Ditto.
6474
6475 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
6476
6477         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
6478         Make the stack depth fixed. Ensure proper argument passing to the backtrace
6479         funtions. Finally, use a lock to produce well ordered output.
6480
6481         The lock looks silly, as all calls to the corlib mempool should be guarded
6482         with the loader lock, but for some reason this fact doesn't help. 
6483
6484         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
6485
6486 2008-12-02  Mark Probst  <mark.probst@gmail.com>
6487
6488         * socket-io.c: 64 bit big-endian fixes.
6489
6490 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
6491
6492         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
6493         targets that require strict compatibility between the types.
6494
6495         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
6496         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
6497         Kill the strict argument and create a new one valuetype_must_be_boxed.
6498
6499         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
6500         state that all valuetypes must be boxed.
6501
6502         Fixes #448560.
6503
6504 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
6505
6506         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
6507         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
6508
6509         Contributed under MIT/X11 license.
6510
6511 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
6512
6513         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
6514         the inflate_generic_type machinery should handle it.
6515
6516         This avoids a crash when the field's flags is zero and it's type is
6517         a primitive.
6518         What happens is that mono_metadata_parse_type_full will see that opt_attrs
6519         is zero and will return one of the cached built-in primitive types. Since
6520         those types live in read-only memory, the code that copies it crashes.  
6521
6522 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6523
6524         * object.c: Don't put function descriptors into generalized IMT
6525         thunks.
6526
6527 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6528
6529         * class.c: Enable generic code sharing on PPC64.
6530
6531 2008-11-27  Mark Probst  <mark.probst@gmail.com>
6532
6533         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
6534         from mini/mini.c.
6535
6536         * generic-sharing.c: Allocate the method template slists from the
6537         image mempool so it doesn't leak.
6538
6539 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
6540
6541         * class.c (generic_array_methods): Release the linked list.
6542
6543 2008-11-27  Mark Probst  <mark.probst@gmail.com>
6544
6545         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
6546         invocation to g_utf16_to_utf8().
6547
6548 2008-11-26  Mark Probst  <mark.probst@gmail.com>
6549
6550         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
6551         arguments on big endian archs.
6552
6553 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
6554
6555         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
6556         the type name (test added in corlib).
6557
6558 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
6559
6560         * pedump.c: initialize perf. counters. Fixes a segv.
6561
6562 2008-11-25  Martin Baulig  <martin@ximian.com>
6563
6564         * mono-debug-debugger.c
6565         (mono_debugger_runtime_invoke): Return the exception object if an
6566         exception was thrown.  Visual Studio displays the exception object
6567         in the locals window.
6568
6569 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6570
6571         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
6572         ftnptr.
6573
6574 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6575
6576         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
6577         MONO_TYPE_U are sizeof (gpointer), too.
6578
6579 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6580
6581         * marshal.c (mono_type_native_stack_size): Fixed size and
6582         alignment for reference types.
6583
6584 2008-11-23  Mark Probst  <mark.probst@gmail.com>
6585
6586         * class.c (mono_class_generic_sharing_enabled): Disable generic
6587         code sharing for PPC64.
6588
6589 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
6590
6591         * icall.c (mono_method_get_equivalent_method): Make sure
6592         method->klass->methods is inited before looping over it.
6593
6594 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6595
6596         * object.c: when calling ExecuteAssembly in a newly created domain,
6597         the configuration file and application base are already set up.
6598         Bug #446353 take 2 fixed.
6599
6600 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
6601
6602         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
6603         Fixes #444715. Fix a warning.
6604
6605 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
6606
6607         * appdomain.c: write the full path of the assembly to the .ini file
6608         created when "shadow-copying"
6609         Bug #446353 fixed.
6610
6611 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
6612
6613         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
6614         if signature==FALSE.
6615
6616 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
6617
6618         * marshal.h : Fix the cygwin build.
6619            marshal.c:12442: undefined reference to `_IID_IMarshal'
6620           
6621         Code is contributed under MIT/X11 license.
6622
6623 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
6624
6625         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
6626           free threaded marshaler when QueryInterface is called on a COM callable
6627           wrapper requesting the IMarshal interface.
6628           
6629         Code is contributed under MIT/X11 license.
6630
6631 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
6632
6633         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
6634
6635         * reflection.c (mono_type_get_object): Special case the very common
6636         void type.
6637
6638         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
6639         hold typeof(void).
6640
6641 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
6642
6643         * process.h : Adding method declaration for
6644           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6645           
6646         * process.c : Adding implementation for
6647           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6648           
6649         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
6650           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6651
6652         Code is contributed under MIT/X11 license.
6653
6654 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
6655
6656         * appdomain.c (unload_thread_main): Clean up threadpool by
6657         calling mono_thread_pool_remove_domain_jobs.
6658
6659         * domain-internals.h (struct _MonoDomain): Add new fields to
6660         help coordinate the cleanup of the threadpool.
6661
6662         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
6663         that cleans up the threadpool of all jobs associated with an appdomain.
6664         It does that by cleaning up the queues and making sure all active
6665         threads are accounted.
6666
6667         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
6668         unloaded or in the process of. Take this is such way that there is
6669         no race condition between another thread starting the unload and the
6670         current thread acknowledging it.
6671
6672         * threadpool.c (async_invoke_thread): Same.
6673
6674         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
6675         firing the new thread.
6676
6677         * threadpool.c (start_tpthread): Same.
6678
6679         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
6680
6681         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
6682
6683 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
6684
6685         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6686         Add support for DuplicateHandle.
6687         
6688         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6689         Add support for DuplicateHandle.
6690         
6691         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6692         Add support for DuplicateHandle.
6693
6694         Code is contributed under MIT/X11 license.
6695
6696 2008-11-06  Mark Probst  <mark.probst@gmail.com>
6697
6698         * class-internals.h: Make min_align into a whole byte.
6699
6700         * class.c: Set min_align for SIMD types to 16.
6701
6702 2008-11-05  Geoff Norton  <gnorton@novell.com>
6703
6704         * attach.c: Default the attacher to enabled for all cases including
6705         embedded.
6706
6707 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
6708
6709         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
6710         change r117650.
6711
6712 2008-11-04  Mark Probst  <mark.probst@gmail.com>
6713
6714         * monitor.c, monitor.h: New function for querying offsets of
6715         members of MonoThreadsSync.
6716
6717 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
6718
6719         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
6720         to speed up this function and to avoid the boundless memory growth caused by
6721         the signature_dup () calls.
6722
6723 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
6724
6725         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
6726         wrapper.
6727
6728         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
6729         by 1 bit.
6730
6731         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
6732
6733 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6734
6735         * appdomain.c:
6736         * domain-internals.h: made mono_set_private_bin_path_from_config()
6737         "internal".
6738         * object.c: call the above function after setting the configuration
6739         file path for the root domain.
6740         Fixes bug #314478.
6741
6742 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6743
6744         * assembly.c: when the assembly is loaded from an absolute path, end
6745         basedir with a directory separator.
6746         Bug #440781 fixed.
6747
6748 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6749
6750         * monitor.c (mono_monitor_get_fast_enter_method): If
6751         CompareExchange is not available, don't create the fastpath
6752         instead of asserting.  (The method is missing in the 1.1 profile.)
6753
6754 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6755
6756         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
6757
6758         * monitor.c, monitor.h: Code for generating Monitor.Enter and
6759         Monitor.Exit IL fastpaths.
6760
6761 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6762
6763         * class.c (mono_class_create_from_typedef): Added Vector2ul.
6764
6765 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6766
6767         * class.c (mono_class_create_from_typedef): Added Vector2l.
6768
6769 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
6770
6771         * class.c (mono_class_create_from_typedef): Added Vector2d.
6772
6773 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6774
6775         * appdomain.c: translate \ into / for cache_path.
6776         * domain-internals.h: new mono_is_shadow_copy_enabled().
6777         * icall.c: (fill_reflection_assembly_name) do the same path
6778         manipulations that get_code_base does.
6779         (get_code_base) use mono_is_shadow_copy_enabled.
6780
6781 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
6782
6783         * appdomain.c: shadow-copied assemblies go to CachePath +
6784         ApplicationName when both are set. DynamicBase has nothing to do with
6785         shadow copies.
6786         Bug #406877 fixed.
6787
6788 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
6789
6790         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
6791         STANDALONESIG table.
6792
6793         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
6794         standalone signatures.
6795
6796         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
6797         comparison code: instead of comparing the signatures using a custom
6798         equals function, transform them to a common signature and compare that. This
6799         works better with AOT.
6800
6801 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
6802
6803         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
6804
6805         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
6806         call for generic instances.
6807         (mono_class_setup_properties): Call setup_properties () before accessing
6808         gklass->properties.
6809
6810         * class.c (mono_class_get_virtual_methods): New helper function to iterate
6811         over the virtual methods of a class using metadata if possible, avoiding the
6812         creation of MonoMethod's for non-virtual methods.
6813         
6814         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
6815         get_virtual_methods () to iterate over the virtual methods of classes.
6816
6817 2008-10-25  Martin Baulig  <martin@ximian.com>
6818
6819         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
6820
6821 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6822
6823         * class.c (mono_class_create_from_typedef): Added Vector4i.
6824
6825 2008-10-24  Mark Probst  <mark.probst@gmail.com>
6826
6827         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
6828         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
6829         special-casing applies to eliminate the call completely.
6830
6831 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6832
6833         * class.c (mono_class_create_from_typedef): Added Vector8s.
6834
6835 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
6836
6837         * class.c (mono_class_create_from_typedef): Added Vector16sb.
6838
6839 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6840
6841         * icall.c: get rid of annoying warning.
6842
6843 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6844
6845         * threadpool.c: in 1.x, if you change the background status of the
6846         threadpool thread, it's not reset.
6847         Remove unnecessary calls to SetState.
6848
6849 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6850
6851         * threadpool.c: asynchronously create a set of idle threads upon first
6852         use of the threadpool. SetMinThreads will now start the appropriate
6853         number of idle threads if they are not already running. The default is
6854         1 threadpool thread per CPU. Increased the maximum number of threads
6855         per CPU to 10.
6856
6857 2008-10-22  Martin Baulig  <martin@ximian.com>
6858
6859         Revert r116521 from Zoltan, it breaks the debugger:
6860
6861         * class.c (mono_class_get_virtual_methods): New helper function to iterate
6862         over the virtual methods of a class using metadata if possible, avoiding the
6863         creation of MonoMethod's for non-virtual methods.
6864         
6865         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
6866         get_virtual_methods () to iterate over the virtual methods of classes.
6867
6868 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6869
6870         * threads.c: when creating a threadpool thread, set its state to
6871         'background'.
6872         * threadpool.c: reset the background state of a threadpool thread
6873         after finishing each work item
6874         Bug #437888 fixed.
6875
6876 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
6877
6878         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
6879         
6880         * class.c (mono_class_setup_vtable_general): Add an optimized version for
6881         generic instances which works by inflating the methods in the container
6882         class's vtable.
6883
6884         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
6885         variant which doesn't make a copy if no inflation was done.
6886         (mono_class_setup_fields): Use it.
6887
6888         * metadata.c (mono_metadata_get_shared_type): New helper function to
6889         return a shared instance of a given MonoType.
6890
6891         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
6892         a copy of most non-generic types.
6893
6894 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
6895
6896         * threadpool.c: remove one more GetSystemInfo () call.
6897
6898 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
6899
6900         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
6901         use the code in mono-proclib.h to get processor information.
6902
6903 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6904
6905         * appdomain.c: fixed the logic that determines whether assemblies in a
6906         directory are "shadow-copied" or not. Bug #433483 fixed.
6907
6908 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
6909
6910         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
6911         warning.
6912
6913 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
6914
6915         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
6916         returning a vtype.
6917
6918         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
6919         reflection.c: Use mono_field_get_name () for accessing a field's name.
6920
6921         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
6922         class.c
6923
6924         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
6925         field.
6926
6927         * loader.c (find_method_in_class): Reenable the metadata optimization by
6928         not using it for generic instances.
6929
6930         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
6931         data/def_type fields from MonoClassField into a separate structure.
6932         (struct MonoClassField): Remove data/def_type fields.
6933         (struct _MonoClass): Add a 'field_def_values' array to store the default
6934         values/RVA for fields.
6935
6936         * class.c reflection.c: Update after the changes.
6937         
6938         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
6939         for accessing field->data.
6940
6941         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
6942
6943         * loader.c (find_method_in_class): Revert the last change for now as
6944         it breaks Mono.C5 unit tests.
6945
6946         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
6947         'field_generic_types' and 'field_objects' which contain the information
6948         previously stored in MonoInflatedField.
6949         (MonoInflatedField): Delete.
6950         (struct _MonoClassField): Delete 'generic_info' field.
6951
6952         * reflection.c: Store the information which was previously in 
6953         field->generic_info in MonoDynamicGenericClass instead.
6954
6955         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
6956         MonoClassField changes.
6957
6958 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
6959
6960         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
6961         store the value inside the data array of the MonoMethodWrapper.
6962         This saves memory, is faster and fixes the lifetime issues (methods
6963         were never removed from the hash previously). May also fix bug#436996.
6964
6965 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
6966
6967         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
6968         generic instances, compute the type from the generic definition instead of
6969         looking in field->generic_info.
6970
6971         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
6972         for inflated fields, the only user was get_fieldref_token () which no
6973         longer needs it.
6974
6975         * class.c (mono_class_init): Revert the last change as it seems to cause
6976         crashes.
6977
6978         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
6979         bytes on 64 bit platforms.
6980
6981         * object.c (mono_class_create_runtime_vtable): Fix a warning.
6982         
6983         * object.c (mono_class_create_runtime_vtable): Don't initalize
6984         field->data/field->def_type here, it is done lazily by 
6985         mono_class_get_field_default_value ().
6986
6987         * icall.c (ves_icall_get_enum_info): Call 
6988         mono_class_get_field_default_value () instead of directly accessing
6989         field->data and field->def_type.
6990
6991         * object.c (get_default_field_value): Ditto.
6992
6993         * class.c (mono_field_get_data): Ditto.
6994         
6995         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
6996         call for generic instances.
6997
6998         * loader.c (find_method_in_class): If klass != from_class, then inflate
6999         the method with the context of from_class, since the caller assumes this.
7000
7001 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
7002
7003         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
7004         for accessing method->slot.
7005
7006 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
7007
7008         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
7009
7010 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
7011
7012         * class.c (mono_method_get_vtable_index): Use
7013         mono_method_get_vtable_slot () for accessing method->slot.
7014
7015         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
7016         accessing klass->methods.
7017
7018         * class.c (mono_method_get_vtable_slot): New helper function.
7019         (mono_class_get_vtable_entry): Ditto.
7020         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
7021         accessing method->slot.
7022
7023         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
7024         method to get_inflated_method ().
7025
7026         * class.c (mono_class_get_inflated_method): New helper method to obtain
7027         a method of an inflated class without calling setup_methods ().
7028         (mono_class_get_cctor): Use get_inflated_method.
7029
7030         * generic-sharing.c (mono_class_get_method_generic): Ditto.
7031         
7032         * marshal.c image.c: Lazily create all the marshal caches.
7033
7034         * image.c (mono_image_init): Move initialization of runtime_invoke
7035         caches to marshal.c.
7036
7037         * marshal.c (get_cache): New helper function to lazily initialize a 
7038         wrapper cache.
7039         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
7040
7041         * debug-helpers.c (mono_method_full_name): Include generic arguments.
7042
7043 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
7044
7045         * loader.c: fixed check for interface type.
7046
7047 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
7048
7049         * appdomain.c: check for NULL setup before it's referenced.
7050
7051 p
7052 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
7053
7054         * class.c: remove the unused old vtable setup code.
7055
7056 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
7057
7058         * class.c: don't depend on interface order in
7059         setup_interface_offsets (bug #435777).
7060         * reflection.c: sort the InterfaceImpl table (patch from
7061         Jb Evain  <jbevain@novell.com>).
7062
7063 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
7064
7065         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
7066         the low level assemblies lock.
7067
7068 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
7069
7070         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
7071         object.c, reflection.c, socket-io.c, threads.c: introduced
7072         mono_framework_version () to return the major framewrok version,
7073         changed the code that was using more complex patterns to use it.
7074         Return the correct value for PlatformID for OSX.
7075
7076 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
7077
7078         * icall-def.h, process.h, process.c: added an icall to get info about
7079         processes using mono-proclib.
7080
7081 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
7082
7083         * mono-perfcounters.c: use the mono-proclib functions to
7084         access process information.
7085
7086 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
7087
7088         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
7089         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
7090         reflection.c: remove rawbuffer usage: mmap support is more sanely
7091         provided by utils/mono-mmap.
7092
7093 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
7094
7095         * gc.c: use posix semaphores when possible so that
7096         mono_gc_finalize_notify() is signal safe.
7097
7098 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
7099
7100         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
7101         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
7102         be #ifdef-ed out, the linker will remove the rest.
7103
7104         * marshal.c: Implement DISABLE_COM.
7105
7106         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
7107
7108 2008-10-11  Miguel de Icaza  <miguel@novell.com>
7109
7110         * locales.c (string_invariant_compare_char): Optimization: do not
7111         call g_unichar_type unless we actually need the information.
7112
7113 2008-10-10  Mark Probst  <mark.probst@gmail.com>
7114
7115         * object.c, class-internals.h: Also create remoting trampolines
7116         for generic methods.  Pass the domain to the remoting trampoline
7117         creation function, too.
7118
7119 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
7120
7121         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
7122
7123 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7124
7125         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
7126         Vector4ui.
7127
7128 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
7129
7130         * assembly.c:
7131         * locales.c: remove the use of g_strdown. Fixes bug #322313.
7132
7133 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
7134
7135         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
7136         for the least possible amount of time (extending the fix in r113458).
7137
7138 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7139
7140         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
7141
7142 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
7143
7144         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
7145         as possible simd intrinsic types.
7146         Optimized the test to check for the common prefix first.
7147
7148 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
7149
7150         * class.c: back out part of a broken optimization committed on
7151         May 23th (bug #433908).
7152
7153 2008-10-09  Mark Probst  <mark.probst@gmail.com>
7154
7155         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
7156         Win32.  Should fix #432388 for most cases until we have the new
7157         profiler on Win32.
7158
7159 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
7160
7161         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
7162         instead of using inst->id so the hash is stable for AOT.
7163
7164 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7165
7166         * appdomain.c:
7167         * icall.c: create a .ini file for shadow-copied assemblies that
7168         contains the location of the original assembly. Use this to return the
7169         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
7170         Also fix the number of '/' for windows when returning the CodeBase.
7171         Fixes bug #430920.
7172
7173 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7174
7175         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
7176
7177         Code is contributed under MIT/X11 license.
7178
7179 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7180
7181         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
7182           if if the class vtable needs initialized.
7183
7184         Code is contributed under MIT/X11 license.
7185
7186 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7187
7188         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
7189           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
7190           STRING->BSTR, and CLASS->INTERFACE.
7191
7192         Code is contributed under MIT/X11 license.
7193
7194 2008-10-07  Marek Habersack  <mhabersack@novell.com>
7195
7196         * sysmath.h: changed the declaration of the
7197         ves_icall_System_Math_Round2 icall by adding an extra
7198         away_from_zero parameter.
7199
7200         * sysmath.c (ves_icall_System_Math_Round2): added support for
7201         away from zero rounding. The icall now takes an extra boolean
7202         parameter to signal that away from zero operation is requested.
7203
7204 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
7205
7206         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
7207         the delegate klass so it can work with full-aot.
7208         (mono_marshal_get_delegate_end_invoke): Ditto.
7209         (mono_marshal_get_delegate_invoke): Ditto.
7210
7211 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
7212
7213         * gc.c, attach.h, attach.c: remove a bad pattern:
7214         add_finalizer_callback () is not implemented correctly, it can't
7215         without adding more overhead to the finalizer loop and it's not
7216         even needed, since we know exactly what we need to call, so there is
7217         no need to do so through an expensive function pointer.
7218
7219 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
7220
7221         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
7222         for the no-gc case.
7223         * attach.c (mono_attach_init): Remove the #ifdef.
7224
7225 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
7226
7227         * attach.c (mono_attach_init): Don't use
7228         mono_gc_add_finalizer_thread_callback when compiling without GC.
7229         Fixes #432306.
7230         
7231         Code is contributed under MIT/X11 license.
7232
7233 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
7234
7235         * class.c (mono_class_create_from_typedef): Remove the 
7236         #ifndef DISABLE_SIMD stuff.
7237
7238 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
7239
7240         * class-internals.h (MonoClass): Added simd_type bit field.
7241
7242         * class.c (mono_class_create_from_typedef): Check if type is a simd
7243         intrinsic.
7244
7245 2008-10-03  Mark Probst  <mark.probst@gmail.com>
7246
7247         * object.c (mono_method_add_generic_virtual_invocation): Only add
7248         instantiations to the thunk whose count is at least as large as
7249         the threshold.
7250
7251 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
7252
7253         * icall.c: changed the Type of the exception thrown when trying to
7254         invoke a constructor on an abstract class. Part of the fix for bug
7255         #324185.
7256
7257 2008-10-02  Mark Probst  <mark.probst@gmail.com>
7258
7259         * class.c, class-internals.h (mono_method_get_vtable_index): New
7260         function which returns the index into the vtable and properly
7261         handles inflated virtual generic methods.
7262
7263 2008-10-01  Mark Probst  <mark.probst@gmail.com>
7264
7265         * object.c, domain.c, object-internals.h, domain-internals.h:
7266         Generalize IMT thunk machinery to also handle thunks for virtual
7267         generic method invokes.  When a virtual generic method is invoked
7268         more than a number of times we insert it into the thunk so that it
7269         can be called without lookup in unmanaged code.
7270
7271         * generic-sharing.c, class-internals.h: Fetching a
7272         MonoGenericInst* for a method from an (M)RGCTX.
7273
7274 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
7275
7276         * marshal.c (emit_marshal_string): Applied a variant of a patch by
7277         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
7278         marshalling. Fixes #431304.
7279
7280 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
7281
7282         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
7283           handle when ref is specified without In or Out.
7284
7285         Code is contributed under MIT/X11 license.
7286
7287 2008-09-30  Mark Probst  <mark.probst@gmail.com>
7288
7289         * loader.c (mono_get_method_constrained): Don't expand method with
7290         the class's context, because it's already a method of that class.
7291
7292 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
7293
7294         * attach.c : should be correct build fix.
7295
7296 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
7297
7298         * attach.c: Fix the previous change.
7299
7300 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
7301
7302         * attach.c : quick w32 build fix.
7303
7304 2008-09-27  Miguel de Icaza  <miguel@novell.com>
7305
7306         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
7307         crashes MonoDevelop: #430455.
7308
7309 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
7310
7311         * domain-internals.h (struct _MonoDomain): Move most fields used only by
7312         the JIT do MonoJitDomainInfo in ../mini/mini.h.
7313
7314         * domain.c: Remove initialization/cleanup of the removed fields.
7315
7316 2008-09-27  Mark Probst  <mark.probst@gmail.com>
7317
7318         * class.c (mono_class_generic_sharing_enabled): Enable generic
7319         code sharing for PPC.
7320
7321 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
7322
7323         * attach.c : Fixing the Windows builds.
7324
7325         Code is contributed under MIT/X11 license.
7326
7327 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7328
7329         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
7330         the default generic sharing mode to 'all'.
7331
7332 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7333
7334         * generic-sharing.c, class-internals.h: New function for checking
7335         whether a method needs a static RGCTX invoke wrapper.  A few
7336         funtions moved from mini/generic-sharing.c.
7337
7338         * icall.c: New function used.
7339
7340 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7341
7342         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
7343         Static RGCTX invoke wrapping applies to value type methods, too.
7344
7345         * class.c (mono_class_setup_vtable_general): In generic-shared
7346         value types, wrap methods with a static RGCTX invoke wrapper.
7347
7348 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7349
7350         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
7351         osx build.
7352
7353 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
7354
7355         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
7356         register a callback which is called when the finalizer thread is woken
7357         up.
7358         (finalizer_thread): Call the callback if it exists.
7359
7360         * attach.h attach.c: New files, implementing the attach mechanism.
7361
7362         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
7363         
7364         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
7365         by the previous change.
7366
7367 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
7368
7369         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
7370         loader.c, marshal.c, metadata-internals.h, metadata.c,
7371         method-builder.c, object.c, reflection.c: introduced specific functions
7372         to allocate from the domain and image mempools and cleaned up most of
7373         the code to use them (still missing a few in reflection.c).
7374         Keep the loader bytes counter updated.
7375
7376 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
7377
7378         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
7379         loader-related counters.
7380
7381 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
7382
7383         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
7384         added more MS-compatible counters.
7385
7386 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
7387
7388         * class.c (mono_class_setup_fields): Call setup_fields before accessing
7389         class->blittable. Fixes #428217.
7390
7391 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
7392
7393         * reflection.c (mono_image_get_field_on_inst_token): Call 
7394         field_encode_signature () since that handles custom modifiers too.
7395         Fixes #424663.
7396
7397 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
7398
7399         * reflection.c (add_custom_modifiers): New helper function to merge custom
7400         modifiers stored in objects to a MonoType.
7401         (fieldref_encode_signature): Encode custom modifiers.
7402         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
7403         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
7404
7405 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
7406
7407         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
7408         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
7409         64-bit IL only images because imports are not resolved for IL only images.
7410         Special thanks to Bill Holmes for finding this bug and testing the patch.
7411         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
7412
7413         Contributed under MIT/X11 license.
7414
7415 2008-09-19  Miguel de Icaza  <miguel@novell.com>
7416
7417         * mono-config.c (dllmap_start): Add support for the bits keyword
7418         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
7419
7420 2008-09-19  Mark Probst  <mark.probst@gmail.com>
7421
7422         * reflection.c (inflate_mono_method): When the class the method is
7423         to be inflated for is itself not inflated, just return the method.
7424
7425 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
7426
7427         * mono-perfcounters.c: use more user friendly process instance names.
7428
7429 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
7430
7431         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
7432           handle "[in] ref" and "[in][out] ref" cases.
7433
7434         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
7435           to mono_mb_create_method.  This was causing problems calling native to
7436           managed passing Variants by value.
7437
7438         Code is contributed under MIT/X11 license.
7439
7440 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
7441
7442         * class.c (can_access_internals): Call mono_assembly_load_friends ()
7443         before accessing the friend_assembly_names field.
7444
7445         * assembly.c (mono_assembly_load_friends): Make this callable multiple
7446         times.
7447         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
7448         called lazily when it is needed.
7449
7450         * metadata-internals.h (struct _MonoAssembly): Add 
7451         'friend_assembly_names_inited' flag.
7452
7453 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
7454
7455         * mono-perfcounters-def.h: fix the types of a few counters.
7456         * mono-perfcounters.c: implemented the instance names getter
7457         and a few bugfixes.
7458
7459 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
7460
7461         * culture-info-table.h : regenerated.
7462
7463 2008-09-17  Robert Jordan  <robertj@gmx.net>
7464
7465         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
7466         context bound objects. Fixes #415577.
7467
7468         Code is contributed under MIT/X11 license.
7469
7470 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
7471
7472         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
7473         implementation (bug #423582).
7474
7475 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
7476
7477         * object.c (mono_object_get_virtual_method): Handle the case method->slot
7478         is not set. Fixes #426309.
7479
7480 2008-09-16  Jb Evain  <jbevain@novell.com>
7481
7482         * class.c (mono_class_from_name): fix the exported type look up
7483         when the type is defined in a referenced assembly.
7484
7485 2008-09-16  Jb Evain  <jbevain@novell.com>
7486
7487         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
7488         increment the next index counter on each iteration to make that work
7489         for more than one type forwarder. Unmanaged part to fix #422929.
7490
7491 2008-09-15  Mark Probst  <mark.probst@gmail.com>
7492
7493         * object-internals.h: enum ComInterfaceType in
7494         MonoInterfaceTypeAttribute is guint32, not guint16.
7495
7496 2008-09-12  Mark Probst  <mark.probst@gmail.com>
7497
7498         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
7499         writing code.
7500
7501 2008-09-11  Mark Probst  <mark.probst@gmail.com>
7502
7503         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
7504         not gboolean.
7505
7506 2008-09-11  Mark Probst  <mark.probst@gmail.com>
7507
7508         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
7509         Endianness fixes for MonoSymbolFileOffsetTable.
7510
7511 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
7512
7513         * process.c (complete_path) : Removing quotes from the 
7514           input path.  The glib file routines do not handle file paths
7515           that have quotes around them.
7516
7517         Code is contributed under MIT/X11 license.
7518
7519 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
7520
7521         * socket-io.h : Adding a comment to provide locations where 
7522           changes to MonoSocketAsyncResult need to be synced.
7523
7524         Code is contributed under MIT/X11 license.
7525
7526 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
7527
7528         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
7529         parameters as well. Fixes #425001.
7530
7531 2008-09-08  Miguel de Icaza  <miguel@novell.com>
7532
7533         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
7534         windows build.
7535
7536 2008-09-07  Miguel de Icaza  <miguel@novell.com>
7537
7538         * console-io.c: Add support for tracking the window size if it
7539         changes.
7540
7541         The setup is very simple: the TtySetup function will now return a
7542         pointer to a location in memory that tracks the current console
7543         size.  The managed code checks its current value every time its
7544         queried against the last value set, and updates accordingly.
7545
7546         With this setup we can work with multiple consoles, and we do not
7547         require to poke into managed code from a signal handler.
7548
7549         Additionally, the environment for COLUMNS and LINES is now handled
7550         in unmanaged code.
7551
7552         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
7553
7554 2008-09-07  Mark Probst  <mark.probst@gmail.com>
7555
7556         * marshal.c (mono_type_native_stack_size): Treat
7557         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
7558
7559 2008-09-04  Jb Evain  <jbevain@novell.com>
7560
7561         * class.c (mono_class_is_assignable_from): fix assignability of nullables
7562         to nullables.
7563
7564 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
7565
7566         * verify.c (verify_type_compatibility_full): Revert change
7567         to allow converting a native int to unmanaged pointer be verifiable
7568         under non-strict mode.
7569         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
7570
7571         * verify.c: Added some TODOs.
7572
7573 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
7574
7575         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
7576           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
7577           Changed to use GlobalAlloc for the memory returned on Windows platforms.
7578
7579         Code is contributed under MIT/X11 license.
7580
7581 2008-09-02  Jb Evain  <jbevain@novell.com>
7582
7583         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
7584
7585 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
7586
7587         reflection.c (typebuilder_setup_fields): Handle classes with
7588         explicit size.
7589
7590 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
7591
7592         class.c (mono_class_setup_events): Add memory barrier due to
7593         double checked locking.
7594         
7595         class.c (mono_class_setup_properties): Same.
7596
7597 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
7598
7599         * class.c (mono_class_is_assignable_from): Fix the build.
7600         
7601         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
7602         before accessing klass->interface_bitmap. Fixes #421744.
7603
7604 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
7605
7606         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
7607         the runtime into no-exec mode, useful when running the AOT compiler.
7608
7609         * appdomain.c gc.c object.c: Avoid executing managed code when running
7610         in no-exec mode.
7611         
7612         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
7613
7614         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
7615         special case when the mono_assembly_loaded () returns NULL because the 
7616         search hook is not installed.
7617
7618 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
7619
7620         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
7621         crashes in bstr marshalling on linux.
7622
7623 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
7624
7625         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
7626         with more than one parameter.
7627
7628 2008-08-24  Miguel de Icaza  <miguel@novell.com>
7629
7630         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
7631         start/stop flow control as well when turning off ICANON (allows
7632         C-s and C-q to be read by Console.ReadKey).
7633
7634 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
7635
7636         * class.c (mono_class_init): Move the initialization of nested classes
7637         into mono_class_get_nested_types (). Fixes #418433.
7638
7639         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
7640         flag.
7641
7642         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
7643         iterating tough the nested classes of a class.
7644
7645 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
7646
7647         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
7648         on arm.
7649
7650 2008-08-22  Miguel de Icaza  <miguel@novell.com>
7651
7652         * console-io.c (sigcont_handler): Support signal chaining for
7653         SIGCONT.
7654
7655         (console_set_signal_handlers): Use best practices with sigaction,
7656         clear the structure before using it. 
7657
7658 2008-08-22  Robert Jordan  <robertj@gmx.net>
7659
7660         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
7661         Fix the Windows build.
7662
7663 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
7664
7665         * class.c (mono_class_generic_sharing_enabled): Make the default
7666         sharing mode 'corlib'.
7667
7668 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
7669
7670         * console-io.c (console_set_signal_handlers): Fix a warning.
7671
7672         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
7673         method normally, the JIT will take care of avoiding recursion.
7674
7675 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
7676
7677         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
7678
7679         Code is contributed under MIT/X11 license.
7680
7681 2008-08-20  Miguel de Icaza  <miguel@novell.com>
7682
7683         * console-io.c (sigcont_handler): We need to restore the entire
7684         termios state, not only the original settings, as things like echo
7685         can be controlled after this (Booish exposes this issue with its
7686         own ReadLine implementation).
7687
7688         Additionally, we need to set the terminal back into keypad_xmit
7689         mode.
7690         
7691         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
7692         string as a paramter as well.   Otherwise we get different
7693         keyboard sequences.
7694
7695 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
7696
7697         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
7698         delegates with byref out parameter passing. Fixes #351520.
7699
7700         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
7701         a generic context.
7702         (mono_type_get_desc): Add the type arguments for GENERICINST.
7703         (mono_method_full_name): Stringify the class name using mono_type_full_name
7704         so it picks up generic arguments.
7705
7706 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
7707
7708         * console-io.c: Removed debug output.
7709
7710 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
7711
7712         reflection.c (mono_reflection_create_runtime_class): Alloc
7713         the nested classes linked list using the dynamic image mempool.
7714         Fixes leak in corlib compilation.
7715
7716 2008-08-19  Miguel de Icaza  <miguel@novell.com>
7717
7718         * console-io.c: Fix incredibly annoying behavior on the console
7719         after resuming execution after control-z.   This affected every
7720         console application.
7721
7722 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
7723
7724         * mempool-internals.h: Header for mono private mempool functions. The first
7725         two function are for allocating glib linked lists using pools.
7726
7727         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
7728
7729         * Makefile.am: Added mempool-internals.h.
7730
7731 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
7732
7733         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
7734         (mono_domain_free): Ditto.
7735
7736         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
7737         be used by the JIT to store its domain-specific information, instead of putting
7738         it directly into MonoDomain.
7739
7740         * domain.c (mono_install_create_domain_hook): New helper function to install
7741         a hook which initializes domain->runtime_info.
7742
7743         * domain.c (mono_install_free_domain_hook): Ditto.
7744         
7745 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
7746
7747         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
7748         asserting if the ares parameter is null.
7749
7750         * mono-perfcounters.c: Fix warnings.
7751
7752         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
7753         is not needed, don't check for interruptions either.
7754         (mono_marshal_get_delegate_end_invoke): Ditto.
7755
7756 2008-08-15  Marek Habersack  <mhabersack@novell.com>
7757
7758         * mono-perfcounters.c (predef_readonly_counter): added support for
7759         reading the ASP.NET Requests Queued counter from another process.
7760
7761 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
7762
7763         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
7764         MonoImage to simplify the AOT code.
7765
7766 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
7767
7768         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
7769         marshalling. Fixes #416078.
7770
7771 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
7772         
7773         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
7774         it is set, looking up the icall address is deferred to the JIT, since 
7775         in embedded scenarios, the icall might not be registered in the runtime
7776         doing the AOT compilation. Backported from the 2.0 branch.
7777
7778 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
7779
7780         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
7781         Fixes #415621.
7782
7783 2008-08-05  Marek Habersack  <mhabersack@novell.com>
7784
7785         * Makefile.am: added support for cross-compilation.
7786
7787 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
7788
7789         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
7790
7791 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
7792
7793         * mono-perfcounters.c: jitted methods and jitted bytes counters.
7794
7795 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
7796
7797         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
7798         mono-perfcounters.c: performance counters implementation.
7799
7800 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
7801
7802         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
7803         to gpointer, letting the AOT code decide what to store in it.
7804
7805 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
7806
7807         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
7808           mono_class_setup_methods if the methods are not initialized.
7809
7810         Code is contributed under MIT/X11 license.
7811
7812 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7813
7814         * verify.c: Remove some debug code I commited by accident.
7815
7816         * verify.c (mono_method_is_valid_in_context): Change the return value
7817         to make possible to distinguish between invalid and unverifiable.
7818
7819         * verify.c (verifier_load_method): Don't return NULL for unverifiable
7820         methods.
7821
7822 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7823
7824         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
7825         constraints. Fixes regression in gtest-253.
7826
7827 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7828
7829         * verify.c (mono_verifier_verify_class): Don't allow generic types
7830         with explicit layout.
7831
7832         * verify.c (mono_method_verify): Check locals and argument types.
7833
7834 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
7835
7836         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
7837         wait if the thread is in StopRequested state.
7838
7839         * class.c (mono_class_from_name): Refactor the module searching code into
7840         a separate function so it can be reused in the AOT case too.
7841
7842 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
7843
7844         * verify.c (mono_type_is_valid_in_context): Improve the error message.
7845         Check both the type and it's generic type definition for loader errors.
7846         
7847         * verify.c (mono_method_is_valid_in_context): Don't generate another
7848         error when a type errors occur, this leads to the wrong exception been
7849         thrown.
7850
7851 2008-07-28  Dick Porter  <dick@ximian.com>
7852
7853         * icall-def.h
7854         * process.c
7855         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
7856         New internal calls to duplicate and close a process handle.
7857
7858 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
7859
7860         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
7861
7862 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
7863
7864         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
7865
7866 2008-07-27  Robert Jordan  <robertj@gmx.net>
7867
7868         * class.c (mono_class_init): Don't compute class.has_finalize for
7869         valuetypes. Fixes #412477.
7870
7871 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
7872
7873         * verify.c: Implement constraint equivalence checking.
7874         This is required when a generic parameter is used as
7875         argument to a constrained one.
7876
7877         Fixes #410637.
7878
7879 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
7880
7881         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7882
7883         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
7884
7885         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
7886         synch with managed object layout.
7887
7888 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
7889
7890         * verify.c (do_branch_op): Handle valuetypes and generic
7891         arguments properly.
7892
7893         * verify.c (do_cmp_op): Same.
7894
7895         Fixes #410383.
7896
7897 2008-07-24  Mark Probst  <mark.probst@gmail.com>
7898
7899         * generic-sharing.c: Fix memory leaks.
7900
7901         * class.c, class-internals.h: Make
7902         mono_class_inflate_generic_type_with_mempool() non-static.
7903
7904 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
7905
7906         * pedump.c (dump_verify_info): Dump full class name.
7907
7908 2008-07-24  Mark Probst  <mark.probst@gmail.com>
7909
7910         * generic-sharing.c: Removed some old code that didn't do anything.
7911
7912 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
7913         * profiler.c: Added runtime_initialized_event,
7914         mono_profiler_install_runtime_initialized and
7915         mono_profiler_runtime_initialized. This new hook tells the profiler
7916         when the runtime is sufficiently initialized to be able to call
7917         mono_thread_attach on the root appdomain.
7918         * profiler.h, profiler-private.h: Likewise.
7919
7920 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
7921
7922         * verify.c (do_cast): Do boxing for generic arguments as well.
7923
7924         * class.c (is_nesting_type): Drop generic instantiations before
7925         checking for nesting.
7926
7927         * class.c (can_access_instantiation): Allow access to generic
7928         arguments.
7929
7930 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
7931
7932         * verify.c (verify_class_for_overlapping_reference_fields):
7933         On some cases, the field size might be zero, guard against that.
7934         Fix the explicit layout check to work as expected.
7935
7936 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
7937
7938         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
7939         mono_thread_resume () during shutdown, since the thread we want to abort
7940         might be suspended.
7941
7942 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
7943
7944         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
7945         warning.
7946
7947         * debug-mono-symfile.c: Fix a warning.
7948
7949         * mono-perfcounters.c (get_cpu_times): Fix a warning.
7950
7951         * object.c (mono_class_vtable): Check if exception_type is set, and return
7952         NULL as defined by the function comments.
7953
7954 2008-07-22  Mark Probst  <mark.probst@gmail.com>
7955
7956         * mempool.c: Use malloc for every single mempool allocation if the
7957         configure option is set.  This makes it easier to track mempool
7958         allocations with tools like Valgrind.
7959
7960 2008-07-22  Jb Evain  <jbevain@novell.com>
7961
7962         * reflection.c (create_dynamic_mono_image): emit the same
7963         metadata version that SL2 does when creating a SL2 image.
7964
7965 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
7966
7967         * icall-def.h:
7968         * icall.c: New icall System.Enum:get_hashcode. This function
7969         avoids the overhead of boxing the enum to the underlying type.
7970
7971 2008-07-21  Mark Probst  <mark.probst@gmail.com>
7972
7973         * reflection.c (mono_method_get_object): Don't let static RGCTX
7974         invoke wrappers get into MonoReflectionMethods.
7975
7976 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
7977
7978         * object-internals.h:
7979         * object.c: New mono_runtime_class_init_full function
7980         that makes throwing the exception optinal.
7981
7982         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
7983         for the case where the exception object is supplied.
7984
7985 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
7986
7987         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
7988         old ld versions.
7989
7990         Contributed under MIT/X11 license.
7991
7992 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
7993
7994         * string-icalls.c (ves_icall_System_String_InternalSplit):
7995         Optimize array allocation by caching the MonoClass of the
7996         array type.
7997
7998         * icall.c (ves_icall_Type_GetMethodsByName): Same.
7999
8000         * reflection.c (mono_param_get_objects): Same.
8001
8002 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
8003
8004         * icall-def.h:
8005         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
8006         It inflates the given type using the class context.
8007
8008 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
8009
8010         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
8011         the vtable if it already exists.
8012
8013         * object-internals.h: Add mono_class_try_get_vtable as part of the
8014         internal API.
8015
8016         * reflection.c (mono_type_get_object): Use the MonoObject from the
8017         vtable when possible. Reduces locking contention on reflection heavy
8018         code.
8019
8020 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
8021
8022         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
8023         g_bit_nth_msf () since that macro is not implemented in eglib.
8024
8025 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
8026
8027         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
8028         on platforms which do not support it.
8029
8030 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
8031
8032         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
8033
8034 2008-07-11  Martin Baulig  <martin@ximian.com>
8035
8036         * mono-debug-debugger.h
8037         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
8038
8039         * mono-debug-debugger.c
8040         (_mono_debugger_interruption_request): New global volatile variable.
8041         (mono_debugger_check_interruption): New public function.
8042
8043         * threads.c
8044         (mono_thread_current_check_pending_interrupt): Call
8045         mono_debugger_check_interruption().
8046         (mono_thread_interruption_checkpoint_request): Likewise.
8047
8048 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8049
8050         * verify.c: Add more type checks for loaded types. Verify the result
8051         handle from ldtoken.
8052
8053 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8054
8055         * loader.c (field_from_memberref): Don't crash if the field
8056         wasn't found.
8057
8058 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8059
8060         * verify.c: Verify if type and method instantiations
8061         don't have invalid VAR or MVAR arguments.
8062
8063 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8064
8065         * verify.c: Fix double free of function pointer list.
8066
8067 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8068
8069         * object.c (mono_string_to_utf8): Comment the new code as it
8070         breaks under eglib.
8071
8072 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
8073
8074         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
8075
8076 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
8077
8078         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
8079           is not throw too many times.
8080
8081         Code is contributed under MIT/X11 license.
8082
8083 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
8084
8085         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
8086         debugging is turned off.
8087
8088 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
8089
8090         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
8091
8092 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8093
8094         * class-internals.h, class.c: Added new generic sharing option:
8095         Share only stuff in System.Collections.Generic, which is now the
8096         default.
8097
8098 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8099
8100         * generic-sharing.c, class-internals.h: New function for getting a
8101         generic method in a generic class given the corresponding method
8102         for a different instantiation of the class.  Partly refactored
8103         from mini-trampolines.c.
8104
8105         * class.c: Make sure generic methods have a class_inst if they are
8106         part of a generic class.
8107
8108         * metadata.c (mono_type_stack_size_internal): Handle type
8109         variables.
8110
8111 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8112
8113         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
8114         Signifies whether information on the this/vtable/mrgctx variable
8115         is available.
8116
8117 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8118
8119         * object.c, object-internals.h, icall.c: New function
8120         mono_delegate_ctor_with_method(), which does the same as
8121         mono_delegate_ctor(), but takes an explicit method argument
8122         instead of taking the method from the jit info.
8123
8124         * marshal.c: When creating a delegate with an inflated method take
8125         the "this" argument as the target class for the castclass.
8126
8127 2008-07-03  Mark Probst  <mark.probst@gmail.com>
8128
8129         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
8130         mono_jit_info_table_find() to perform very badly in some cases.
8131
8132 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
8133
8134         * icall.c (type_from_typename): Handle 'string'.
8135
8136         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
8137         wrappers into the wrapper_hash, since the key is not a MonoMethod.
8138
8139 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
8140
8141         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
8142
8143         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
8144         number of available managed allocator types.
8145
8146         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
8147         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
8148
8149 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
8150
8151         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
8152         which is a low level lock protecting just the 'jit_code_hash' hash table.
8153
8154         * domain.c: Initialize+cleanup jit_code_hash_lock.
8155         
8156 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8157
8158         * coree.c (mono_load_coree): Set coree_module_handle global variable only
8159         after initialization.
8160
8161         * coree.h: Make MonoFixupExe internal.
8162
8163         Contributed under MIT/X11 license.
8164
8165 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8166
8167         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
8168         because that is platform independent. Check NumberOfRvaAndSizes in PE32
8169         as well.
8170         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
8171         image being loaded is a CLI image and _CorValidateImage gets called.
8172
8173         * coree.h: Add MonoLoadImage.
8174
8175         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
8176         instead of LoadLibrary.
8177
8178         Contributed under MIT/X11 license.
8179
8180 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
8181
8182         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
8183         for any primitive type.
8184
8185 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
8186
8187         * object.c (mono_array_new_specific): Optimize this and the other allocation
8188         functions a bit.
8189         
8190         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
8191         domains too if mono_dont_free_domains is set.
8192
8193         * domain-internals.h (mono_dont_free_domains): New internal option controlling
8194         whenever to free appdomain data after it has been unloaded.
8195
8196         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
8197         
8198 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
8199
8200         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
8201         (mono_method_get_equivalent_method): Fix a warning.
8202
8203         * object.c (mono_message_init): Avoid looking up array types for each call.
8204
8205 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
8206
8207         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
8208         call.
8209
8210         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
8211         even more.
8212
8213         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
8214         each iteration.
8215
8216         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
8217         fields of an enum.
8218
8219 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
8220
8221         * object.c (mono_value_box): Fix boxing of nullables.
8222
8223 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
8224
8225         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
8226         mono_module_handle that is defined by the linker; no initialization required.
8227         * coree.h: Remove mono_module_handle, add __ImageBase, update
8228         mono_image_open_from_module_handle.
8229         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
8230         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
8231         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
8232         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
8233         to 4 GB away from image base address. IA64 version is not tested but was very
8234         easy to implement and should work if we ever need it.
8235         * domain.c (mono_init_internal): Avoid system error message boxes.
8236         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
8237         with has_entry_point. Handle do_mono_image_load fauilre correctly.
8238         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
8239         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
8240         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
8241
8242         Contributed under MIT/X11 license.
8243
8244 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8245
8246         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
8247         as part of the private mono API.
8248         
8249         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
8250         Do proper argument checking for methods that belong to generic classes.
8251         Do proper type resolution for GMFH/2.
8252         Fixes #377324.
8253         
8254 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8255
8256         * verify.c (do_switch): Fix a memory corruption bug with
8257         the jump index is out of bound.
8258
8259 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8260
8261         * verify.c: Disable debug code.
8262
8263 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8264
8265         * reflection.c (mono_image_get_methodbuilder_token): Use
8266         mono_image_get_methodspec_token_for_generic_method_definition
8267         instead of mono_image_get_memberref_token. We cache more memberef
8268         entries now.
8269
8270 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8271
8272         * verify.c: Inflate exception clause types.
8273         Fixes #402606.
8274         
8275 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8276
8277         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
8278         name.
8279
8280         * reflection.c (mono_image_get_ctorbuilder_token): Same.
8281
8282         * reflection.c (mono_image_create_method_token): Same.
8283
8284 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8285
8286         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
8287         It does the same as mono_image_get_methodref_token but works on
8288         MethodBuilder.
8289
8290         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
8291         and always generate a methodspec. This follows the old behavior and fixes
8292         the regressions in System.Core. 
8293
8294 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
8295
8296         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
8297         don't event mono_class_get () succeeds. Fixes #402182.
8298
8299 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
8300
8301         * metadata-internals.h: Added MonoDynamicImage::methodspec
8302         hashtable to store methodspec tokens created for MethodBuilders.
8303
8304         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
8305         MethodBuilders as open instantiations if a methodspec was requested.
8306
8307         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
8308
8309         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
8310
8311         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
8312
8313         Fixes bug #349190.
8314
8315 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
8316
8317         * loader.c (method_from_methodspec): Avoid crashing if the
8318         method lookup fails.
8319
8320 2008-06-20  Dick Porter  <dick@ximian.com>
8321
8322         * socket-io.c (get_socket_assembly): Cope with Moonlight network
8323         classes being in a different assembly.  Fixes bug 399184.
8324
8325 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
8326
8327         * loader.c (mono_loader_init): Make this callable multiple times.
8328         (mono_dllmap_insert): Call mono_loader_init () so this works even before
8329         the runtime is initialized. Fixes #401755.
8330
8331 2008-06-19  Dick Porter  <dick@ximian.com>
8332
8333         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
8334         Fixes bug 349688.
8335
8336 2008-06-19  Dick Porter  <dick@ximian.com>
8337
8338         * socket-io.c:
8339         * icall-def.h: Implement Socket generic Send() and Receive()
8340         methods.  Fixes bug 395168.
8341
8342 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
8343
8344         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
8345
8346         Contributed under MIT/X11 license.
8347
8348 2008-06-18  Martin Baulig  <martin@ximian.com>
8349
8350         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
8351         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
8352         set to 80.0.  The debugger <-> runtime interface is now frozen as
8353         well.   
8354
8355         * mono-debug.c
8356         (mono_debug_debugger_version): Bump to 4.
8357
8358 2008-06-18  Martin Baulig  <martin@ximian.com>
8359
8360         * debug-mono-symfile.c
8361         (load_symfile): Don't check the minor version.
8362
8363         * debug-mono-symfile.h: Bump the version number to 50.0.
8364
8365 2008-06-18  Martin Baulig  <martin@ximian.com>
8366
8367         * debug-mono-symfile.c
8368         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
8369         minimum required version.
8370
8371 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8372
8373         * reflection.c (mono_custom_attrs_from_property): Fix support for
8374         retriveving cattrs of dynamic inflated generic types.
8375
8376         * reflection.c (mono_custom_attrs_from_event): Same.
8377
8378         * reflection.c (mono_custom_attrs_from_field): Same;
8379
8380         * reflection.c (typebuilder_setup_events): Same cattrs of events.
8381
8382         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
8383         Moved to metadata.c.
8384
8385         * metadata.c: New functions to retrive the equivalent field, event
8386         of property from the generic type definition.
8387
8388         * metadata-internals.h: Added new functions from metadata.c.
8389
8390 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8391
8392         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
8393         to cached in a mempool is used.
8394
8395         * metadata.c (free_generic_class): In some situations field generic_info type
8396         is not properly dup'ed and leads to double free'ing.
8397
8398         Fixes #400643.
8399
8400 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8401
8402         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
8403         this arguments (will be needed later for generic methods).
8404         Collect stats.
8405
8406 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8407
8408         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
8409         Create a static RGCTX invoke wrapper for methods which require it.
8410
8411 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8412
8413         * object.c, class-internals.h: New function for checking whether
8414         an individual field is special static.
8415
8416 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
8417
8418         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
8419         linear search since the table is sorted.
8420
8421         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
8422         Fixes #324180.
8423
8424 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
8425
8426         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
8427         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
8428
8429         * gc.c (mono_domain_finalize): Allow an infinite timeout.
8430
8431         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
8432         
8433         * threads.c (mono_thread_request_interruption): Get rid of locking, use
8434         InterlockedCompareExchange to query and modify 
8435         thread->interruption_requested.
8436
8437         * object-internals.h (struct _MonoThread): Change interruption_requested
8438         to a gint32 so it can be modified by atomic operations. Add 
8439         'critical_region_level' from the managed side, change small_id to a guint32,
8440         add new set of 'unused' fields.
8441
8442         * appdomain.c: Bump corlib version.
8443
8444 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
8445
8446         * class.c (mono_class_from_name): Search modules as well. Fixes
8447         #322332.
8448
8449 2008-06-13  Mark Probst  <mark.probst@gmail.com>
8450
8451         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
8452         templates.  Templates are generalized with an additional type_argc
8453         argument.  RGCTX templates have type_argc==0, MRGCTX templates
8454         have type_argc>0.
8455
8456         * domain-internals.h, domain.c: New hash table for looking up
8457         MRGCTXs.
8458
8459         * metadata.c, metadata-internals.h: Rename hash and equal
8460         functions for MonoGenericInst's and make them public.
8461
8462         * class-internals.h: New data structures for the MRGCTX.  Macros
8463         for distinguishing slots in the RGCTX and the MRGCTX.
8464
8465 2008-06-13  Mark Probst  <mark.probst@gmail.com>
8466
8467         * object.c (mono_method_get_imt_slot): Put the same methods of
8468         different instantiations of the same generic interface in the same
8469         IMT slots, to make generic sharing simpler.
8470
8471 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8472
8473         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
8474
8475         * metadata.c (mono_metadata_field_info_with_mempool): Added.
8476         This function works just like mono_metadata_field_info, but
8477         accept a mempool as argument to be used allocating memory.
8478
8479         * marshal.c (mono_marshal_load_type_info): Use new function
8480         to load marshal data into image mempool.
8481
8482 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8483
8484         * class.c (mono_class_inflate_generic_type_with_mempool):
8485         This function allows to inflate a generic type using
8486         a mempool.
8487
8488         * class.c (inflate_generic_type): Take a mempool as argument
8489         and use it to do type dup'ing.
8490
8491         * class.c (mono_class_setup_fields): Field type for generic
8492         generic classes are allocated from the image mempool.
8493
8494         * metadata.c (free_generic_class): Inflated field type is
8495         now allocated in the image mempool.
8496
8497 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8498
8499         * threads.c (thread_cleanup): Free MonoThread::name.
8500
8501 2008-06-12  Marek Habersack  <mhabersack@novell.com>
8502
8503         * appdomain.c (ensure_directory_exists): avoid unnecessary
8504         mkdir(2) calls when the shadow directory already exists.
8505         (mono_make_shadow_copy): copy also satellite assemblies from the
8506         private bin directories.
8507
8508 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
8509
8510         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
8511         
8512         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
8513         a page boundary. Fixes #396219.
8514
8515 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8516
8517         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
8518         due to double-checked locking.
8519
8520 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8521
8522         * assembly.c (build_assembly_name): Release memory on failure.
8523
8524         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
8525
8526 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8527
8528         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
8529         memory on failure.
8530
8531 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8532
8533         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
8534         memory on failure.
8535
8536 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8537
8538         * loader.c (field_from_memberref): Check if field signature type is equal
8539         to the non-inflated type of the field. Fixes #398980.
8540
8541 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
8542
8543         * assembly.c (mono_assembly_load_from_full): Call 
8544         mono_assembly_load_friends () outside the assemblies lock, since it can
8545         acquire the loader lock. Fixes #323696.
8546
8547         * reflection.c (resolve_object): Inflate the inst with the context for
8548         FieldOnTypeBuilderInst. Fixes #399010.
8549
8550 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8551
8552         * reflection.c (mono_image_get_field_on_inst_token): Don't
8553         inflate the field to encode it's signature. If it's a
8554         VAR or MVAR it should stay that way in the signature.
8555         Fixes #399047.
8556
8557 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8558
8559         * reflection.c (resolve_object): Release memory of inflated types.
8560
8561 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8562
8563         * loader.c (mono_method_get_signature_full): Remove assert about
8564         loading a methodspec to a generic method. We have such methods, such as
8565         System.Threading.Interlocked::CompareExchange<T>.
8566         This assert was removed since it crashes the verifier when it checks
8567         methods calling CompareExchange<T>.
8568
8569 2008-06-10  Marek Safar  <marek.safar@gmail.com>
8570
8571         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
8572         of Type array and not MonoType.
8573
8574 2008-06-10  Marek Habersack  <mhabersack@novell.com>
8575
8576         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
8577         <lupus@ximian.com>
8578
8579 2008-06-10  Martin Baulig  <martin@ximian.com>
8580
8581         * debug-mono-symfile.h
8582         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
8583         changes to the file format, but we were generating incorrect
8584         source file indices in the line number table due to a bug, which
8585         made backtraces report an incorrect source file.
8586
8587 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8588
8589         * mono-debug.c: Moved mono_debug_free_method_jit_info from
8590         mini/debug-mini.c to here.
8591
8592         * mono-debug.c (il_offset_from_address): Free memory from find_method.
8593
8594         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
8595         use it to release structs returned by mono_debug_find_method.
8596
8597 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
8598
8599         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
8600         since it needs to set method->slot for all interface methods.
8601
8602 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8603
8604         * class-internals.h: Forgot to add.
8605
8606 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8607
8608         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
8609
8610         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
8611         Lookup the custom attributes from property_hash.
8612
8613         * reflection.c (mono_save_custom_attrs): Save the custom attributes
8614         in property_hash. Allocate all data using the image mempool.
8615
8616         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
8617         for dynamic_custom_attrs to checks if the image is dynamic.
8618
8619 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
8620
8621         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
8622         assemblies array.
8623         
8624         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
8625         runtime functions while holding the domain assemblies lock.
8626
8627 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8628
8629         * verify.c: Reapplied the last bit of the reverted changes.
8630
8631 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8632
8633         * verify.c: Reapplied more of the reverted changes.
8634
8635 2008-06-09  Martin Baulig  <martin@ximian.com>
8636
8637         * debug-mono-symfile.c (load_symfile): Check the major version
8638         first; if it's wrong, don't print the minor version in the error message.
8639
8640 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
8641
8642         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
8643         lock instead of the domain lock to avoid deadlocks, since the thread might
8644         already hold the loader lock.
8645
8646         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
8647         (mono_thread_attach): Ditto.
8648
8649         * monitor.c: Use a TLS variable for holding the current thread id instead
8650         of calling pthread_self ().
8651         (mono_monitor_init_tls): New internal function to initialize the TLS
8652         variable.
8653         (mono_monitor_try_enter_internal): Put the owner == id check after the
8654         owner == 0 check.
8655
8656         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
8657         missed optimizations when using gcc-4.3.
8658
8659 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
8660
8661         * reflection.c (mono_dynamic_image_free): Free the memory
8662         used by MonoGenericParam in MonoDynamicImage::gen_param.
8663
8664         * reflection.c (mono_reflection_setup_generic_class): Allocate
8665         container from mempool.
8666
8667         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
8668         container from mempool.
8669
8670 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
8671
8672         * threads.c (mono_set_pending_exception): New internal function to set the
8673         pending exception of the current thread.
8674         (mono_thread_get_and_clear_pending_exception): Check for 
8675         thread->pending_exception as well.
8676
8677         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
8678
8679         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
8680         it can trigger a collection.
8681
8682 2008-06-06  Martin Baulig  <martin@ximian.com>
8683
8684         Merged the `debugger-kahalo' branch.
8685
8686         * mono-debug.h
8687         (MONO_DEBUGGER_VERSION): Bumped to 72.
8688
8689         * debug-mono-symfile.h
8690         (MonoSymbolFileMethodIndexEntry): Removed.
8691         (MonoSymbolFileMethodEntry): New public typedef.
8692         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
8693         (MonoSymbolFileSourceEntry): Remove everything except `index' and
8694         `data_offset'.
8695         (MonoSymbolFileMethodEntry): Removed.
8696         (MonoSymbolFileLexicalBlockEntry): Removed.
8697         (MonoSymbolFileLineNumberEntry): Removed.
8698         (MonoDebugLexicalBlockEntry): Removed.
8699         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
8700         removed `num_il_offsets' and `il_offsets'.
8701         (MonoSymbolFile): Replace `version' with `major_version' and
8702         `minor_version'.
8703         (MONO_SYMBOL_FILE_VERSION): Replace with
8704         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
8705         `MONO_SYMBOL_FILE_MINOR_VERSION'.
8706
8707         * debug-mono-symfile.c
8708         (mono_debug_symfile_lookup_location): Add support for the new line
8709         number table format.
8710
8711 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8712
8713         * metadata.c (free_generic_class): Release the inflated
8714         MonoClass of dynamic generic classes if it's not a generic
8715         type definition.
8716
8717 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8718
8719         * verify.c: Reapplied more of the reverted changes.
8720
8721 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8722
8723         * reflection.c (lookup_custom_attr): Clean the cached flag or
8724         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
8725         for SRE types.
8726
8727 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8728
8729         * verify.c: Reapplied a small part of the reverted changes.
8730
8731 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
8732
8733         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8734
8735         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
8736         previously in managed code.
8737         (mono_monitor_exit): Ditto.
8738         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
8739
8740         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
8741         the managed definition.
8742
8743 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
8744
8745         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
8746
8747 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
8748
8749         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
8750         
8751         * monitor.c: Add some micro optimizations.
8752
8753         * icall.c (type_from_typename): Handle 'bool'.
8754
8755 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
8756
8757         * verify.c: Implement constructor verification per P III 1.8.1.4.
8758         Fixes #396716.
8759
8760 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
8761
8762         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
8763         holding the assemblies lock here too.
8764
8765 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8766
8767         * verify.c: Kill stack_top function.
8768
8769 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8770
8771         * verify.c: Kill stack_get function.
8772
8773 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8774
8775         * verify.c (mono_method_verify): Last change broke the build. Fixed.
8776
8777 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8778
8779         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
8780         more reliable.
8781
8782         * verify.c (mono_method_verify): Inflate params and locals to avoid
8783         mismatch when checking for compatibility.
8784
8785 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
8786
8787         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
8788         Length prefix should be size in bytes. Fix bug #339530.
8789         
8790         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
8791         Length prefix should be size in bytes. Fix bug #339530.
8792
8793         Code is contributed under MIT/X11 license.
8794
8795 2008-06-05  Bill Holmes <billholmes54@gmail.com>
8796
8797         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
8798
8799         Contributed under MIT/X11 license.
8800
8801 2008-06-05  Martin Baulig  <martin@ximian.com>
8802
8803         * mono-debug-debugger.c
8804         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
8805
8806 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
8807
8808         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
8809         while holding the assemblies lock to prevent deadlocks. Handle the case
8810         where the search hook returns NULL but the assembly was still loaded.
8811         Fixes #323696.
8812
8813         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
8814         modify domain state.
8815
8816 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
8817
8818         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
8819         * Makefile.am (pedump_LDADD): Post-process object files and
8820         add dtrace-generated object file, if necessary.
8821
8822         Code is contributed under MIT/X11 license.
8823
8824 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8825
8826         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
8827
8828 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8829
8830         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
8831
8832 2008-06-04  Mark Probst  <mark.probst@gmail.com>
8833
8834         * threads.c: Try to free everything from the delayed free table
8835         when shutting down threads, and set the variable to NULL after the
8836         table is freed so that calling
8837         mono_thread_hazardous_try_free_all() when shutting down the root
8838         domain doesn't crash.
8839
8840 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8841
8842         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
8843         the caller if resulting type was inflated.
8844
8845         * class.c (mono_class_create_from_typespec): Free the MonoType if it
8846         was inflated.
8847
8848         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
8849
8850
8851 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
8852
8853         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
8854         class library tests.
8855
8856         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
8857         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
8858         #396989.
8859
8860 2008-06-04  Mark Probst  <mark.probst@gmail.com>
8861
8862         * domain.c, domain-internals.h: The JIT infos are now freed by the
8863         JIT info table code.  They are freed immediately if there only a
8864         single JIT info table in circulation.  If there is more, the free
8865         is delayed via a queue.
8866
8867         * threads.c, threads-types.h: New hazard pointer function for
8868         freeing all freeable delayed items in one sitting.
8869
8870 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8871
8872         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
8873
8874         * reflection.c (typebuilder_setup_properties): Same.
8875
8876         * reflection.c (typebuilder_setup_events): Same.
8877
8878 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8879
8880         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
8881         and use it for allocating memory.
8882
8883         * reflection.c (mono_marshal_spec_from_builder): Same.
8884
8885         * reflection.c: Change code to use new signatures.
8886
8887         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
8888
8889 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8890
8891         * decimal.c (rescale128): Put back one line which was accidently commented
8892         out.
8893         
8894         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
8895         to cause crashes.
8896
8897 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8898
8899         * reflection.c (mono_reflection_generic_class_initialize): Name must
8900         be always malloc'ed so we can free it later on. Do this for field, property
8901         and event.
8902
8903         * metadata.c (free_generic_class): Free field, property and event names.
8904
8905 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8906
8907         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
8908         instead of g_memdup.
8909
8910         * reflection.c (typebuilder_setup_fields): Same.
8911
8912 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8913
8914         * decimal.c (rescale128): Optimize this function a bit more.
8915
8916 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8917
8918         * metadata.c (free_generic_class): Release some memory from
8919         SRE generic classes.
8920
8921 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8922
8923         * reflection.c (mono_image_get_generic_field_token): No reference
8924         to name is kept, free it.
8925
8926         * reflection.c (mono_reflection_generic_class_initialize): Free
8927         more memory of the inflated field.
8928
8929 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8930
8931         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
8932         code.
8933
8934 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
8935
8936         * reflection.c (mono_dynamic_image_free): Release memory used by
8937         MonoDynamicImage::array_methods elements.
8938
8939         * reflection.c (assembly_add_win32_resources): Release memory after
8940         encoding.
8941
8942 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
8943
8944         * decimal.c (log2_32): Use an optimized version for this function too.
8945         
8946         * decimal.c (log2_64): Fix this on 32 bit machines.
8947
8948 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
8949
8950         * class.c (mono_dup_array_type): Implement allocation using a mempool.
8951
8952         * class.c (mono_metadata_signature_deep_dup): Same.
8953
8954         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
8955         a mempool.
8956
8957         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
8958
8959         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
8960
8961         * metadata-internals.h: Added mono_metadata_signature_dup_full.
8962
8963         * class-internals.h: Update signatures to take a MonoMemPool.
8964
8965 2008-06-02  Dick Porter  <dick@ximian.com>
8966
8967         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
8968         * icall-def.h: Add
8969         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
8970         FormatMessage API to get the error text.  Fixes bug 321827.
8971
8972 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
8973
8974         * decimal.c: Add some micro optimizations to make decimal operations faster.
8975
8976 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
8977
8978         * reflection.c (method_encode_clauses): Take a mempool
8979         as parameter and use it to allocate the clause array.
8980
8981         * reflection.c (mono_image_get_field_on_inst_token): Free
8982         the inflated type after encoding it.
8983
8984         * reflection.c (mono_dynamic_image_free): Free each element
8985         of MonoDynamicImage::gen_params.
8986
8987         * reflection.c (reflection_methodbuilder_to_mono_method):
8988         Allocate the generic param array from the mempool.
8989         Allocate signature params from the mempool.
8990
8991         * reflection.c (mono_reflection_generic_class_initialize):
8992         Free inflated fields after been used.
8993
8994 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
8995
8996         * icall.c: Reapply the memory leak fixes as they no
8997         longer make mono crash.
8998
8999 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
9000
9001         * reflection.c (mono_type_get_object): Don't store the suplied
9002         MonoType with type_hash. A caller which pass a type that
9003         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
9004         might end with a pointer to freed memory.
9005         The solution is to use byval_arg or this_arg from the associated
9006         MonoClass of the supplied type.
9007
9008 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
9009
9010         * icall.c: Revert the rest of the last change as it breaks the build too.
9011
9012 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9013
9014         * icall.c: Revert a leak fix as it's breaking the build.
9015
9016 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9017
9018         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
9019
9020 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9021
9022         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
9023
9024 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9025
9026         * icall.c: Fix some memory leaks.
9027
9028 2008-05-29  Dick Porter  <dick@ximian.com>
9029
9030         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
9031         async socket operations from the pending list when a socket
9032         closes.  Leaving it until the threadpool services the event
9033         exposes a race condition when a socket descriptor is reused.
9034         Fixes bug 377589.
9035
9036 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9037
9038         * object.c: Fix negative index check for array alocation.
9039
9040 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9041
9042         * icall.c, marshal.c: Delegate wrappers should skip visibility.
9043         This check is performed by the verifier for IL created delegates
9044         and by Delegate::CreateDelegate for programatically created ones.
9045         Fixes #372406.
9046
9047 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9048
9049         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
9050         Fix code to use mono_array_size_t instead of int.
9051
9052         Based on patch by Luis F. Ortiz.
9053         Contributed under X11 license.
9054         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9055
9056 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9057
9058         * icall.c: Added ves_icall_System_Array_GetLongLength and
9059         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
9060         arrays.
9061
9062         * icall.h: Export both new functions.
9063
9064         Based on patch by Luis F. Ortiz.
9065         Contributed under X11 license.
9066         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9067
9068 2008-05-28  Martin Baulig  <martin@ximian.com>
9069
9070         The debugger now requires exactly r103463.
9071
9072         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
9073         This version is not supported by the debugger, wait for 72.
9074
9075 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9076
9077         * object.h: Changed array related functions to use
9078         mono_array_size_t instead of guint32. Forgot to commit this file.
9079
9080         Patch by Luis F. Ortiz.
9081         Contributed under X11 license.
9082         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9083
9084
9085 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9086
9087         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
9088         don't define it. Use the number literal instead.
9089
9090 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9091
9092         * icall.c: Changed array related functions to use
9093         mono_array_size_t instead of guint32.
9094
9095         * icall.c (ves_icall_System_Array_GetLength): Check for length
9096         overflow under MONO_BIG_ARRAYS.
9097
9098         Based on patch by Luis F. Ortiz.
9099         Contributed under X11 license.
9100         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9101
9102 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9103
9104         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
9105
9106         Based on patch by Luis F. Ortiz.
9107         Contributed under X11 license.
9108         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9109
9110 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9111
9112         * object.c, object.h: Changed array related functions to use
9113         mono_array_size_t instead of guint32.
9114
9115         Patch by Luis F. Ortiz.
9116         Contributed under X11 license.
9117         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9118
9119 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9120
9121         * object.h: Introduced mono_array_size_t typedef. This must be used
9122         in all places an array length is expected. This is 64bits wide if
9123         MONO_BIG_ARRAYS is enabled.
9124
9125         Patch by Luis F. Ortiz.
9126         Contributed under X11 license.
9127         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9128
9129 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
9130
9131         * security-manager.c class.c: Set the class exception info by calling
9132         mono_class_set_failure ().
9133
9134         * class.c (mono_class_get_exception_data): New accessor function.
9135         (mono_class_set_failure): Store exception_data in the property hash.
9136
9137         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
9138         the struct as a property.
9139
9140         * loader.c (mono_get_method_full): Store the lookup result for method
9141         tokens in method_cache, the others in methodref_cache to decrease the memory
9142         usage of hash tables.
9143
9144         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
9145         (mono_image_init): method_cache is lazy inited now.
9146
9147         * metadata-internals.h (struct _MonoImage): Change method_cache to
9148         a MonoValueHashTable, add a separate methodref_cache.
9149
9150 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
9151
9152         * number-formatter.h: Fix tables to avoid arithemtic overflow in
9153           Double.ToString as exposed by Bug #383531.
9154
9155 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
9156
9157         * number-formatter.h: Make some tables static.
9158
9159         * class.c (mono_method_set_generic_container): New accessor function.
9160         (mono_method_get_generic_container): Ditto.
9161
9162         * class-internals.h (struct _MonoMethod): Remove rarely used 
9163         'generic_container' field, store it in the property hash instead. Add 
9164         'is_generic' boolean field instead.
9165
9166         * image.c (mono_image_init): Initialize property_hash.
9167         (mono_image_close): Destroy property_hash.
9168
9169         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
9170         hold rarely used fields of runtime structures belonging to this image.
9171
9172         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
9173         to get/set method->generic_container.
9174
9175         * loader.c (mono_get_method_from_token): Avoid loading the method header for
9176         generic methods.
9177
9178 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
9179
9180         * class.c (mono_class_inflate_generic_method_full): Don't increase
9181         mono_stats.inflated_method_count for methods found in the cache.
9182
9183         * threads.c (mono_thread_request_interruption): Add a comment about 
9184         QueueUserAPC ().
9185
9186 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
9187
9188         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
9189         interface_offsets_packed table.
9190         
9191         * class.c (mono_class_init): Remove some dead code.
9192
9193         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
9194         mono_class_setup_vtable () when CAS is active to detect security problems.
9195
9196 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
9197
9198         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
9199
9200         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
9201         parameters as it's irrelevant for delegate checking.
9202
9203 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
9204
9205         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
9206
9207         * class.c (mono_class_init): Control the creation of a generic vtable using
9208         a global which is true by default, but set to false by the runtime startup code.
9209         
9210         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
9211         Disabled for now since it breaks the embedding API.
9212         Move the setup of class->methods for arrays to mono_class_setup_methods ().
9213         (mono_class_setup_methods): Add a memory barrier.
9214
9215         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
9216         when mono_class_init () doesn't compute the generic vtable.
9217         
9218 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
9219         * profiler.c: Added mono_profiler_install_statistical_call_chain,
9220         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
9221         to support call chains (backtrace) in the stat profiler.
9222         * profiler.c, profiler-private.h: Likewise.
9223
9224 2008-05-22  Mark Probst  <mark.probst@gmail.com>
9225
9226         * generic-sharing.c: Init generic class when a method of it is
9227         requested via a runtime generic context.
9228
9229 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
9230
9231         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
9232
9233         * reflection.c (mono_type_get_object): Add a FIXME.
9234
9235         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
9236
9237         * class.c (mono_class_get_method_by_index): New helper function, returning an
9238         entry in the class->methods array.
9239
9240 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9241
9242         * class.c (mono_class_init): Only do the array optimization for szarrays. 
9243         Avoid creating a generic vtable for generic instances as well.
9244         (mono_class_get_method_from_name_flags): Don't search in the metadata for
9245         generic instances.
9246
9247 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
9248
9249         * loader.c (mono_get_method_constrained): Inflate the signature
9250         with class context. Fix #325283.
9251
9252 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9253
9254         * object.c (mono_class_create_runtime_vtable): Add a comment.
9255
9256         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
9257         where needed.
9258         (setup_interface_offsets): Handle the case when this is called twice for arrays.
9259         (mono_class_setup_vtable_general): Add an assert.
9260         (mono_class_init): Avoid creating a generic vtable for arrays.
9261
9262         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
9263         here, let mono_class_init () do that.
9264
9265         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
9266         interfaces in mscorlib.
9267
9268         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
9269         interfaces. Add some comments.
9270         (mono_class_init): Call mono_class_setup_methods () here since it is no
9271         longer called by mono_class_setup_vtable ().
9272
9273         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
9274         not set in class->vtable.
9275         (mono_class_create_runtime_vtable): Reenable the disabled code.
9276
9277         * object.c (mono_class_create_runtime_vtable): Disable the last change for
9278         now as it causes some test failures.
9279
9280         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
9281         if using the vtable trampoline. Also remove some strange code which put the
9282         generic methods themselves into the vtable slots. Remove the AOT init_vtable
9283         stuff as it is no longer needed.
9284
9285 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
9286
9287         * pedump.c: Give make --verify all option check code as well.
9288         Using --verify code won't check for metadata now.
9289
9290 2008-05-19  Martin Baulig  <martin@ximian.com>
9291
9292         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
9293
9294         * mono-debug.c
9295         (_mono_debug_using_mono_debugger): New global variable; it's set
9296         directly by the debugger, so mono_debug_using_mono_debugger() also
9297         works after attaching.
9298
9299 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
9300
9301         * object.c (mono_class_create_runtime_vtable): Use memory barriers
9302         as we do double checked locking on MonoClass::runtime_info and
9303         MonoClassRuntimeInfo::domain_vtables.
9304
9305 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
9306
9307         * debug-helpers.c (print_field_value): Fix a warning.
9308
9309 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
9310
9311         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
9312         set in the AOT case.
9313
9314 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
9315
9316         * class.c (mono_class_setup_vtable_general): Use memory barriers
9317         as we do double checked locking on MonoClass::vtable.
9318
9319 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
9320
9321         * reflection.c (resolve_object): Inflate only if the generic context
9322         is not null. Fixes #389886.
9323
9324 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
9325
9326         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
9327         instead of g_free.
9328
9329         Code is contributed under MIT/X11 license.
9330
9331 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9332
9333         * class.c: Revert unrelated change.
9334
9335 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9336
9337         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
9338         a generic instantiation, use mono_class_from_mono_type instead of playing
9339         with MonoType directly.
9340
9341 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9342
9343         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
9344         checks must ignore generic instantiations, so mono_class_has_parent is not
9345         suitable. Fixes #390128.
9346
9347 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
9348
9349         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
9350         it to avoid registering tokens during metadata generation. Fixes #390023.
9351
9352 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
9353
9354         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
9355         consistent.
9356
9357         Contributed under MIT/X11 license.
9358
9359 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
9360
9361         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
9362         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
9363         to fixup the EXE image.
9364         (mono_cleanup): Use mono_close_exe_image.
9365         (mono_close_exe_image): New function.
9366         * image.c: Include "marshal.h".
9367         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
9368         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
9369         counting when the image is loaded outside of mono_image_open_full. Set status
9370         based on GetLastError.
9371         * coree.c: Include required headers. Add init_from_coree.
9372         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
9373         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
9374         (_CorExeMain): Set init_from_coree.
9375         (CorExitProcess): Only call ExitProcess for now.
9376         (CorBindToRuntimeEx): New stub implementation.
9377         (CorBindToRuntime): New function.
9378         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
9379         (MonoFixupExe): ILONLY executables require no fixups.
9380         (mono_set_act_ctx): New function to set activation context.
9381         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
9382         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
9383         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
9384         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
9385         as MONO_INTERNAL.
9386         * domain-internals.h: Add mono_close_exe_image.
9387
9388         Contributed under MIT/X11 license.
9389
9390 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
9391
9392         * metadata.c (mono_metadata_compute_size): Correctly calculate field
9393         size for generic param and event tables. Fixes #388977.
9394
9395 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
9396
9397         * loader.c (mono_method_signature): Use memory barriers because of the double
9398         checked locking pattern.
9399
9400         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
9401         aborting or aborted as well. Fixes #376391.
9402         
9403         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
9404         existing runtime state in the Suspend handler during shutdown.
9405
9406 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
9407
9408         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
9409
9410         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
9411         which are starting up or shutting down.
9412
9413         * threads.c (mono_threads_set_shutting_down): Don't return a value since
9414         this function never returns if the runtime is already shutting down.
9415
9416         * icall.c (ves_icall_System_Environment_Exit): Update after 
9417         mono_threads_set_shutting_down () signature change.
9418         
9419 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
9420
9421         * class.c: Added can_access_instantiation to verify if the instantiation
9422         is visible. Fix access check for nested types as they returned TRUE
9423         before doing type and generic instantiation visibility checks.
9424
9425 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
9426
9427         * reflection.c (mono_reflection_create_generic_class): The created type
9428         must have a different container from its TypeBuilder. Otherwise they
9429         will end sharing generic arguments, which is wrong.
9430
9431         Due to the sharing, making a generic instance of the created type using
9432         the TypeBuider generic arguments resulted in the generic type definition
9433         been returned, which is wrong as well.
9434
9435         As a bonus the code was leaking the type_params array. This memory should
9436         be allocated from the image mempool.
9437
9438         This fixes bug #354047.
9439
9440 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
9441
9442         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
9443         to here         as they are now used in assembly.c new code.
9444         Added a skipverification flag to MonoAssembly.
9445         New internal function mono_assembly_has_skip_verification.
9446
9447         * assembly.c: New function mono_assembly_has_skip_verification. It checks
9448         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
9449         part of #387274.
9450
9451 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
9452
9453         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
9454         needed. Fixes #387034.
9455
9456         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
9457
9458 2008-05-06  Miguel de Icaza  <miguel@novell.com>
9459
9460         * assembly.c (mono_assembly_load_reference): Prevent crash while
9461         disassembling Silverlight 2.0 executables while we still do not
9462         have GACed libraries.
9463
9464 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
9465
9466         * reflection.c: Special case generic type definitions as well. Fixes #383444.
9467
9468 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
9469
9470         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
9471         of the dynamic case. Fixes #387404.
9472
9473 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9474
9475         *verify.c (mono_verifier_is_class_full_trust): If under
9476         verify_all and the verifier mode was not set, only
9477         gac and corlib types are fulltrust. This makes --verify-all
9478         usable to detect unverifiable code, which is the expected
9479         use case.
9480
9481 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9482
9483         * verify.h: Ops, commited the header with debug
9484         enabled.
9485
9486 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9487
9488         * verify.c (merge_stack): Use the new value on unverifiable
9489         stack merges.
9490
9491         * verify.c (verify_type_compatibility_full): Comparison
9492         of nullable types can't use mono_class_is_assignable_from.
9493
9494         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
9495         that makes all verification errors be reported.
9496
9497         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
9498         mono_method_verify.
9499
9500 2008-05-05  Robert Jordan  <robertj@gmx.net>
9501
9502         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
9503         support for value types. See #386415.
9504
9505         * object.c: comments.
9506
9507         Code is contributed under MIT/X11 license.
9508
9509 2008-05-05  Martin Baulig  <martin@ximian.com>
9510
9511         * debug-mono-symfile.h
9512         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
9513         for old pre-terrania symbol files.
9514
9515 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
9516
9517         * mono-config.c: Add ppc64 architecture.
9518
9519         Code is contributed under MIT/X11 license.
9520
9521 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
9522
9523         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
9524           PPC64 uses function descriptors as well.
9525
9526         Code is contributed under MIT/X11 license.
9527
9528 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
9529
9530         * object.c (compute_class_bitmap): Ignore literal static fields.
9531
9532         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
9533         var has an invalid format.
9534         (describe_ptr): Add some sanity checks for the vtable.
9535         (add_nursery_frag): Clear unused nursery fragments.
9536         (major_collection): Clear all remaining nursery fragments.
9537
9538 2008-05-03  Robert Jordan  <robertj@gmx.net>
9539
9540         * image.c, metadata-internals.h: add thunk_invoke_cache.
9541
9542         * marshal.c, marshal.h: implement
9543         mono_marshal_get_thunk_invoke_wrapper ().
9544
9545         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
9546
9547         Code is contributed under MIT/X11 license.
9548
9549 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
9550
9551         * verify.c (do_leave): Empty the stack.
9552
9553 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
9554
9555         * class.c (mono_class_is_assignable_from): Variance
9556         doesn't work between reference and value types. For example,
9557         given type C<T+>, C<int32> is not assignable to C<object>.
9558         Break the argument checking loop on first error. 
9559
9560 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
9561
9562         * icall.c : base64_to_byte_array() needs some more strict
9563           check for sequence of '=' characters. Patch by Santa
9564           Marta (http://deee.g.hatena.ne.jp/santamarta).
9565
9566           Contributed under MIT/X11 license.
9567           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
9568
9569 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
9570
9571         * domain.c: Disable LoadLibrary support to fix Win32 build.
9572
9573         Code is contributed under MIT/X11 license.
9574
9575 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
9576
9577         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
9578         to help with cache behaviour.
9579
9580 2008-05-01  Miguel de Icaza  <miguel@novell.com>
9581
9582         * appdomain.c (mono_domain_from_appdomain): Add new accessor
9583         method. 
9584
9585 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
9586
9587         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
9588
9589 2008-05-01  Dick Porter  <dick@ximian.com>
9590
9591         * process.c (process_get_fileversion): Only pass 16 bits of
9592         language ID to VerLanguageName.  Fixes bug 381204.
9593
9594 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
9595
9596         * verify.c (mono_method_verify): Fix the comparison
9597         operator for code bounds check.
9598
9599 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
9600
9601         * verify.c (mono_method_verify): Check the bounds of
9602         all access of the code array.
9603
9604 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
9605
9606         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
9607
9608 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
9609
9610         * image.c (mono_image_strong_name_position): Fix return value when the rva is
9611         not valid.
9612
9613 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
9614
9615         * loader.c (mono_get_method_from_token, mono_method_signature): Add
9616         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
9617         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
9618         fixup main EXE images when using mono.exe for mixed-mode assembly support.
9619         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
9620         mono_runtime_load.
9621         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
9622         runtime initialization from metadata.
9623         * assembly.c: Remove obsolete ceGetModuleFileNameA.
9624         (mono_set_rootdir): Use mono_get_module_file_name.
9625         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
9626         handles.
9627         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
9628         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
9629         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
9630         MonoCLIImageInfo. Add support for module handles.
9631         (load_cli_header): Update mono_cli_rva_image_map signature.
9632         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
9633         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
9634         (mono_image_rva_map): Add support for module handles.
9635         (mono_image_ensure_section_idx): Add support for module handles.
9636         (mono_image_close): Add support for module handles.
9637         (do_load_header): Add support for module handles.
9638         (mono_image_open_from_module_handle): New function for internal use.
9639         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
9640         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
9641         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
9642         handles.
9643         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
9644         * image.h: Add mono_image_fixup_vtable.
9645         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
9646         support.
9647         * coree.h: New file.
9648         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
9649         unsupported native code.
9650         (mono_marshal_set_callconv_from_modopt): New function splitted from
9651         mono_marshal_get_managed_wrapper.
9652         (mono_marshal_get_managed_wrapper): Use
9653         mono_marshal_set_callconv_from_modopt.
9654         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
9655         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
9656         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
9657         that results in a deadlock when the runtime is loaded in _CorDllMain.
9658         * Makefile.am: Add coree.c and coree.h.
9659
9660         Contributed under MIT/X11 license.
9661
9662 2008-04-28  Mark Probst  <mark.probst@gmail.com>
9663
9664         * generic-sharing.c: Search for type arguments in array element
9665         types as well.
9666
9667 2008-04-28  Mark Probst  <mark.probst@gmail.com>
9668
9669         * class-internals.h, generic-sharing.c: New, small runtime generic context.
9670
9671         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
9672
9673         * object.c: Don't setup the RGCTX when the vtable is created,
9674         because we're setting it up lazily now.
9675
9676 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
9677
9678         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
9679         64 bit support.
9680
9681 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
9682
9683         * verify.c (verify_class_for_overlapping_reference_fields): 
9684         If class is under fulltrust allow reference types to overllap
9685         if they have the same RVA.
9686
9687 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
9688
9689         * pedump.c: Added new flag valid-only, that makes the verifier
9690         behaves just like --security=validil. It won't fail type load
9691         due to unverifiable restrictions.
9692
9693 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
9694
9695         * class-internals.h (struct MonoMethod): Added a verification_success
9696         field to cache verifier executions. Reduced MonoMethod:slot size by
9697         one bit.
9698
9699 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
9700
9701         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
9702         instead of a 'vt' argument to save an indirection and to allow these to be used
9703         for valuetypes.
9704         (scan_vtype): New helper function to scan an area using a gc descriptor.
9705         (mono_gc_wbarrier_value_copy): Implement this.
9706         (handle_remset): Add support for REMSET_VTYPE.
9707         (find_in_remset_loc): Ditto.
9708         (mono_gc_base_init): Allow some debugging options to be controlled through the
9709         use of the MONO_GC_DEBUG env variable.
9710         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
9711         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
9712
9713 2008-04-23  Martin Baulig  <martin@ximian.com>
9714
9715         * domain.c (mono_domain_create): Move the call to
9716         mono_debug_domain_create() down, after allocating the domain id.
9717
9718 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
9719
9720         verify.c (verify_class_for_overlapping_reference_fields): Skip
9721         static fields while verifying for overlapping fields as they
9722         don't matter at all.
9723
9724 2008-04-23  Marek Habersack  <mhabersack@novell.com>
9725
9726         * domain-internals.h: added a declaration of
9727         mono_make_shadow_copy.
9728
9729         * assembly.c (mono_assembly_open_full): shadow copying of
9730         assemblies moved to here, so that all the assemblies within the
9731         application domain's private binary directories can be
9732         processed. Fixes bug #380546
9733
9734         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
9735         mono_make_shadow_copy and made non-static. The decision whether
9736         to shadow-copy an assembly is made based on its location - it's
9737         copied if it's in one of the private application domain binary
9738         directories and its different to the target file in the shadow
9739         directory. Fixes bug #380546
9740
9741 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
9742
9743         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
9744
9745         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
9746         types.
9747
9748         * reflection.c (mono_image_create_token): Handle 
9749         Method/ConstructorOnTypeBuilderInst.
9750         (resolve_object): Ditto.
9751         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
9752         so it can be called from resolve_object. Also handle the case when the inflated
9753         class already has its methods setup.
9754
9755 2008-04-21  Martin Baulig  <martin@ximian.com>
9756
9757         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
9758
9759 2008-04-20  Geoff Norton  <gnorton@novell.com>
9760
9761         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
9762         pointer dereference.
9763
9764 2008-04-15  Marek Habersack  <mhabersack@novell.com>
9765
9766         * appdomain.c (try_load_from): if IOMAP is in effect, call the
9767         portability API to look up the assembly file. Fixes behavior in
9768         situations when the application has a bin/ directory, but the
9769         assembly search patch refers to Bin/ (and thus the requested file
9770         name is Bin/SomeLibrary.dll). Fixes bug #379888
9771
9772 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
9773
9774         verify.c (mono_type_is_generic_argument): Extracted this check
9775         from a dozen places to here.
9776
9777         verify.c: Fixed all issues related to boxing generic arguments
9778         and their constraints.
9779
9780 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
9781
9782         verify.c (mono_class_interface_implements_interface): Fix win32 build.
9783
9784 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
9785
9786         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
9787         isn't finished yet. Fixes #363447.
9788
9789 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
9790
9791         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
9792         Fixes #346419.
9793
9794 2008-04-13  Jb Evain  <jbevain@novell.com>
9795
9796         * domain.c: update the 2.1 profile versions.
9797         Merged from the Moonlight 2 branch.
9798
9799 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
9800
9801         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
9802         mscorlibs for the non-refonly case as well.
9803
9804         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
9805         in mono_assembly_load_from_full (). Fixes #378924.
9806
9807 2008-04-11  Geoff Norton  <gnorton@novell.com>
9808
9809         * icall.c: The global extern environ doesn't exist on Mac.  We
9810         need to call NSGetEnviron instead.
9811
9812 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9813
9814         verify.c: Add generic method constraint verification.
9815
9816 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9817
9818         class.c (mono_class_inflate_generic_method_full): Add a long
9819         explanation to the is_mb_open hack. Remove the FIXME.
9820
9821 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9822
9823         * verify.c (mono_method_verify): Mark all unknown opcodes
9824         as invalid. Mark jmp as unverifiable.
9825
9826 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9827
9828         * verify.c: Add code to do type constraint verification on class instances.
9829
9830         * verify.c (mono_verifier_verify_class): Use the type constraint 
9831         verification code.
9832
9833 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9834
9835         * class.c (mono_class_get_field_default_value): Don't pass cindex
9836         as hint to mono_metadata_get_constant_index. The local is not initialized
9837         and should contain garbage most of the time. This could only work
9838         with a lot of luck.
9839
9840 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
9841
9842         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
9843
9844 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
9845
9846         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
9847
9848         * class.c (mono_class_from_generic_parameter): Save the token of the
9849         generic param in MonoClass::sizes.generic_param_token.
9850
9851         * reflection.c (mono_custom_attrs_from_class): If the class type is
9852         VAR or MVAR retrieve the attributes of the generic param.
9853
9854 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9855
9856         * class.c (mono_class_init): Do class verification if the verifier
9857         is enabled.
9858
9859 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9860
9861         * verify-internal.h: Added mono_verifier_verify_class.
9862
9863         * verify.c: Added mono_verifier_verify_class. It checks for
9864         classes with explicit layout that have overlapping reference fields.
9865
9866         * pedump.c: Init the verifier state prior to verification. Fixed
9867         command line arguments.
9868
9869 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9870
9871         * Makefile.am: Added verify-internals.h, hopefully fix the build.
9872
9873 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
9874
9875         * verify-internals.h: Fix a warning.
9876
9877 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
9878
9879         * verify-internals.h: New header with the verifier configuration
9880         extracted from mini.c.
9881
9882         * verify.c: Implemented the new functions exported by verify-internals.h.
9883
9884 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
9885
9886         * verify.c: Add proper verification of ckfinite.
9887
9888 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9889
9890         * verify.c (do_conversion): Improved error message to something
9891         more meanfull.
9892
9893         * verify.c (check_is_valid_type_for_field_ops): Fix to work
9894         with primitive types.
9895
9896 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9897
9898         * verify.c: Added tail prefix checking. Marked icall
9899         as unverifible.
9900
9901 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9902
9903         * verify.c: Fix the detection of branches to the middle
9904         of an instruction.
9905
9906 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
9907
9908         * verify.c: Implemented verification of volatile. and
9909         unaligned. prefix. Check if a type is valid after retrieving it.
9910
9911 2008-04-01  Dick Porter  <dick@ximian.com>
9912
9913         * process.c (process_get_fileversion): If there's no string block,
9914         set the file language to en_US.  Fixes the other new part of bug
9915         374600.
9916
9917 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
9918
9919         * class.c: New functions mono_method_can_access_field_full and
9920         mono_method_can_access_method_full. They perform type visibility
9921         and type site check.
9922
9923         * class-internal.h: Added exported functions.
9924
9925         * verify.c: Use new functions to implement proper visibility checks.
9926
9927 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
9928
9929         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
9930
9931 2008-03-28  Dick Porter  <dick@ximian.com>
9932
9933         * process.c (process_get_fileversion): Use the first language ID
9934         we see, rather than insisting on an invariant language.  Fixes bug
9935         374600.
9936
9937 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
9938
9939         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
9940         the streams to fix reading of invalid memory later.
9941
9942         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
9943         to ease debugging.
9944
9945 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
9946
9947         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
9948         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
9949
9950 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
9951         * threads.h: Added MonoThreadManageCallback type and
9952         mono_thread_set_manage_callback prototype
9953         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
9954         (used to store the mono_thread_manage callback).
9955         * threads.c: Added mono_thread_set_manage_callback, and handle
9956         "MonoThread->manage_callback" in build_wait_tids.
9957
9958 2008-03-26  Dick Porter  <dick@ximian.com>
9959
9960         * process.c (process_get_fileversion): Set FileVersionInfo strings
9961         to Empty when the resource doesn't have the particular info.
9962         Fixes bug 355717.
9963
9964 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
9965
9966         * verify.c (mono_method_verify): Proper prefix validation.
9967
9968 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
9969
9970         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
9971         itself in a separate argument instead of throwing them. Fixes #373448.
9972
9973         * appdomain.c: Bump corlib version.
9974
9975 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
9976
9977         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
9978
9979 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
9980
9981         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
9982         version macros.
9983
9984 2008-03-20  Mark Probst  <mark.probst@gmail.com>
9985
9986         * generic-sharing.c, class-internals.h: Code for putting
9987         reflection types into the runtime generic context.
9988
9989 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
9990
9991         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
9992         Fixes #340662. 
9993
9994
9995 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
9996
9997         * verify.c (VerifyContext): Added instruction prefix data to the struct.
9998
9999         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
10000
10001         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
10002
10003         * verify.c (do_cast): Let the result value keep the boxed status.
10004
10005         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
10006
10007 2008-03-17  Jb Evain  <jbevain@novell.com>
10008
10009         * reflection.c: when running on a 2.0 runtime, emit
10010         unconditionally the #~ header version as 2.0, and the
10011         CLI header version as 2.5, for symmetry's sake with csc.
10012
10013 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10014
10015         * class.c: Remove the unused cache_interface_offsets stuff.
10016
10017         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
10018         profiler.c: Fix warnings.
10019
10020 2008-03-16  Mark Probst  <mark.probst@gmail.com>
10021
10022         * generic-sharing.c, class-internals.h: Support for putting
10023         methods into the runtime generic context.
10024
10025 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10026
10027         * class.c (mono_class_setup_fields): Ignore calls made to this function for
10028         classes which are generic instances of not-yet finished typebuilders. Fixes
10029         #351172.
10030
10031         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
10032
10033 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
10034
10035         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
10036
10037         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
10038         field, replace it with a hash table in MonoDynamicImage.
10039
10040         * reflection.c (inflate_mono_method): Access the generic definition object from
10041         image->generic_def_objects instead of imethod->reflection_info.
10042
10043         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
10044
10045         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
10046         
10047         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
10048         function in reflection.c so it is easier to keep in sync with the dynamic image
10049         creation code.
10050
10051         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
10052         mono_image_close ().
10053
10054 2008-03-15  Mark Probst  <mark.probst@gmail.com>
10055
10056         * class.c (mono_class_generic_sharing_enabled): Disable generic
10057         sharing for all architectures except AMD64 and x86 to fix build.
10058
10059 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10060
10061         * verify.c: Use the generic definition MonoGenericContext when available.
10062         Remove code for checking generics instance compatibility in favor of
10063         mono_class_is_assignable_from.
10064
10065 2008-03-14  Mark Probst  <mark.probst@gmail.com>
10066
10067         * marshal.c, marshal.h, metadata-internals.h, image.c,
10068         wrapper-types.h: New wrapper for invoking a shared static method
10069         without having to pass the runtime generic context argument.
10070
10071 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10072
10073         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
10074
10075 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
10076
10077         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
10078         
10079         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
10080         create a token from a FieldOnTypeBuilderInst.
10081         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
10082         (resolve_object): Ditto.
10083
10084         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
10085         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
10086
10087 2008-03-14  Martin Baulig  <martin@ximian.com>
10088
10089         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
10090
10091         * debug-mono-symfile.h
10092         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
10093         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
10094
10095 2008-03-10  Martin Baulig  <martin@ximian.com>
10096
10097         * debug-mono-symfile.h
10098         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
10099         `lexical_block_table_offset'.
10100         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
10101         `lexical_blocks'.
10102         (MonoSymbolFile): Added `version'.
10103
10104         * mono-debug.h
10105         (MonoDebugLexicalBlockEntry): Removed.
10106         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
10107         `lexical_blocks'.
10108
10109         * mono-debug.c (mono_debug_add_method): Don't compute lexical
10110         blocks here; the debugger now does this internally.
10111
10112 2008-02-27  Martin Baulig  <martin@ximian.com>
10113
10114         * object.c (mono_runtime_exec_main): Call
10115         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
10116         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
10117
10118 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10119
10120         * verify.c (verify_type_compatibility_full): Allow native int to be converted
10121         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
10122
10123 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10124
10125         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
10126         ldftn with a virtual method.
10127
10128 2008-03-13  Geoff Norton  <gnorton@novell.com>
10129
10130         * decimal.c:  Only include memory.h if the platform has it.
10131
10132 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
10133
10134         * assembly.c, class.c, metadata-internals.h: make sure public key
10135         tokesns are compared in a case-insensitive way. Also, all
10136         the lookups in the GAC use a lowercase public key token
10137         (gaacutil already does the lowercasing on install). Fixes
10138         bug #369541.
10139
10140 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
10141
10142         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
10143         and return value.
10144
10145 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
10146
10147         * image.c: when someone loads a mscorlib from a file, return the
10148         currently loaded mscorlib (fixes bug #369253).
10149
10150 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10151
10152         * class.c: handle types with no parents by forcing them to have
10153         System.Object as a parent and marking them as broken (this currently
10154         allows the first part of bug #369173 to work as well, likely because
10155         we don't check for typeload exceptions everywhere yet).
10156
10157 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
10158
10159         * class.c: more complete check that types belong to corlib
10160         (fixes second part of bug #369173).
10161
10162 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
10163
10164         * generic-sharing.c:  Including glib.h for the MSVC builds to define
10165           "inline" to "__inline" before including mono-membar.h.
10166           
10167         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
10168           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
10169           MSVC builds.
10170
10171         Contributed under MIT/X11 license.
10172
10173 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
10174
10175         * verify.c (do_invoke_method): Remove return type validation.
10176
10177         * verify.c (do_ret): Do return type validation at return site instead of
10178         call site.
10179
10180 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
10181
10182         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
10183
10184         * verify.c: Some todos cleaned and improved a few error messages.
10185
10186 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
10187
10188         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
10189
10190 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
10191
10192         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
10193         system types correctly.
10194
10195         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
10196         function.
10197
10198 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10199
10200         * assembly.c (build_assembly_name): Fix a warning.
10201
10202 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
10203
10204         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
10205         the called function takes an object type argument. Fixes storing or
10206         valuetypes across remoting as well as reducing memory usage.
10207         * image.c, metadata-internals.h: remove now unused ldfld_remote and
10208         stfld_remote wrapper caches.
10209
10210 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10211
10212         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
10213         is not found.
10214
10215         * reflection.c (mono_image_register_token): New helper function to save
10216         a token->object mapping.        
10217
10218         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
10219         managed code.
10220
10221         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
10222         one dimension arrays. Fixes #367670.
10223         (mono_reflection_get_type_internal): Ditto.
10224
10225 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
10226
10227         * marshal.c: mono_load_remote_field_new() always returns object.
10228         so use the proper signature (fixes bug #366445).
10229
10230 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10231         
10232         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
10233         add an 'inline_failure' flag instead.
10234
10235 2008-03-04  Mark Probst  <mark.probst@gmail.com>
10236
10237         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
10238         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
10239         contains the location of "this", used for exception handling.
10240
10241 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10242
10243         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
10244         their size on all platforms for perf reasons.
10245
10246 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10247
10248         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
10249         object-internal.h
10250
10251         * object-internal.h: Same.
10252
10253 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10254
10255         * reflection.h: Fix the build I just broke.
10256
10257 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10258
10259         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
10260         Test if a token is valid, this remove explicit usage of 
10261         MonoDynamicImage::tokens from the verifier code.
10262
10263         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
10264
10265         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
10266         instead of direct access to MonoDynamicImage::tokens.
10267
10268 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10269
10270         * verify.c (token_bounds_check): Fix the build I just broke.
10271
10272 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10273
10274         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
10275
10276         * verify.c (verifier_load_method): Fixed the errors message.
10277
10278         * verify.c (mono_method_verify): Fixed a debug message.
10279
10280 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
10281
10282         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
10283         mono-perfcounters.h, class-internals.h: support for predefined
10284         writable counters, query of categories and counters, bugfixes.
10285
10286 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
10287
10288         * verify.c (do_refanytype): Verify the refanytype opcode.
10289
10290         * verify.c (mono_method_verify): Use do_refanytype.
10291
10292 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
10293
10294         * verify.c (do_mkrefany): Verify the mkrefany opcode.
10295
10296         * verify.c (mono_method_verify): Use do_mkrefany.
10297
10298 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
10299
10300         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
10301         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
10302         implementation.
10303
10304 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10305
10306         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
10307         the type load exception.
10308
10309 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
10310
10311         * verify.c: Added a few FIXME for method signatures
10312
10313         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
10314         of mono_method_get_signature and get vararg call working. Removed unused
10315         checks for return value.
10316
10317         * verify.c (do_refanyval): Verify the refanyval opcode.
10318
10319         * verify.c (mono_method_verify): Implemented verification of arglist and
10320         use do_refanyval.
10321
10322 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10323
10324         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
10325         vtypes to marshal.c.
10326
10327         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
10328         it works for AOT as well.
10329
10330 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10331
10332         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
10333         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
10334         the system time is adjusted.
10335
10336 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
10337
10338         * icall.c, icall-def.h: use the new time functions (fixes the
10339         non-monotonic behaviour of TickCount).
10340
10341 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
10342
10343         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
10344         it breaks the build.
10345         
10346         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
10347         cattr is not finished yet.
10348
10349 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
10350
10351         * verify.c: Proper token validation for field, method and type.
10352
10353 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
10354
10355         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
10356
10357         * loader.c (method_from_memberref): Generate type load error instead of method missing
10358         if the type is not found.
10359
10360 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
10361
10362         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
10363         some of the conversions caused the generation of a marshal directive exception.
10364
10365 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
10366
10367         verify.c: Report which exception should be thrown by the JIT.
10368         Added a lot of FIXME notes.
10369
10370 2008-02-22  Mark Probst  <mark.probst@gmail.com>
10371
10372         * generic-sharing.c: Runtime generic context slots are not
10373         instantiated on init anymore.  Instead, provide function to do the
10374         instantiating on demand.
10375
10376         * class-internals.h: Added vtable to runtime generic context.
10377         Macros for encoding direct and indirect slot offsets in one
10378         guint32.
10379
10380 2008-02-21  Mark Probst  <mark.probst@gmail.com>
10381
10382         * object.c, generic-sharing.c: Moved some generic sharing code
10383         from object.c to generic-sharing.c.
10384
10385         * generic-sharing.c: Added support for extensible runtime generic
10386         context.
10387
10388         * metadata-internals.h: Two new hash tables in MonoImage for
10389         extensible runtime generic context support.
10390
10391         * domain.c: Unregister generic vtables upon domain unloading.
10392
10393         * image.c: Destroy new hash tables upon image unloading.
10394
10395         * metadata.c: Unregister generic subclasses upon image unloading.
10396
10397         * class-internals.h: New data structure for runtime generic
10398         context template.  New fields in the runtime generic context for
10399         extensible part.
10400
10401         * Makefile.am: Added generic-sharing.c.
10402
10403 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
10404
10405         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
10406         there is a pending loader exception, raise it.
10407
10408         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
10409         same.
10410
10411         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
10412         same.
10413
10414         Fixes #363450.
10415
10416 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
10417
10418         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
10419
10420         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
10421         
10422         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
10423         ref-only requests for compatibility with MS.
10424
10425 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
10426
10427         * reflection.c (mono_custom_attrs_from_method): Don't silently
10428         return an empty list for generic method instances.
10429         (mono_custom_attrs_from_param): Likewise.
10430
10431 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
10432             Raja R Harinath  <harinath@hurrynot.org>
10433
10434         Fix #354757
10435         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
10436         * class.c (mono_class_inflate_generic_method_full): Initialize it
10437         when a fully-open method is instantiated.
10438         * metadata.c (inflated_method_equal, inflated_method_hash): Update
10439         to new field.
10440         * reflection.c (inflate_mono_method): Don't create a temporary context.
10441
10442 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
10443
10444         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
10445         Compute correct value, to prepare for imethod->reflection_info going away.
10446
10447 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
10448
10449         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
10450
10451 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
10452
10453         * verify.c: Implement skip visibility flag.
10454
10455 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
10456
10457         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
10458         which contains an extra field to tell the kind of exception that should be thrown.
10459
10460         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
10461
10462 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
10463
10464         * loader.c (mono_method_get_param_names): Initialize 'klass' after
10465         'method' is updated.
10466
10467 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
10468
10469         * class.c (mono_class_layout_fields): Set class->min_align for classes using
10470         explicit layout as well. Fixes #360375.
10471
10472 2008-02-11  Geoff Norton  <gnorton@novell.com>
10473
10474         * loader.c: Guard and dereference against inflated generic methods
10475
10476 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
10477
10478         * class.c: Include Retargetable spec in assembly name.
10479         * assembly.c: Always include PublicKeyToken spec in assembly name
10480         (with value "null" if assembly is not signed), and include
10481         Retargetable spec.
10482         * icall-def.h: Added icall for Assembly.get_fullname.
10483         * icall.c: Added icall returning the fullname of an assembly.
10484
10485 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
10486
10487         * class.c (mono_class_setup_vtable_general): Add a missing call to
10488         mono_class_setup_methods () which is needed in the AOT case.
10489
10490 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
10491
10492         * verify.c (mono_type_get_stack_name): Added. Return the name for the
10493         stack type of the given MonoType.
10494
10495         * verify.c (verify_type_compatibility_full): Handle the void type.
10496
10497         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
10498         way stack merging works.
10499
10500         * verify.c (store_local): Improved verification message.
10501
10502         * verify.c (do_branch_op): If the merging is invalid, the method
10503         is unverifiable and not invalid. Improved error message.
10504
10505         * verify.c (merge_stacks): Properly merge a boxed valuetype and
10506         a reference type diferent than System.Object. Improved error
10507         message.
10508
10509 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
10510
10511         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
10512
10513         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
10514         type of an enum even if the argument is byref.
10515
10516         * verify.c: Replace all explicit uses of enumtype and enum_basetype
10517         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
10518
10519         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
10520
10521         *verify.c (verify_type_compatibility_full): Make enum types
10522         compatible with their base types.
10523
10524         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
10525         types are compatible for the special case of a boxed valuetype and
10526         System.Object.
10527
10528         * verify.c (verify_stack_type_compatibility): The function
10529         is_compatible_boxed_valuetype was extracted from here.
10530
10531         * verify.c (push_arg): Only set ctx->has_this_store if the method
10532         is not static.
10533
10534         * verify.c (do_ldelem): Fixed a typo in an error message and added
10535         strict check for mixing int32 and native int as the array type
10536         and ldelem type.
10537
10538         * verify.c (merge_stacks): Consider boxed valuetypes in the
10539         compatibility checks.
10540
10541 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
10542         * profiler.h: (MonoGCEvent): Added start-stop the world events.
10543
10544 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
10545         *class.c: use_new_interface_vtable_code: renamed the env var to have
10546         a "MONO_" prefix, and fix the logic to enable it by default.
10547
10548 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
10549         *class.c:
10550         mono_class_setup_vtable_general: rewrote the way in which interface
10551         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
10552         makes the code more maintainable.
10553         For now the old code is still there, and can be activated setting
10554         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
10555
10556 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
10557
10558         * verify.c: guarded some debug functions around and #ifdef.
10559
10560         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
10561
10562 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
10563
10564         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
10565         changes for now since they seem to break too many things.
10566
10567 2008-02-05  Mark Probst  <mark.probst@gmail.com>
10568
10569         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
10570         mono_marshal_find_nonzero_bit_offset): Added macro and function
10571         for finding the byte- and bit-offset of a bitfield within a
10572         struct.
10573
10574 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
10575
10576         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
10577         (mono_marshal_get_struct_to_ptr): Ditto.
10578
10579         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
10580         cctor_signature.
10581
10582 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
10583
10584         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
10585         between methods for non-corlib types.
10586
10587 2008-02-02  Geoff Norton  <gnorton@novell.com>
10588
10589         * loader.c (mono_method_get_param_names): Populate the parameter name for 
10590         generic parameters as well. (Fixes #342536)
10591
10592 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
10593
10594         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
10595
10596         * verify.c (do_invoke_method): Fix for calling with byref structs.
10597
10598         * verify.c (do_cast): push a boxed value type based on the type token and not
10599         the type of stack.
10600
10601 2008-01-31  William Holmes  <billholmes54@gmail.com>
10602
10603         * process.c (process_module_string_read): Check the size returned form 
10604           VerQueryValue to avoid out of memory exception. 
10605
10606 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
10607
10608         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10609         Handle properly modules which are not in the moduleref table. Fixes
10610         #356938.
10611
10612 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
10613
10614         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
10615         the dynamic case which is now in managed code.
10616         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
10617
10618         * marshal.c (mono_string_to_bstr): Fix a warning.
10619         (init_com_provider_ms): Ditto.
10620
10621         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
10622
10623         * exception.c (mono_get_exception_out_of_memory): New helper function.
10624
10625 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
10626
10627         * marshal.c: Add support for BSTR marshalling
10628         using other COM systems.
10629
10630         Code is contributed under MIT/X11 license.
10631
10632 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10633
10634         * object.c (mono_runtime_invoke_array): reverted previous
10635         commit as it breaks the build.
10636
10637 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10638
10639         * object.c (mono_runtime_invoke_array): Verify arguments for
10640         invalid types. Fixes #348522.
10641
10642 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10643
10644         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
10645         non-final virtual calls using call. 
10646
10647         * verify.c (do_invoke): fixed some TODOs.
10648
10649         * verify.c (push_arg): set has_this_store for "ldarga 0".
10650
10651 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
10652
10653         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
10654         which belong to an inflated class. Fixes #356531.
10655
10656 2008-01-26  Robert Jordan  <robertj@gmx.net>
10657
10658         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
10659         which resort to FindFirstFile when a certain error condition
10660         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
10661         Code is contributed under MIT/X11 license.
10662
10663 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
10664
10665         * marshal.c (emit_marshal_string): Fix out string marshalling
10666         to use specified encoding. Fixes #323900.
10667
10668         Code is contributed under MIT/X11 license.
10669
10670 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
10671
10672         * class.c (mono_class_inflate_generic_method_full): Don't modify
10673         iresult->context after cache check.
10674
10675 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
10676
10677         * class.c (mono_class_inflate_generic_method_full): Change the
10678         struct assignments to memcpy for better visibility and add some comments.
10679
10680 2008-01-23  Dick Porter  <dick@ximian.com>
10681
10682         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
10683         procedure, and make it work on windows.
10684
10685 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
10686
10687         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
10688         a MonoReflectionTypeBuilder since it is always of that type.
10689
10690         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
10691
10692         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
10693
10694         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
10695         
10696         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
10697
10698         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
10699
10700         * reflection.c (mono_reflection_create_runtime_class): Remove already created
10701         instantiations from the type cache.
10702
10703 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10704
10705         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
10706
10707         * verify.c (do_unbox_value): push a controled mutability managed pointer.
10708
10709 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10710
10711         * verify.c (do_ldstr): added, verifies if the #US token is valid.
10712
10713         * verify.c (mono_method_verify): removed old TODO
10714
10715 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10716
10717         * verify.c (do_newobj): add visibility check.
10718
10719 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10720
10721         * verify.c (do_load_function_ptr): add visibility check.
10722
10723 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
10724         *class.c:
10725         mono_generic_class_get_class: hook profiler events.
10726         mono_field_get_offset: added to support heap-shot in the new profiler.
10727         *class.h: exported mono_field_get_offset.
10728         * reflection.c:
10729         mono_reflection_setup_internal_class: hook profiler events.
10730
10731 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
10732
10733         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
10734         argument here too and use it to avoid checking for pending exceptions if 
10735         possible.
10736
10737 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
10738
10739         * assembly.c (build_assembly_name): add arg for passing the assembly
10740         flags. Do not consider a PublicKey with value "null" valid.
10741         (mono_assembly_name_parse_full): added boolean argument that will be
10742         set if the assembly name contains a PublicKeyToken spec. Added support
10743         for the Retargetable spec for which only Yes or No are allowed as valid
10744         value. Consider assembly name invalid if Retargetable spec is set, but
10745         either version, culture or public key (token) are not specified.
10746         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
10747         with implementation in assembly.c.
10748         * icall.c (fill_reflection_assembly_name): also copy assembly flags
10749         from MonoAssemblyName.
10750         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
10751         introduced argument for mono_assembly_name_parse_full to know if the
10752         assembly name has a PublicKeyToken spec, and if it has instruct
10753         fill_reflection_assembly_name to use default value for keyToken (if
10754         PublicKeyToken is null).
10755
10756 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
10757
10758         * verify.c (mono_method_verify): fixed ovf ops with
10759         float values. They are unverifiable now.
10760
10761 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
10762
10763         * class.c (set_failure_from_loader_error): add BadImageException to the
10764         list of exceptions that can cause a type to fail to load.
10765
10766         * class.c (mono_class_get_exception_for_failure): same.
10767
10768 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
10769
10770         * verify.c (in_any_exception_block): added, check if offset
10771         is part of any exception handling clause.
10772
10773         * verify.c (get_stack_type): added VAR and MVAR types.
10774
10775         * verify.c (do_stobj): better error messages.
10776
10777         * verify.c (do_cpobj): added, check cpobj.
10778
10779         * verify.c (do_initobj): added, check initobj.
10780
10781         * verify.c (do_sizeof): added, check sizeof.
10782
10783         * verify.c (do_localloc): added, check localloc.
10784
10785         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
10786
10787 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
10788
10789         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
10790         save_lmf/restore_lmf opcodes.
10791
10792         * threads.c (mono_threads_install_notify_pending_exc): New function to
10793         install a callback notifying the JIT there is a pending exception on a thread.
10794         (mono_thread_request_interruption): Call the new callback.
10795         (mono_thread_get_and_clear_pending_exception): New function to return the
10796         exception pending on a thread.
10797
10798         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
10799         to turn off checking for pending exceptions.
10800         (mono_marshal_get_native_wrapper): Ditto.
10801
10802 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
10803
10804         * threads-types.h: Get rid of the unnecessary extern declarations.
10805
10806 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
10807
10808         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
10809         return field from parent class if not private.
10810         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
10811         returns fields from parent class if they are not private.
10812         (method_nonpublic): added function to determine if a given method
10813         should be considered non-public. Returns false for private methods
10814         on parent class, and internal methods from parent on the 1.0 profile.
10815         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
10816         use method_nonpublic function to determine whether method should be
10817         returned.
10818         (property_accessor_public): use newly introduced method_nonpublic
10819         function to determine whether accessor is non-public. 
10820         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
10821         event from parent class if not private. Only return static event if
10822         Static flag is set, and only return static event from parent class if
10823         FlattenHierarchy flag is set.
10824         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
10825         include non-private events from parent class.
10826
10827 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
10828
10829         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
10830         warning.
10831
10832 2008-01-16  Wade Berrier <wberrier@novell.com>
10833
10834         * security.c: Add assembly.h header to appease some warnings
10835
10836 2008-01-16  Dick Porter  <dick@ximian.com>
10837
10838         * process.c (process_module_string_read): Remove trailing null
10839         when saving string.
10840
10841 2008-01-16  Mark Probst  <mark.probst@gmail.com>
10842
10843         * class-internals.h: A new data structure describing the layout of
10844         a runtime generic context (MonoRuntimeGenericContextTemplate).
10845
10846         * metadata-internals.h: Added a hash table to MonoDomain that maps
10847         from open generic classes to their runtime generic context
10848         templates.
10849
10850         * object.c: Building of the runtime generic context, including
10851         proper handling of generic type arguments of superclasses.
10852         Building of the runtime generic context according to the template.
10853
10854 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
10855
10856         * class.c (mono_class_setup_fields): Set field.count for generic instances.
10857         Fixes #350856.
10858
10859         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
10860         mono_portability_find_file (). Fixes #325466.
10861         (mono_image_get_public_key): Fix a warning.
10862
10863 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
10864
10865         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
10866         Fixes #353550.
10867         (mono_class_from_name_case): Ditto.
10868
10869 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
10870
10871         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
10872           common storage for the tables used in the System/NumberFormatter class.
10873
10874 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
10875
10876         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
10877
10878 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
10879
10880         * verify.c (get_boxable_mono_type): check if the token is valid.
10881
10882         * verify.c (set_stack_value): changed to add an error if an
10883         invalid type is set on stack. Changed all callers due to signature change.
10884
10885         * verify.c (do_stobj): implement stobj validation.
10886
10887 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
10888
10889         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
10890         set container->is_method, it was set earlier.
10891
10892         * metadata.c (type_in_image): Handle MVARs which belong to not finished
10893         generic methods.
10894
10895         * reflection.c (mono_reflection_initialize_generic_parameter): Set
10896         is_method of the generic container to TRUE for methods.
10897
10898 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
10899
10900         * metadata.c (type_in_image): Handle type parameters properly.
10901
10902         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
10903         memory ownership of this structure.
10904
10905 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
10906
10907         * verify.c (get_boxable_mono_type): make typedref types been just
10908         unverifiable. check for void type.
10909
10910         * verify.c (do_unbox_any): added, verify opcode unbox.any.
10911
10912         * verify.c (do_load_function_ptr): accept method spec tokens.
10913
10914 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
10915
10916         * marshal.c (mono_class_native_size): Always set *align even if this is called
10917         recursively.
10918
10919 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
10920
10921         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
10922         out-of-date.
10923
10924 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
10925
10926         * verify.c: removed some old unused tables. A huge bunch of small fixes
10927         to things found while testing the verifier with mono basic.
10928
10929         * verify.c (dump_stack_value): dump null literal flag to.
10930
10931         * verify.c (verify_type_compatibility_full): fix comparison
10932         for types that have a generic super type.
10933
10934         * verify.c (verify_stack_type_compatibility): fix compatibility
10935         between null literals and reference types. fix compatibility between
10936         boxed valuetypes and object. fix corner case test for enums.
10937
10938         * verify.c (do_cmp_op): proper verification of cgt.un in case
10939         of reference types.
10940
10941         * verify.c (do_invoke_method): fix error message.
10942
10943         * verify.c (do_store_indirect
10944
10945         * verify.c (check_is_valid_type_for_field_ops): proper verification
10946         of managed pointers to valuetypes and boxed valuetypes. proper verification
10947         of null literals.
10948
10949         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
10950         allow token to be a reference type.
10951
10952         * verify.c (do_cast): proper handling of boxes valuetypes.
10953
10954         * verify.c (do_stelem): proper handling of storing a boxed valuetype
10955         in object[].
10956
10957         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
10958         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
10959         fixed the decoding of unbox_any
10960
10961 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
10962
10963         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
10964
10965 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
10966
10967         * verify.c (do_newobj): do delegate verification.
10968
10969         * verify.c (verify_delegate_compatibility): perform delegate
10970         verification.
10971
10972         * verify.c (verify_ldftn_delegate): perform tests related to
10973         ldftn delegates.
10974
10975         * verify.c (mono_delegate_signature_equal): perform the
10976         slightly diferent signature comparison required by delegates.
10977
10978         * metadata.c (mono_metadata_type_equal_full): added and exported
10979         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
10980         allows signature only comparison.
10981
10982         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
10983         as MONO_INTERNAL.
10984
10985 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
10986
10987         * verify.c: added a bunch of stack_slot_* functions to
10988         make access to stack slot type easier. This is required to
10989         allow optional flags, like null literal, boxed value and
10990         this pointer.
10991         All access paths to IlStackDesc::stype have been changed 
10992         to use these new funcions.
10993         Removed a bunch of unused functions and cleared all warnings.
10994         This patch introduces the usage of the this pointer and 
10995         boxed value flags.
10996
10997 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
10998
10999         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
11000
11001 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
11002
11003         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
11004         match managed version.
11005
11006         * appdomain.c: Bump corlib version.
11007         
11008         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
11009         argument.
11010
11011 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
11012
11013         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
11014         Set public key token to zero-length byte array if assembly is not
11015         strongnamed.
11016
11017 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11018
11019         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
11020         writing a vtype array elem.
11021
11022 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
11023
11024         * assembly.c (build_assembly_name): return FALSE if length of token is
11025         not 16 (if not "null").
11026         (mono_assembly_name_parse_full): return FALSE if value of version,
11027         culture, token or key is 0.
11028         * icall.c (fill_reflection_assembly_name): add boolean arguments to
11029         specify whether public key and public key token must be set to default
11030         value (zero-length byte array) if not available. Set versioncompat to
11031         SameMachine. If public key is available or the default is set, then
11032         set PublicKey flag.
11033         (ves_icall_System_Reflection_Assembly_FillName): if no public key
11034         is available, use empty byte array as default value. On the 2.0
11035         profile, use default value for public key token if not set.
11036         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
11037         profile, use default value for public key if not set. On the 2.0
11038         profile, use default value for public key token if not set.
11039         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
11040         default values for public key and public key token.
11041
11042 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11043
11044         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
11045         field to keep it in synch with the managed object.
11046
11047         * marshal.c (emit_marshal_object): Add support for byref marshalling of
11048         delegates. Fixes #351520.
11049
11050         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
11051         contains defined memory.
11052         
11053         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
11054
11055         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
11056         
11057         * sgen-gc.c (check_consistency): New helper function to do a consistency check
11058         of the GC data structures.
11059
11060         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
11061
11062         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
11063         
11064         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
11065         barrier.
11066         (mono_array_clone_in_domain): Ditto.
11067         (mono_array_clone_in_domain): Ditto.
11068
11069         * threads.c (start_wrapper): Register the thread start argument as a GC root.
11070         (cache_culture): Use a write barrier.
11071
11072         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
11073         (ves_icall_get_property_info): Ditto.
11074
11075         * object.h (MONO_STRUCT_SETREF): New macro.
11076
11077         * class-internals.h (MonoStats): Add some GC statistics.
11078
11079         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
11080
11081 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
11082
11083         * exception.c (mono_exception_from_name_two_strings):
11084         Break from loop after method is found.
11085
11086 2008-01-04  Dick Porter  <dick@ximian.com>
11087
11088         * process.c (process_module_string_read): Rename variable to
11089         reflect correct usage, after fixing bug 345972.
11090
11091 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
11092
11093         * verify.c (mono_type_create_fnptr_from_mono_method): 
11094         created a MonoType function pointer instance to be used during
11095         verification. The verifier releases this memory at end.
11096
11097         * verify.c (mono_method_is_constructor): extracted repeated
11098         checks for constructor into a single class.
11099
11100         * verify.c (do_push_field): use new extracted method
11101         for constructor check.
11102
11103         * verify.c (do_newobj): same.
11104
11105         * verify.c (do_ldftn): renamed to do_load_function_ptr
11106         and make it verify ldvirtftn too.
11107
11108         * verify.c (mono_method_verify: proper verification
11109         of ldvirtftn. release created MonoMethod instances.
11110
11111 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11112
11113         * verify.c (token_bounds_check): added.
11114
11115         * verify.c (do_ldftn): added.
11116
11117         * verify.c (mono_method_verify): proper verificartion of ldftn.
11118
11119 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11120
11121         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
11122         than the table row count. It's the resposibility of the caller to
11123         make the bounds check and raise the correct error.
11124
11125         * metadata.c (mono_metadata_decode_row_col): Same.
11126
11127         * loader.c (mono_get_method_from_token): perform bounds check
11128         on token for methoddef table.
11129
11130 2007-12-29  Miguel de Icaza  <miguel@novell.com>
11131
11132         * icall.c
11133         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
11134         assert into a negative result, the managed code already coped with
11135         that.
11136
11137         Some folks on Windows reported this error. 
11138
11139 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
11140
11141         * appdomain.c: Bump corlib version.
11142         * icall.c:
11143         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
11144         CultureInfo.CreateCulture to create CultureInfo for name.
11145         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
11146         create CultureInfo for name. Fixes bug #347174.
11147
11148 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11149
11150         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
11151         flags.
11152
11153         * verify.c (is_valid_branch_instruction): allow branching to the
11154         first instruction of the protected block.
11155
11156         * verify.c (is_valid_cmp_branch_instruction): same.
11157
11158         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
11159         avoid double initialization.
11160
11161         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
11162         detect which cases the eval stack should just be copied.
11163
11164         * verify.c (mono_method_verify): check if the eval stack
11165         is empty when entering a protected block.
11166
11167 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11168
11169         * verify.c: added is_clause_in_range, is_clause_inside_range,
11170         is_clause_nested and verify_clause_relationship. They perform
11171         the verifications stated in P1 12.4.2.7.
11172
11173         * verify.c (mono_method_verify): remove some unused variables,
11174         add the new exception clause checks, add instruction border
11175         checks for protected block start/end, improved some error 
11176         messages and fixed a bug in the way invalid instruction access
11177         is detected.
11178
11179 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
11180
11181         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
11182         from GC 7.0 if available.
11183
11184         * object.c: Remove an unused define.
11185         
11186         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
11187
11188         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
11189
11190         * null-gc.c (mono_gc_make_descr_for_array): Implement.
11191
11192         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
11193
11194         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
11195         to take the same arguments as the other make_descr functions.
11196
11197         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
11198
11199         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
11200         directly.
11201
11202         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
11203         mini.c.
11204
11205         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
11206         call to boehm-gc.c.
11207
11208         * boehm-gc.c (mono_gc_register_root): Fix a warning.
11209
11210         * null-gc.c (mono_gc_register_root): Fix a warning.
11211
11212         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
11213
11214         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
11215         (mono_gc_base_init): Call GC_init ().
11216
11217         * null-gc.c: Define mono_gc_register_root () as a no-op.
11218
11219         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
11220
11221 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
11222
11223         * verify.c: add prototype for merge_stacks at top
11224
11225         * verify.c (do_switch): added.
11226
11227         * verify.c (merge_stacks): on some cases the stack merging
11228         was not happening properly. Unequal stack sizes at merge
11229         points should be invalid.
11230
11231         * verify.c (mono_method_verify): added more debug info on stack state.
11232         verify switch properly.
11233
11234 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
11235
11236         * method-builder.h: New file, moved the mono_mb_ declarations here from 
11237         marshal.h.
11238
11239         * boehm-gc.c marshal.c: Include method-builder.h.
11240
11241         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
11242
11243         * marshal.c: Remove some code which is now in method-builder.c.
11244
11245 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
11246
11247         * method-builder.c: New file, extraction of the method builder functionality 
11248         from marshal.c.
11249
11250         * marshal.c: Move the mb functions into method-builder.c.
11251
11252         * marshal.h marshal.c: Export some mono_mb_... functions.
11253
11254         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
11255
11256         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
11257         the caller.
11258
11259         * class.c (mono_class_get_full): Check the token type in the dynamic case.
11260
11261         * loader.c (mono_field_from_token): Ditto.      
11262
11263         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
11264         type as well.
11265         
11266         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
11267         Fixes #342565.
11268
11269         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
11270         a helper function for setting it.
11271
11272         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
11273
11274         
11275         * assembly.c: Significally simplify code now that referenced assemblies are 
11276         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
11277
11278         * threads.h: Don't include  the internal threads-types.h header file. Fixes
11279         #349952.
11280
11281 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
11282
11283         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
11284         instructions that were target of branches or are at protected block boundaries.
11285
11286         * verify.c (in_same_block): handle filter clauses.
11287
11288         * verify.c (is_valid_branch_instruction): added. checks the target of
11289         instructions br or brtrue/false.
11290
11291         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
11292         binary branch instructions such as beq and bge.
11293
11294         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
11295         and made it pin the instruction as been part of the exception block.
11296
11297         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
11298         of in_same_block.
11299
11300         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
11301         of in_same_block.
11302
11303         * verify.c (do_ret): ret from a protected block is unverifiable and
11304         not invalid.
11305
11306         * verify.c (do_static_branch): verify br and br.s instructions.
11307
11308         * verify.c (merge_stacks): add extra param to support detection
11309         of branches in the middle of instructions.
11310         
11311         * verify.c (mono_method_verify): verify branches and exception blocks
11312         that target the middle of instructions. Proper verification of br and br.s.
11313
11314 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
11315
11316         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
11317         skip_visibility field.
11318         (reflection_methodbuilder_from_dynamic_method): Ditto.
11319
11320         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
11321         registrations. Fixes #348193.
11322
11323         * threads.h: Move the internal mono_thread_get_pending_exception () to
11324         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
11325
11326 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
11327
11328         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
11329         icall registration. Fixes #348193.
11330
11331         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
11332         for corlib classes into object. Fixes #349621.
11333
11334 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
11335
11336         * icall.c (property_accessor_nonpublic): new function to determine
11337         whether an accessor allows a property to be considered non-public.
11338         Returns false for private accessor(s) from parent class, and internal
11339         accessor(s) from parent on 2.0 profile (and higher).
11340         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
11341         to determine whether property should be included if NonPublic flag
11342         is set. Fixes bug #349078.
11343
11344 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
11345
11346         * verify.c (init_stack_with_value): added.
11347
11348         * verify.c (mono_method_verify): extracted common
11349         code for exception initialization into init_stack_with_value.
11350
11351         * verify.c (mono_method_verify): initialize the exception
11352         for handler clauses as well.
11353
11354         * verify.c (mono_method_verify): fix the exception clause
11355         ordering rules, it should use handler end offset and not
11356         start offset.
11357
11358 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
11359
11360         * rawbuffer.c: remove useless warning.
11361
11362 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
11363
11364         * threads.h, threads-types.h: move functions to the correct header
11365         (fixes bug#349952).
11366
11367 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11368
11369         * verify.c (mono_method_verify): proper verification
11370         of exception handling clauses ranges and fallthru in
11371         and out of protected blocks.
11372
11373 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11374
11375         * verify.c (mono_method_verify): fixed compilation issue.
11376
11377 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11378
11379         * verify.c (mono_method_verify): a printf slipped in, changed
11380         to use verifier debug macro.
11381
11382 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
11383
11384         * verify.c (is_correct_leave): check for filter clauses.
11385
11386         * verify.c (do_filter): added.
11387
11388         * verify.c (mono_method_verify): property verification of leave.
11389
11390
11391 2007-12-18  Mark Probst  <mark.probst@gmail.com>
11392
11393         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
11394         Win32 build, until we figure out how to do the proper thing on
11395         Win32.
11396
11397 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
11398
11399         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
11400         by the previous patch.
11401         
11402         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
11403         the assembly resolve handler for refonly assemblies.
11404
11405 2007-12-17  Mark Probst  <mark.probst@gmail.com>
11406
11407         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
11408         Make sure only one thread is allowed to commence shutdown, and
11409         don't allow new threads to be started once shutdown is in
11410         progress.
11411
11412 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
11413
11414         * verify.c (is_correct_endfilter): added.
11415
11416         * verify.c (is_unverifiable_endfilter): added.
11417
11418         * verify.c (do_endfilter): added.
11419
11420         * verify.c (mono_method_verify): property verification of endfilter
11421         and fixed a corner case or endfinally.
11422
11423 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
11424
11425         * verify.h: new flags to support fail fast of unverifiable code and
11426         do non-strict verification. Non-strict verification is required to
11427         have MS runtime compatibility. There are a huge amount of unverifiable
11428         code that it accepts as verifiable. The strict mode verifies the code
11429         as the specs says.
11430         Non-strict mode will be required in cases where code needs to be
11431         accepted as verifiable but fails under strict mode.
11432
11433         * pedump.c: added support to fail fast and non-strict verification.
11434
11435         * verify.c: added support for both fail fast and non-strict verification.
11436
11437 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
11438
11439         * verify.c (is_correct_endfinally): added.
11440
11441         * verify.c (mono_method_verify): property verification of endfinally.
11442
11443 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11444
11445         * verify.c (in_any_block): check for filter clauses.
11446
11447         * verify.c (is_correct_rethrow): added.
11448
11449         * verify.c (mono_method_verify): property verification of rethrow.
11450
11451         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
11452
11453 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11454
11455         * verify.c (do_throw): added.
11456
11457         * verify.c (mono_method_verify): property verification of throw
11458
11459 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
11460
11461         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
11462         assemblies. Fixes #346425.
11463
11464 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
11465
11466         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
11467         FieldBuilders.
11468
11469         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
11470
11471         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
11472         prevent asserts when this is called with a token which might not be valid.
11473
11474         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
11475         lookup_dynamic_token_class with valid_token == FALSE.
11476
11477         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
11478
11479         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
11480
11481         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
11482         
11483 2007-12-10  Mark Probst  <mark.probst@gmail.com>
11484
11485         * gc.c: Don't delay threadpool thread finalization unless Mono is
11486         shutting down.
11487
11488 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
11489
11490         * threads.c: turn an assert into a non-fatal warning.
11491
11492 2007-12-09  Robert Jordan  <robertj@gmx.net>
11493
11494         * icall.c (GetVirtualMethod): Add missing argument validation.
11495
11496 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11497
11498         * verify.c (do_cast): added.
11499
11500         * verify.c (mono_method_verify): property verification of castclass and isinst.
11501
11502
11503 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11504
11505         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
11506
11507         * verify.c (do_stelem): added.
11508
11509         * verify.c (mono_method_verify): property verification of stelem.X.
11510
11511 2007-12-07  Mark Probst  <mark.probst@gmail.com>
11512
11513         * class.c, class-internals.h: Introduce an environment variable
11514         (MONO_GENERIC_SHARING) through which the extent of generic code
11515         sharing can be controlled (share all classes, share only corlib
11516         classes, or share nothing).
11517
11518         * object.c: Only create runtime generic context for classes for
11519         which sharing is enabled.
11520
11521 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11522
11523         * verify.c (do_ldelem): refactor it to work with ldelem.any.
11524
11525         * verify.c (mono_method_verify): property verification of ldelem.any.
11526
11527 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11528
11529         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
11530         added ldelem.X opcodes.
11531
11532         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
11533
11534         * verify.c: proper verification of ldelem.X 
11535
11536 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
11537
11538         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
11539
11540 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
11541
11542         * verify.c (mono_method_verify): null literal requires special handling,
11543         the value pushed on stack need to be flagged as so.
11544
11545         * verify.c (do_ldelema): Verify ldelema properly.
11546
11547 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
11548
11549         * verify.c: Verify ldlen properly.
11550
11551 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
11552
11553         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
11554         to the target object's type. Fixes #346160.
11555
11556 2007-12-05  Dick Porter  <dick@ximian.com>
11557
11558         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
11559         Solaris needs the same workaround as BSD-derived systems.  Fixes
11560         bug 323524, patch by Burkhard Linke
11561         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
11562
11563 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
11564
11565         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
11566         handle to use when error dialog is shown; otherwise, update mask
11567         to show no error dialog when an error occurs.
11568
11569 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
11570
11571         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
11572
11573         * class.c (mono_class_get_field_default_value): New helper function to initialize
11574         field->def_type and field->data.
11575
11576 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
11577
11578         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
11579         the general one.
11580
11581         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
11582
11583         * marshal.c: Avoid depending on delegate->method_info being set.
11584
11585         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
11586         
11587         * object.c (mono_delegate_ctor): Set delegate->method.
11588
11589         * object-internals.h (struct _MonoDelegate): Add 'method' field.
11590
11591         * appdomain.c: Bump corlib version.
11592
11593 2007-11-27  Raja R Harinath  <harinath@gmail.com>
11594
11595         * metadata.c (mono_generic_inst_equal_full): Short-circuit
11596         equality check if we're comparing canonicalized MonoGenericInsts.
11597
11598 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
11599
11600         * class.c (generic_array_methods): Call mono_class_setup_methods () before
11601         accessing class->methods.
11602
11603 2007-11-22  Dick Porter  <dick@ximian.com>
11604
11605         * threads.c: Ensure that the synch_cs is set before trying to use
11606         it.
11607
11608 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
11609
11610         * profiler.c: r89126 broke the statistial profiler, unbreak.
11611
11612 2007-11-22  Martin Baulig  <martin@ximian.com>
11613
11614         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
11615
11616         * mono-debug.c
11617         (mono_debug_debugger_version): Bump to 3.
11618         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
11619         -> mono_debugger_class_initialized().
11620
11621         * mono-debug-debugger.c
11622         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
11623
11624         * class.c
11625         (mono_debugger_start_class_init_func): Removed.
11626         (mono_debugger_class_loaded_methods_func): Added.
11627         (mono_class_setup_methods): Call it here.
11628
11629 2007-11-22  Martin Baulig  <martin@ximian.com>
11630
11631         * mono-debug.c
11632         (mono_debug_add_delegate_trampoline): New public method.
11633         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
11634
11635         * mono-debug.h
11636         (MonoSymbolTable): Added `global_data_table'.
11637         (MonoDebuggerTypeKind): Removed.
11638
11639 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
11640
11641         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
11642         these methods.
11643
11644         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11645         
11646 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
11647
11648         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
11649
11650 2007-11-20  Martin Baulig  <martin@ximian.com>
11651
11652         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
11653
11654         * mono-debug-debugger.c
11655         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
11656         (mono_debugger_remove_breakpoint): Likewise.
11657         (mono_debugger_check_breakpoints): Likewise.
11658         (mono_debugger_register_class_init_callback): New public method.
11659         (mono_debugger_remove_class_init_callback): Likewise.
11660         (mono_debugger_add_type): Likewise.
11661
11662         * mono-debug-debugger.h
11663         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
11664
11665 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
11666
11667         * class.c: more interface implementations needed for the
11668         array enumerator (fixes bug #341112).
11669
11670 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
11671
11672         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
11673         fix ParamName of ArgumentNullExceptions.
11674
11675 2007-11-17  Miguel de Icaza  <miguel@novell.com>
11676
11677         * reflection.c (mono_reflection_encode_sighelper): Generate the
11678         modopts and modreqs.   I have a useless test that crashes monodis,
11679         but that shows the code working.
11680
11681 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
11682
11683         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
11684         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
11685
11686 2007-11-15  Dick Porter  <dick@ximian.com>
11687
11688         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
11689         When joining a thread, it's the thread that's calling Join that
11690         gets WaitSleepJoin state not the target.  Fixes the standalone
11691         test case in bug 334740, and hopefully the whole bug too.
11692
11693 2007-11-15  Dick Porter  <dick@ximian.com>
11694
11695         * process.c: Read file version info from the files pointed at by
11696         process modules, not the current process.  Fixes bug 315969.
11697
11698         Use windows typedef names in some places to fix warnings on the
11699         windows build.
11700
11701 2007-11-15  Mark Probst  <mark.probst@gmail.com>
11702
11703         * image.c, metadata-internals.h: Added a generic_class_cache hash
11704         to MonoImage for looking up generic classes when sharing generics.
11705
11706 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
11707
11708         * sgen-gc.c: warning cleanups.
11709
11710 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
11711
11712         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
11713         inherited properties.
11714
11715 2007-11-14  Mark Probst  <mark.probst@gmail.com>
11716
11717         * object.c, class-internals.h: Added more information to the
11718         runtime generic context.
11719
11720 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
11721
11722         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
11723         instead of just the target method. Generalize the abstract method handling to
11724         handle any non-static method.
11725
11726         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
11727         mono_marshal_get_delegate_invoke () signature change.
11728
11729 2007-11-13  Mark Probst  <mark.probst@gmail.com>
11730
11731         * class.c, class-internals.h: Made
11732         mono_type_get_basic_type_from_generic () public.  Fixed member
11733         access check for shared generics.
11734
11735         * loader.c: Don't insert field into field cache if it's part of a
11736         non-inflated generic class.
11737
11738         * domain.c, domain-internals.h: The generic sharing context is now
11739         part of the jit info data structure.  Added two accessor
11740         functions.
11741
11742 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
11743
11744         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
11745         the array Get/Set/Address methods, since the JIT inlines them.
11746
11747         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
11748
11749         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
11750         (mono_image_init): Initialize runtime_invoke_direct_cache.      
11751
11752         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
11753         mono_marshal_get_delegate_invoke signature change.
11754
11755         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
11756         an additional argument. Add support for invoking abstract methods.
11757
11758         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
11759
11760         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
11761
11762 2007-11-09  Mark Probst  <mark.probst@gmail.com>
11763
11764         * class.c: Do field layout for open generic classes as well.
11765
11766 2007-11-09  Mark Probst  <mark.probst@gmail.com>
11767
11768         * gc.c, gc-internal.h: Don't finalize threadpool threads with
11769         other objects, because the threadpool is still around.  Put them
11770         in a list instead and after finalizing all other objects in the
11771         root domain shut down the thread pool and then finalize the
11772         threads.  Fixes bug #337383.
11773
11774         * threads.c, thread-types.h: New mono_thread_create_internal()
11775         function for marking a thread with the threadpool flag before it
11776         started.  Set synch_cs to NULL after freeing it.
11777
11778         * threadpool.c: Mark threadpool threads before they start.
11779
11780 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
11781
11782         * reflection.h, reflection.c: don't export random functions
11783         and lazy load dbnull and missing objects.
11784
11785 2007-11-07  Jonathan Chambers <joncham@gmail.com>
11786
11787         * class.c: Initialize COM types if COM interfaces
11788         are present (not just COM classes).
11789         
11790         Code is contributed under MIT/X11 license.
11791
11792 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11793         * reflection.c:
11794         create_dynamic_mono_image: hook module profiler events (dynamic case).
11795         mono_image_basic_init: hook assembly profiler events (dynamic case).
11796
11797 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11798         * profiler.c:
11799         simple_appdomain_unload: completely terminate the profiler
11800         instead of only processing the statistical samples.
11801         simple_shutdown: make sure this is really called exactly once,
11802         even in multithreaded applications, and always listen to
11803         appdomain events.
11804         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
11805         here, the "[un]load" functions will do it.
11806         Fixes bugs #333791 and #325261.
11807
11808 2007-11-07  Geoff Norton  <gnorton@novell.com>
11809
11810         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
11811         rather than depend on __APPLE__.
11812
11813 2007-11-07  Mark Probst  <mark.probst@gmail.com>
11814
11815         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
11816
11817 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
11818
11819         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
11820         UTF16 MonoString. Fix the crash from bug #335488
11821
11822 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
11823
11824         * marshal.c: Correct (for non-Win32 OS) length != size in 
11825         mono_string_from_bstr. Fix #339530.
11826
11827 2007-11-06  Geoff Norton  <gnorton@novell.com>
11828
11829         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
11830         to succeed
11831
11832 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
11833
11834         * process.c: Added run-time GetProcessId API detection for Windows.
11835
11836 2007-11-04  Miguel de Icaza  <miguel@novell.com>
11837
11838         * reflection.c  (mono_param_get_objects): If a parameter has the
11839         attribute [System.Runtime.InteropServices.Optional] we should
11840         set the DefaultValue of the ParameterInfo to be
11841         System.Reflection.Missing instead of DBNull.
11842
11843         See bug #339013.
11844
11845         (mono_get_reflection_missing_object): New method,
11846         returns the System.Reflection.Missing.Value singleton instance.
11847
11848 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
11849
11850         * culture-info-table.h : regenerated.
11851
11852 2007-11-02  Jonathan Chambers <joncham@gmail.com>
11853
11854         * icall.c: Use GetEnvironmentStrings on windows
11855         so we are using the same environment block as 
11856         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
11857         #333740.
11858         
11859         Code is contributed under MIT/X11 license.
11860
11861 2007-10-31  Martin Baulig  <martin@ximian.com>
11862
11863         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
11864
11865         * mono-debug-debugger.h
11866         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
11867
11868 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
11869
11870         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
11871         classes.
11872
11873 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
11874
11875         * culture-info-table.h : regenerated.
11876
11877 2007-10-30  Robert Jordan  <robertj@gmx.net>
11878
11879         * icall-def.h, icall.c:
11880         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
11881
11882         Code is contributed under MIT/X11 license.
11883
11884 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
11885
11886         * class.c (mono_class_setup_vtable): Find the inflated methods in the
11887         inflated class instead of inflating them again.
11888         
11889         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
11890         dynamic case.
11891
11892         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
11893         Call setup_supertypes () after klass->parent is set.
11894         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
11895
11896         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
11897         for inflated instances of not yet created dynamic generic classes.
11898         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
11899         times from inflated_method.
11900         (methodbuilder_to_mono_method): Ditto.
11901
11902 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
11903
11904         * gc.c: code cleanup and removed old untested option of not creating the
11905         finalizer thread.
11906
11907 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
11908
11909         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
11910         creating a jump trampoline for dynamic methods.
11911
11912 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
11913
11914         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
11915         generic TypeBuilders when called from another method of the same type (bug #335131).
11916
11917
11918 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
11919
11920         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
11921         doesn't seem to work perfectly.
11922         
11923         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
11924         called multiple times.
11925         (methodbuilder_to_mono_method): Ditto.
11926         (resolve_object): Inflate FieldBuilder's.
11927
11928 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
11929
11930         * string-icalls.c, string-icalls.h, appdomain.c: patch from
11931         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
11932         RemoveEmptyEntries in the string.Split implementation (bug #322375).
11933
11934 2007-10-26  Dick Porter  <dick@ximian.com>
11935
11936         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
11937         Thread initialisation changes
11938
11939 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
11940
11941         * verify.c: fix compatibility check between arrays and System.Array
11942
11943 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
11944
11945         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
11946         too. Fixes #336999.
11947
11948 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
11949
11950         * object.c (mono_value_box): Use typed allocation here.
11951
11952 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
11953
11954         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
11955         trampoline instead of compiling the method right away.
11956
11957         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
11958
11959 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
11960
11961         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
11962         related fields for dynamic classes. Fixes #334493.
11963
11964 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
11965
11966         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
11967         
11968         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
11969
11970         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
11971         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
11972
11973         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
11974
11975         * reflection.c (create_generic_typespec): Initialize klass->generic_container
11976         if needed.
11977         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
11978
11979 2007-10-18  Jonathan Chambers <joncham@gmail.com>
11980
11981         * marshal.c: Use correct key when removing item
11982         from ccw_hash.
11983         
11984         Code is contributed under MIT/X11 license.
11985
11986 2007-10-17  William Holmes  <billholmes54@gmail.com>
11987
11988         *marshal.c: Adding a case to marshal booleans to U1
11989
11990         Code is contributed under MIT/X11 license.
11991
11992 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
11993
11994         * class.c (mono_class_from_name): Search the modules compromising dynamic
11995         assemblies. Fixes #331601.
11996
11997 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
11998
11999         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
12000         exception if the type name contains an assembly component. Fixes #334203.
12001
12002         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
12003         modules inside dynamic assemblies. Fixes #334200.
12004         
12005         * reflection.c: Set image->public_key and image->public_key_length;
12006
12007         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
12008         fields.
12009
12010         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
12011         
12012 2007-10-16  Mark Probst  <mark.probst@gmail.com>
12013
12014         * metadata.c: Implemented correct comparing of generic classes.
12015         An inflated generic class can be equal to a non-inflated one if it
12016         is inflated with generic type variables as type arguments.  Fixes
12017         bug #333798.
12018
12019 2007-10-15  Dick Porter  <dick@ximian.com>
12020
12021         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
12022         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
12023         81646.
12024
12025         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
12026         instead of a monitor lock.  This means that monitor_try_enter and
12027         co can set the thread state safely.
12028         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
12029         thread_interrupt_requested, so interrupt actually works.
12030
12031         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
12032         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
12033         state accessor function
12034
12035 2007-10-15  Martin Baulig  <martin@ximian.com>
12036
12037         * mono-debug.h
12038         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
12039         the debugger with the current runtime.
12040
12041 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
12042
12043         * object.c, object-internals.h: added the ability to set a single
12044         trampoline for all the slots in a vtable.
12045
12046 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12047
12048         * marshal.c: deal with a possible race condition during multicast
12049         delegate invocation.
12050
12051 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12052
12053         * class.c: ensure value type methods don't have the synchronized
12054         flag set.
12055
12056 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
12057
12058         * string-icalls.c, string-icalls.h: reverted unapproved patch that
12059         breaks the build.
12060
12061 2007-10-11  Joel Reed  <joelwreed@comcast.com>
12062
12063         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
12064         to take an options parameter so that empty entries can be removed during
12065         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
12066
12067 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12068
12069         * marshal.c: make sure we don't store the signature from a dynamic
12070         method into the runtime invoke cache (bug #327189).
12071
12072 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12073
12074         * marshal.c: make sure the wrapper methods are properly initialized.
12075
12076 2007-10-11  Mark Probst  <mark.probst@gmail.com>
12077
12078         * metadata.c, metadata-internals.h: Generalized
12079         mono_type_stack_size() to mono_type_stack_size_internal() which
12080         takes an additional argument specifying whether it allows open
12081         types.
12082
12083 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
12084
12085         * verify.c (do_invoke_method): handle typedbyref params
12086         correctly and check for unverifiable return values.
12087
12088         * verify.c (do_newobj): fix a warning.
12089
12090 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12091
12092         * verify.c: don't tread typedbyref as allways unverifable,
12093         so uses, like (ld/st)loc.0 are valid. verify for the cases
12094         that it matters, like boxing related operations.
12095
12096 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12097
12098         * verify.c: add verification of the newobj opcode. verification
12099         of delegate instantation still missing due ldftn and virldftn not
12100         pushing the function type on stack
12101
12102 2007-10-08  Mark Probst  <mark.probst@gmail.com>
12103
12104         * class-internals.h: Runtime generic context data structure
12105         definition.
12106
12107         * object.c: Initialization of runtime generic context at runtime
12108         vtable creation time.
12109
12110 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
12111         * class.c (mono_class_create_from_typedef,
12112         mono_class_from_generic_parameter, mono_ptr_class_get,
12113         mono_fnptr_class_get, mono_bounded_array_class_get)
12114         * domain.c (mono_domain_create, mono_domain_free)
12115         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
12116         * image.c (do_mono_image_load, mono_image_close):
12117         Hooked up load-unload profiler events.
12118
12119 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
12120
12121         * domain.c: track statistics about the actual amount of native code
12122         allocated.
12123
12124 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12125
12126         * class.c: the valuetype enumerators don't have the additional
12127         supertypes interfaces.
12128
12129 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12130
12131         * class.c: need more interfaces setup for the IEnumerator<T>
12132         object created for arrays (tests/ienumerator-interfaces.2.cs).
12133
12134 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
12135
12136         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
12137
12138 2007-10-05  Alp Toker  <alp@atoker.com>
12139
12140         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
12141         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
12142         #315863.
12143
12144 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12145
12146         * verify.c (verify_type_compatibility_full): verification of
12147         compatibility improved, validates correctly non-strict checks between
12148         native int and I4 types different than (unsigned)int32.
12149
12150         * verify.c (do_store_indirect): added, do all verification of
12151         ldind.X opcodes. 
12152
12153         * verify.c (get_load_indirect_mono_type): renamed to
12154         get_indirect_op_mono_type, as it now returns the MonoType for 
12155         ldind.X and stind.X opcodes.
12156
12157 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12158
12159         * reflection.c: Fix the encoding of generic type definition for
12160         TypeBuilders.
12161
12162         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
12163         mono_image_typedef_or_ref but allows to specify if typespec lookups should
12164         be made. Typespec check is done prior to typeref cache lookup.
12165
12166         * reflection.c (mono_image_typedef_or_ref): now just delegate to
12167         mono_image_typedef_or_ref_full.
12168
12169         * reflection.c (encode_generic_class): encode the generic class
12170         directly instead of calling encode_type.
12171
12172         * reflection.c (encode_type): encode the generic type definition
12173         MonoClass as a generic instantiation.
12174
12175         * reflection.c (create_typespec): cache typespec tokens in
12176         the assembly->typespec cache. Don't create typespec for a generic
12177         instance MonoClass. Create typespec for the generic type defintion.
12178
12179         * reflection.c (create_generic_typespec): encode the generic
12180         class directly instead of calling encode_type.
12181
12182         * reflection.c (mono_image_create_token): encode the generic
12183         type definition not using a typespec for MonoType instances.
12184
12185
12186 2007-10-04  Raja R Harinath  <rharinath@novell.com>
12187
12188         Fix #328812
12189         * class.c (mono_image_init_name_cache): Don't return nested
12190         'protected internal' classes.
12191         (mono_class_from_name_case): Likewise.
12192
12193 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
12194
12195         * icall-def.h, icall.c : get_bundled_machine_config() is now the
12196           common function used by both DefaultConfig in System.dll and
12197           InternalConfigurationHost in System.Configuration.dll.
12198
12199 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12200
12201         * class.c: automatically add to vectors only a few essential explicit
12202         generic interfaces. The rest of the interfaces that arrays should
12203         provide are currently implicitly added (but still not lazily, see the
12204         design in the discussion of bug#325495 for the details of what is
12205         needed for that). Additionally, implicit interfaces are assigned the
12206         same vtable slot as the explicit interfaces (as they are compatible):
12207         this enables huge memory savings since we don't need to instantiate
12208         as many memthods and as large vtables anymore. Also, Since
12209         GetEnumerator<T> returns an instance of a type that is required to
12210         support a similarly large set of interfaces as arrays, we add
12211         implicit interfaces and interface offset sharing support to those
12212         types, too. This change adds all the required interfaces so that
12213         the anonarray.cs test case in the bug report works (we don't add
12214         all the interfaces to arrays of arrays 3-level deep and more because
12215         of the memory requirements explained in the bug and since they are much
12216         less common: the lazy-loading support will enabled them to work, too).
12217
12218 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
12219
12220         * verify.c (merge_stacks): major clean up, all type compatibility
12221         checks are done by verify_type_compatibility. This fix my earlier lack
12222         of understanding of the CLR type system and merge_stacks no longer looks
12223         scary.
12224
12225         * verify.c: fixed some bad spelling.
12226
12227 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
12228
12229         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
12230         a given stack slock.
12231         
12232         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
12233         verify_type_compatibility_full. This removed a near indentical function and fixed
12234         handling of Int32 and IntPtr across all opcodes.
12235
12236 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12237
12238         * class.c: only vectors have the additional generic interfaces.
12239
12240 2007-10-01  Jonathan Chambers <joncham@gmail.com>
12241
12242         * mono-config.c: Use g_strcasecmp instead of
12243         strcasecmp like everywhere else to fix
12244         compilation with MSVC.
12245         
12246         Code is contributed under MIT/X11 license.
12247
12248 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12249
12250         * object.c, object-internals.h: refactored the IMT code to enable
12251         building a single slot at a time and lazily creating the IMT trampolines
12252         and thunks.
12253
12254 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
12255
12256         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
12257
12258         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
12259         Fixes #328501.
12260         
12261 2007-09-29  Raja R Harinath  <harinath@gmail.com>
12262
12263         * loader.c (method_from_methodspec): Rearrange to avoid
12264         un-necessary exposition.  Don't assert out if the method's
12265         declaring type is a generic type definition.
12266
12267 2007-09-28  Martin Baulig  <martin@ximian.com>
12268
12269         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
12270
12271 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
12272
12273         * class-internals.h: optimize field layout of MonoClass to
12274         requires less cachelines at runtime and save a few bytes on 64 bit
12275         systems.
12276
12277 2007-09-28  Jb Evain  <jbevain@novell.com>
12278
12279         * reflection.c: when encoding type names in custom attributes,
12280         if the type is a closed generic type, its generic arguments
12281         have to be serialized as AssemblyQualifiedName, so that when
12282         they are deserialized, it's possible to re-create them properly.
12283         Fixes #329450.
12284
12285
12286 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12287
12288         * object.c, class-internals.h: added delegate-creation counter.
12289
12290 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
12291
12292         * class.c: cleanup of the code that synthetizes interfaces for
12293         arrays in 2.0: saves quit a bit of corlib mempool memory.
12294         Code to fix bug #325495 ifdeffed out for now until the issues
12295         with memory usage and O(n^2) behaviour are fixed.
12296
12297 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12298
12299         * marshal.c: when possible, do not duplicate the name of the methods
12300         in the method builder and in the generated MonoMethod.
12301
12302 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
12303         * verify.c: added support for type checking ldind_* opcodes.
12304
12305 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
12306
12307         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
12308         which is used to distinguish the fully open instantiation of a TypeBuilder
12309         with the rest. This temporary hack is required to restore the property that
12310         the fully open instantiation is the same type of the generic type definition.
12311
12312         * class-internals.h (mono_generic_class_is_generic_type_definition):
12313         new function as part of the internal API.
12314
12315         * class.c (inflate_generic_type): return NULL when the generic inst is
12316         fully open. The fully open generic type is now the same as the generic type
12317         definition for non TypeBuilder types.
12318
12319         * class.c (mono_generic_class_get_class): removed assert since it is
12320         no longer valid, gklass->cached_class can point to the generic type definition.
12321
12322         * class.c (mono_generic_class_is_generic_type_definition): new.
12323
12324         * metadata.c (mono_generic_class_hash): added is_tb_open field
12325         to the hash calculation.
12326
12327         * metadata.c (free_generic_class): if the generic class is associated
12328         with the generic type definition, its field will come from the mempool and
12329         must not be freed.
12330
12331         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
12332         new, this function identifies the corner case of a TypeBuilder fully open
12333         instantiation.
12334
12335         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
12336         for lookup. Set gclass->cached_class to be the container class in case of
12337         the fully open instantiation of non TypeBuilder types.
12338
12339         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
12340         to compare generic classes.
12341
12342         * reflection.c (method_encode_methodspec): remove assert that
12343         no longer is valid.
12344
12345         * reflection.c (mono_reflection_generic_class_initialize): add
12346         an aditional assert to ensure the proper type is used.
12347
12348 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
12349
12350         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
12351         to enjoy it.
12352
12353 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
12354
12355         * verify.c (push_arg): Fixed support for ldarga
12356         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
12357         MonoType used as first arg in case of instance calls.
12358
12359 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
12360
12361         * verify.c: Support for verifying VAR and MVAR types, 
12362
12363 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
12364
12365         * icall.c (ves_icall_get_property_info): Set the reflected type of the
12366         accessors correctly.
12367
12368 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
12369
12370         * threads.c: support OSX and other systems in
12371         mono_thread_get_stack_bounds (bug #328026).
12372
12373 2007-09-25  Martin Baulig  <martin@ximian.com>
12374
12375         * mono-debug.h
12376         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
12377
12378 2007-09-24  Martin Baulig  <martin@ximian.com>
12379
12380         * mono-debug.h
12381         (MonoDebugClassEntry): Moved the definition of this struct into
12382         mono-debug.c to make it private.
12383
12384         * mono-debug.c
12385         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
12386         type table per symbol file, we don't need to store the symfile id
12387         any longer.
12388
12389 2007-09-24  Martin Baulig  <martin@ximian.com>
12390
12391         Create one type table per symbol file, since a `MonoClass *' gets
12392         invalid when its image is unloaded.
12393
12394         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
12395         (MonoDebugHandle): Added `type_table'.
12396
12397 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
12398
12399         * mempool.c, mempool.h: added mono_mempool_new_size () API
12400         to be able to specify a smaller initial size for the pool.
12401         Adjusted the code to slowly increase pool size before using
12402         the previous default size.
12403         * image.c: use a small initial size for image mempools.
12404
12405 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
12406
12407         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
12408         Fixes ##320990.
12409
12410         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
12411         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
12412
12413 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
12414
12415         * metadata.c (mono_type_create_from_typespec): Remove an invalid
12416         free. Fixes #327438.
12417
12418 2007-09-21  Raja R Harinath  <harinath@gmail.com>
12419
12420         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
12421         generic instantiations, etc.
12422         <MONO_TYPE_ARRAY>: Likewise.
12423
12424 2007-09-21  Martin Baulig  <martin@ximian.com>
12425
12426         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
12427         these structs were never defined.
12428         (MonoDebugHandle): Removed the `_priv' field, it was never used.
12429
12430 2007-09-21  Martin Baulig  <martin@ximian.com>
12431
12432         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
12433
12434 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
12435
12436         * image.c: removed the guid hash tables: we can get the same info
12437         without the additional memory usage hit (partially fixes also bug #327052).
12438
12439 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12440
12441         * profiler.h, profiler-private.h, profiler.c: add a new profiler
12442         event to handle unloading methods. After the event is called, the
12443         corresponding MonoMethod* must be considered invalid.
12444         * loader.c (mono_free_method): call the new mono_profiler_method_free
12445         event.
12446
12447 2007-09-20  Mark Probst  <mark.probst@gmail.com>
12448
12449         * domain-internals.h: New flag in MonoJitInfo which marks shared
12450         generic methods.  New hash table (shared_generics_hash) in
12451         MonoDomain to keep track of shared generic methods.  Prototypes
12452         for functions to register and lookup shared generic methods.
12453
12454         * domain.c: Support for registering and looking up shared generic
12455         methods via a hash table (shared_generics_hash) in MonoDomain.
12456
12457         * class-internals.h: New exception to signal failure of shared
12458         compilation of a generic method.  New counters for generics
12459         sharing in MonoStats.
12460
12461 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
12462
12463         * image.c, metadata-internals.h: don't keep a file descriptor open
12464         for loaded assemblies (bug#325988).
12465
12466 2007-09-19  Raja R Harinath  <rharinath@novell.com>
12467
12468         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
12469         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
12470         use the corresponding datatypes.
12471         (type_in_image): Update to changes.
12472         (CleanForImageUserData): Simplify.
12473         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
12474         Avoid quadratic behaviour in handling the "stolen" list by
12475         separating the filter predicate out, and by prepending the stolen
12476         items rather than appending them.
12477         (steal_ginst_in_image): Likewise.
12478         (mono_metadata_clean_for_image): Update to changes.
12479
12480 2007-09-19  Martin Baulig  <martin@ximian.com>
12481
12482         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
12483
12484 2007-09-19  Martin Baulig  <martin@ximian.com>
12485
12486         * mono-debug.c (mono_debug_cleanup): Don't call
12487         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
12488
12489 2007-09-19  Raja R Harinath  <harinath@gmail.com>
12490
12491         Fix crash on 'make run-test' in mcs/errors
12492         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
12493         Avoid more potential allocations in mono_class_from_mono_type.
12494         (ginst_in_image): Update to changes.
12495         (gclass_in_image): Rearrange slightly.
12496
12497 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
12498
12499         * class.c (mono_class_init): Move the code that sets up class->methods to 
12500         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
12501
12502         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
12503         canonical instance of an inflated generic signature.
12504         (mono_type_create_from_typespec): Remove an invalid free.
12505
12506         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
12507
12508 2007-09-18  Marek Habersack  <mhabersack@novell.com>
12509
12510         * domain-internals.h: added a declaration of the
12511         mono_assembly_load_full_nosearch internal function.
12512
12513         * assembly.c (mono_assembly_load_with_partial_name): use
12514         mono_try_assembly_resolve return value properly.
12515         (mono_assembly_load_full_nosearch): copied the function body from
12516         mono_assembly_load_full, without the code to invoke assembly
12517         search hooks.
12518         (mono_assembly_load_full): calls the above new function and if the
12519         assembly is not resolved, invokes the search hooks.
12520
12521         * appdomain.c (mono_runtime_init): restore the global postload
12522         assembly search handlers.
12523
12524 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
12525
12526         * class.c (mono_class_init): Make sure class->methods and class->properties
12527         are never NULL in the generics case.
12528
12529         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
12530
12531 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
12532
12533         * metadata.c (free_generic_class): Disable some code to fix the build.
12534
12535         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
12536
12537         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
12538         from the image mempool.
12539
12540         * metadata.c (free_generic_class): Free more data from the inflated class.
12541
12542         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
12543
12544         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
12545         mempool.
12546         (mono_type_create_from_typespec): Ditto.
12547
12548         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
12549         MonoImage to the caller.
12550         (mono_init_internal): Save the opened image in a global variable.
12551         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
12552
12553         * reflection.c (resolve_object): Fix a leak.
12554
12555         * metadata.c: Fix the freeing of data in the generics caches.
12556         
12557         * metadata.c (free_generic_inst): Comment this out to fix the build.
12558         (free_generic_class): Ditto.
12559
12560         * metadata.c: Free cached generic methods, instantinations and classes when
12561         they are removed from the caches.
12562         (mono_metadata_free_type): Free the type itself.
12563
12564         * class.c: Free the result of mono_class_inflate_generic_type () in a few
12565         places.
12566
12567 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12568
12569         * boehm-gc.c: restrict managed allocs to __thread supporting
12570         architectures.
12571
12572 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
12573
12574         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
12575         (mono_generic_class_get_class): Fix a leak.
12576
12577         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
12578         mono_metadata_free_type ().
12579         (mono_metadata_inflate_generic_inst): Fix a leak.
12580
12581 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12582
12583         * mono-debug.c (free_header_data): Fix a leak missed earlier.
12584
12585         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
12586         mempool.
12587
12588         * mono-debug.c (mono_debug_close_image): Fix call to 
12589         g_hash_table_remove ().
12590
12591 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
12592
12593         * icall-def.h: redirect all the string ctor to the managed
12594         CreateString () methods.
12595         * string-icalls.c, string-icalls.h: removed dead code for string
12596         ctors and icalls.
12597
12598 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12599
12600         * mono-debug.c: Fix memory leaks.
12601
12602 2007-09-14  Jonathan Chambers <joncham@gmail.com>
12603
12604         * threads-types.h: Implement mono_hazard_pointer_set and 
12605         mono_hazard_pointer_clear macros using do/while(0) to fix
12606         compilation with MSVC.
12607         
12608         Code is contributed under MIT/X11 license.
12609
12610 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12611
12612         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
12613         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
12614
12615 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12616
12617         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
12618         icalls.
12619
12620 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12621
12622         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
12623         managed-code allocated as well.
12624
12625 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
12626
12627         * class.c (mono_class_is_assignable_from): Add support for generic variance.
12628
12629 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
12630
12631         * boehm-gc.c: fixed the build after the AOT changes.
12632
12633 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
12634
12635         * wrapper-types.h: Add an ALLOC wrapper type.
12636
12637         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
12638         reference managed allocator methods.
12639
12640 2007-09-12  Marek Safar  <marek.safar@gmail.com>
12641
12642         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
12643         of Type array and not MonoType, a fix suggested by Hari.
12644         
12645 2007-09-12  Jonathan Chambers <joncham@gmail.com>
12646
12647         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
12648         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
12649         
12650         Code is contributed under MIT/X11 license.
12651
12652 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12653
12654         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
12655
12656 2007-09-12  Marek Habersack  <mhabersack@novell.com>
12657
12658         * image.c (do_mono_image_open): if assembly file fails to open and
12659         MONO_IOMAP is in effect, try to find the path in a
12660         case-insensitive way.
12661
12662         * appdomain.c (mono_runtime_init): do not install postload hooks -
12663         tests show that MS.NET doesn't use anything of that sort to
12664         trigger the AppDomain.AssemblyResolve event.
12665         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
12666         made non-static.
12667         (mono_runtime_init): init portability helpers here.
12668
12669         * assembly.c (mono_assembly_load_with_partial_name): if other   
12670         attempts fail, trigger the AppDomain.AssemblyResolve event handler
12671         to resolve the assembly.
12672
12673         * domain-internals.h: added mono_try_assembly_resolve and marked
12674         it as internal.
12675
12676 2007-09-11  Jb Evain  <jbevain@novell.com>
12677
12678         * object-internals.h (MonoReflectionDynamicMethod): add
12679         a `MonoReflectionType *owner` field. The owner is used
12680         * reflection.c:
12681         (mono_reflection_create_dynamic_method): use the owner of the dynamic
12682         method as the class declaring the dynamic method.
12683         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
12684         dynamic method to the declaring type of the methodbuilder.
12685
12686 2007-09-11  Mark Probst  <mark.probst@gmail.com>
12687
12688         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
12689         rules for calling methods via reflection.
12690
12691 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
12692
12693         * reflection.c (resolve_object): Add support for MonoGenericClass. 
12694         Inflate MonoType's.
12695
12696 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
12697
12698         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
12699         provide a managed method that does fast allocations without needing
12700         a managed->unmanaged transition. Boehm GC implementation currently
12701         enabled for ptrfree objects on sane architectures.
12702
12703 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
12704
12705         * marshal.c, marshal.h: exported a couple of useful functions and
12706         added mono_mb_get_label () to easily handle backward branches.
12707
12708 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
12709
12710         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
12711
12712 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12713
12714         * loader.c (find_method): Fixed the regression introduced while
12715         fixing bug #81466.
12716
12717 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
12718
12719         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
12720         well.
12721         
12722         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
12723         icall.c reflection.c: Pass a MonoGenericContext argument to 
12724         mono_lookup_dynamic_token ().
12725
12726         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
12727         #82744.
12728         
12729 2007-09-09  Robert Jordan  <robertj@gmx.net>
12730
12731         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
12732         for generic methods.
12733
12734         * object.c (mono_object_get_virtual_method): Handle generic methods.
12735         Fixes bug #78882.
12736
12737         Code is contributed under MIT/X11 license.
12738
12739 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
12740
12741         * image.c: fix locking in mono_image_load_file_for_image ().
12742
12743 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
12744
12745         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
12746         used only as a cache: added an icall to fill it.
12747
12748 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
12749
12750         * reflection.h: exposed mono_reflection_free_type_info
12751         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
12752         since mono_reflection_bind_generic_parameters makes a copy of it.
12753         * reflection.c (free_type_info): subinfos should be freed.
12754         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
12755         made non static.
12756         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
12757         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
12758         this fixes #82695 and #81726.
12759    
12760
12761 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
12762
12763         * process.h, process.c:  added support for user profile/info in
12764           ProcessStartInfo. For now only Windows works.
12765
12766 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12767
12768         * metadata.c: consider the generic arguments when comparing
12769         signatures (bug #82614).
12770
12771 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12772
12773         * cil-coff.h, image.c: updated assembly loader to cope with the
12774         PE32+ 64 bit file format.
12775
12776 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12777
12778         * assembly.c, class.c, domain.c, loader.c: remove useless
12779         inclusion of cil-coff.h.
12780
12781 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
12782
12783         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
12784         if interface is marked with CoClassAttribute. 
12785    
12786         Code is contributed under MIT/X11 license.
12787
12788 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12789
12790         * sgen-gc.c: ensure no object from the to space is copied again or finalized
12791         if it's seen twice in major collections.
12792
12793 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12794
12795         * sgen-gc.c: big objects are not copied to the gray area, but they
12796         need to be considered for scanning, too, if they are brought alive
12797         by an object ready for finalizations or a survived one.
12798
12799 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12800
12801         * sgen-gc.c: properly account the number of disappearing links when
12802         they are nullified.
12803
12804 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
12805
12806         * sgen-gc.c: share the code to scan the registered roots between the
12807         different types of collections.
12808
12809 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
12810
12811         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
12812
12813 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
12814
12815         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
12816         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
12817
12818 2007-08-28  Mark Probst  <mark.probst@gmail.com>
12819
12820         * security-manager.c (mono_security_manager_get_methods):
12821         LinkDemandSecurityException now has 2 arguments instead of 3.
12822
12823 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
12824
12825         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
12826         platforms which need it.
12827
12828 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12829
12830         * sgen-gc.c: unregister thread data structures with a pthread_key_t
12831         dtor.
12832
12833 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
12834
12835         * threads.c: free the thread static data on thread exit.
12836
12837 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
12838
12839         * class.c: walk the hierarchy to find the generic definition for
12840         a class (fixes runtime part of bug #82498).
12841
12842 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
12843
12844         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
12845         ...
12846
12847         * image.c (mono_image_close): Here. Hopefully fixes #82510.
12848
12849 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12850
12851         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
12852
12853 2007-08-24  Robert Jordan  <robertj@gmx.net>
12854
12855         * appdomain.c: don't perform the ':'->';' substitution on Win32.
12856
12857 2007-08-24  Jb Evain  <jbevain@novell.com>
12858
12859         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
12860         for byref types.
12861
12862 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12863
12864         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
12865         #82286.
12866
12867 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
12868
12869         * assembly.c: Fix a warning.
12870         
12871 2007-08-23  Marek Habersack  <mhabersack@novell.com>
12872
12873         * appdomain.c: parse the <runtime> section looking for the probing
12874         element with the 'privatePath' attribute, which sets additional
12875         directories in which the runtime should look for assemblies.
12876
12877 2007-08-23  Robert Jordan  <robertj@gmx.net>
12878
12879         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
12880         Fixes #82499.
12881
12882 2007-08-23  Martin Baulig  <martin@ximian.com>
12883
12884         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
12885         _mono_debug_init_corlib() and remove it from the header file.
12886
12887 2007-08-23  Martin Baulig  <martin@ximian.com>
12888
12889         * mono-debug-debugger.c
12890         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
12891         don't notify the debugger about it.
12892
12893         * mono-debug-debugger.h
12894         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
12895
12896 2007-08-23  Robert Jordan  <robertj@gmx.net>
12897
12898         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
12899         Code is contributed under MIT/X11 license.
12900
12901 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12902
12903         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
12904
12905 2007-08-22  Martin Baulig  <martin@ximian.com>
12906
12907         * mono-debug.c: Store debugging info on a per-domain basis and
12908         free it on domain unload.  Add support for unloading symbol files.
12909
12910         * mono-debug.h
12911         (MonoDebugList): New typedef.
12912         (MonoSymbolTable):
12913         - add `data_tables and `type_table'.
12914         - replace 'symbol_files' and `num_symbol_files' with a
12915           `MonoDebugList *'.
12916         (mono_debug_data_table): Removed.
12917         (mono_debug_list_add): New public function.
12918         (mono_debug_list_remove): New public function.
12919         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
12920         (mono_debug_init_2_memory): Renamed into
12921         mono_debug_open_image_from_memory().
12922         (mono_debug_close_image): New public function.
12923         (mono_debug_domain_create): Likewise.
12924         (mono_debug_domain_unload): Likewise.
12925         (MONO_DEBUGGER_VERSION): Bump to 60.
12926
12927         * mono-debug-debugger.h
12928         (MonoDebuggerEvent):
12929         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
12930         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
12931         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
12932         - rename `THREAD_CREATED' and `THREAD_EXITED' into
12933           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
12934         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
12935           meaning.
12936         (mono_debugger_add_symbol_file): Removed.
12937         (mono_debugger_add_type): Removed.
12938         (mono_debugger_lookup_type): Removed.
12939         (mono_debugger_lookup_assembly): Removed.
12940
12941         * domain.c
12942         (mono_domain_create): Call mono_debug_domain_create().
12943         (mono_init_internal): Call mono_debug_init_corlib().
12944
12945         * assembly.c
12946         (mono_assembly_close): Call mono_debug_close_image().
12947
12948 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
12949
12950         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
12951         mmap call.
12952
12953 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
12954
12955         * sgen-gc.c: ensure section->pin_queue_end is initialized
12956         correctly when non pinning objects in the section have been found.
12957
12958 2007-08-22  Marek Habersack  <mhabersack@novell.com>
12959
12960         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
12961         containing a list of directories separated by ':'. MSDN docs say
12962         the directories should be separated with ';'. Part of a bugfix for
12963         bug #81446
12964
12965 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
12966
12967         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
12968         it should MonoType and not MonoClass.
12969
12970 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
12971
12972         * culture-info-table.h : regenerated.
12973
12974 2007-08-20  William Holmes  <billholmes54@gmail.com>
12975
12976         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
12977          to call ReplaceFile Kernel32 on windows or in io-layer.
12978         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
12979         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
12980          as an internal call.
12981
12982         Code is contributed under MIT/X11 license.
12983
12984 2007-08-20  Jb Evain  <jbevain@novell.com>
12985
12986         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
12987         and MONO_EXCEPTION_FIELD_ACCESS.
12988
12989         * debug-helpers.[c|h]: new mono_field_full_name function.
12990
12991 2007-08-20  Mark Probst  <mark.probst@gmail.com>
12992
12993         * class.c: Removed class_security_level() and moved it to
12994         security-core-clr.c.
12995
12996         * security-core-clr.c, security-core-clr.h: class_security_level()
12997         is now public and renamed to mono_security_core_clr_class_level().
12998         It also looks for security attributes in the classes a class is
12999         nested in.
13000
13001 2007-08-20  Mark Probst  <mark.probst@gmail.com>
13002
13003         * security-core-clr.c, security-core-clr.h: CoreCLR security
13004         utility functions.
13005
13006         * Makefile.am: Added security-core-clr.[ch].
13007
13008         * security-manager.c, security-manager.h: Functions and enum for
13009         setting and getting the security mode.
13010
13011         * class.c: CoreCLR security checks.
13012
13013 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13014
13015         * icall-def.h, process.c, process.h: implemented icall to get
13016         user/system processor times.
13017
13018 2007-08-17  Mark Probst  <mark.probst@gmail.com>
13019
13020         * domain.c, threads.c, class-internals.h, domain-internals.h: New
13021         reader-lock-free jit_info_table.
13022
13023 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
13024
13025         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
13026
13027         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
13028
13029         * object-internals.h (MonoException): Add missing _data member.
13030
13031 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13032
13033         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
13034         checking that only methods with matching qname or fqname are picked
13035         from implemented interfaces.
13036
13037 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13038
13039         * verify.c (do_newarr):added, do type verification of
13040         newarr ops, push the right value on the eval stack.
13041         * verify.c (mono_method_verify): use do_newarr
13042
13043
13044 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13045
13046         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
13047         factored the common code into get_boxable_mono_type, which
13048         is now using mono_type_get_full, this fixed byref related tests.
13049
13050 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13051
13052         * class.c: added mono_type_get_full, this function has the same
13053         behavior of mono_class_get_full but the returned MonoType has
13054         all metadata of the associated token in case of a typespec token.
13055         * class.c: added mono_type_retrieve_from_typespec, used by 
13056         mono_type_get_full to retrieve the token type.
13057         * class.c (mono_class_create_from_typespec): changed to use
13058         mono_type_retrieve_from_typespec.
13059         * class.c (mono_ldtoken): changed to use mono_type_get_full
13060         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
13061         * class-internals.h: exported mono_type_get_full for internal use.
13062
13063 2007-08-16  Jb Evain  <jbevain@novell.com>
13064
13065         * domain.c (supported_runtimes): add entry for
13066         the 'moonlight' runtime version.
13067
13068 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13069
13070         * verify.c (mono_method_verify): small typo sliped in.  
13071
13072 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13073
13074         * verify.c (do_unbox_value): added, do type verification of
13075         unboxing ops
13076         * verify.c (mono_method_verify): use do_unbox_value
13077
13078
13079 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13080
13081         * verify.c (dump_stack_value): fixed typo, was printing string
13082         instead of object on stack.
13083         * verify.c (do_box_value): moved the byref check up as it leads
13084         to invalid code and should be done earlier.
13085         * verify.c: improved error messages for and ldobj
13086
13087 2007-08-15  William Holmes  <billholmes54@gmail.com>
13088
13089         * marshal.c (emit_marshal_custom): Omit the call to 
13090           marshal_native_to_managed when calling native to managed 
13091           and the argument is specified as an out argument.
13092
13093         Code is contributed under MIT/X11 license.
13094
13095 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13096
13097         * verify.c: fixed the type checks for generics, function pointers and vectors.
13098         Added type verification for ldobj and ldtoken. The verifier
13099         would segfault if header or signature of a method contained references
13100         to non-existant types.
13101
13102 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13103
13104         * marshal.c (cominterop_get_ccw): Patch from
13105         Bill Holmes to no walk up interface hierarchy. 
13106         All parent methods should be present in the interface for COM.
13107    
13108         Code is contributed under MIT/X11 license.
13109
13110 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13111
13112         * marshal.c (emit_marshal_com_interface): Patch from
13113         Bill Holmes to handle COM Interfaces as return values
13114         for native->managed calls.
13115    
13116         Code is contributed under MIT/X11 license.
13117
13118 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
13119
13120         * marshal.c (cominterop_get_idispatch_for_object): Implement
13121         for runtime callable wrappers.
13122    
13123         Code is contributed under MIT/X11 license.
13124
13125 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
13126
13127         * pedump.c (main): changed from mono_init to mono_init_from_assembly
13128         so 2.0 types are accessible
13129
13130
13131 2007-08-13  Miguel de Icaza  <miguel@novell.com>
13132
13133         * domain.c (mono_init_internal): Call mono_assembly_load_friends
13134         once we load mscorlib.   Due to the order in which we initialize,
13135         the mono_assembly_load_full routine that loads mscorlib did not
13136         load friends.   We now load it once we load the
13137         mono_defaults.internals_visible_class class. 
13138
13139         * assembly.c: Expose the mono_load_friend_assemblies method.
13140
13141 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
13142
13143         * verify.c: improved the handling of boxing, better
13144         type checking for unary ops and conversion. Fix bug
13145         regarding managed pointer compatibility checking
13146
13147 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
13148
13149         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
13150
13151         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
13152
13153 2007-08-09  Raja R Harinath  <rharinath@novell.com>
13154
13155         * reflection.c (dup_type): Remove.
13156         * class.c (dup_type): Remove.
13157         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
13158         instead of the dodgy 'dup_type'.
13159         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
13160         handle the case where 'dup_type' needed the second argument.
13161
13162 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
13163
13164         * domain.c: Fix a warning.
13165
13166 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13167
13168         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
13169         checking that methods with the same fqname are not overridden
13170         with a method from an ancestor.
13171
13172 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
13173
13174         * threads.c (free_thread_static_data_helper): Avoid a crash if
13175         thread->static_data is not yet set.
13176
13177 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
13178
13179         * marshal.c: Use correct image when emitting
13180         native wrapper for COM calls.
13181    
13182         Code is contributed under MIT/X11 license.
13183
13184 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
13185
13186         * icall-def.h, security.c, security.h :
13187           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
13188
13189 2007-08-07  Martin Baulig  <martin@ximian.com>
13190
13191         * mono-debug-debugger.h
13192         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
13193
13194         * domain.c (mono_domain_free): Call
13195         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
13196
13197 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
13198
13199         * verify.c (check_underflow, check_overflow): error message now returns IL offset
13200         * verify.c (in_same_block): code should test if either offset is inside the clauses
13201         * verify.c (mono_method_verify): push the exception into the eval stack of exception
13202         and filter blocks
13203
13204 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
13205
13206         * image.c (mono_image_close): Fix a leak.
13207
13208         * object.c (mono_runtime_invoke_array): Avoid using alloca.
13209
13210         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
13211
13212 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
13213
13214         * domain.c, threads.c, threads-types.h: fix memory retention issue
13215         with thread static variables not being cleared on domain unload.
13216         Reuse thread static slots after domain unload.
13217
13218 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
13219
13220         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
13221         nullable type.
13222
13223         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
13224         now done in mono_runtime_invoke_array.
13225
13226         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
13227         receiver is a nullable type.
13228
13229         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
13230         generic parameter.
13231
13232 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
13233
13234         * marshal.c: Implement COM Objects as return type for 
13235         managed->unmanaged calls. Added Release calls for COM Object
13236         out/return values in managed->unmanaged calls.
13237
13238         Code is contributed under MIT/X11 license.
13239
13240 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
13241
13242         * threads.h, threads-type.h: move the hazard pointer declarations
13243         to the private header.
13244
13245 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
13246
13247         * file-io.c, appdomain.c: memory leak fixes.
13248
13249 2007-08-02  Dick Porter  <dick@ximian.com>
13250
13251         * socket-io.c
13252         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
13253         SO_REUSEADDR setting into io-layer/sockets.c.
13254
13255 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
13256
13257         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
13258         from Object when called on a generic parameter. Fixes #82211.
13259
13260 2007-08-01  Dick Porter  <dick@ximian.com>
13261
13262         * file-io.c (convert_share): Test FileShare values bit-by-bit.
13263         Fixes bug 79250 yet again.
13264
13265 2007-07-30  Martin Baulig  <martin@ximian.com>
13266
13267         Merged the `debugger-dublin' branch.
13268
13269         * mono-debug.h
13270         (MonoDebugDataTable): New typedef.
13271         (MonoDebugMethodAddressList): New typedef.
13272         (MonoDebugWrapperData): Removed.
13273         (MonoDebugSymbolTable): Removed `current_data_table',
13274         `current_data_table_size', `current_data_table_offset'.
13275         (MonoDebugDataItemType): Moved into mono-debug.c.
13276         (MonoDebugMethodJitInfo): Remove `address'.
13277         (mono_debug_data_table): New global variable.
13278         (mono_debug_lookup_method_addresses): New public function.
13279         (mono_debug_find_method): Take a `MonoMethod *', not a
13280         `MonoDebugMethodInfo *'.
13281
13282         * mono-debug.c: Drop support for the old symbol tables.
13283
13284 2007-06-28  Martin Baulig  <martin@ximian.com>
13285
13286         * mono-debug.c (mono_debug_debugger_version): New public variable.
13287
13288 2007-07-31  William Holmes  <billholmes54@gmail.com>
13289
13290         * metadata.c Changed mono_type_create_from_typespec to not insert
13291           the type into the hash map until after
13292           do_mono_metadata_parse_type has completed.
13293         Fixes Bug #82194
13294         Code is contributed under MIT/X11 license.
13295
13296 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
13297
13298         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
13299         generic parameter. Fixes #82211.
13300
13301 2007-07-27  Jb Evain  <jbevain@novell.com>
13302
13303         * pedump.c (dump_metadata, dump_metadata_header): dump
13304         versions contained in the metadata header.
13305
13306 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13307
13308         * threads.c: register small_id_table with the GC.
13309
13310 2007-07-27  Mark Probst  <mark.probst@gmail.com>
13311
13312         * threads.c, threads.h, class-internals.h, object-internals.h:
13313         Hazard pointers, to be used by lock-free parallel algorithms.
13314
13315 2007-07-26  Dick Porter  <dick@ximian.com>
13316
13317         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
13318         routine on non-windows platforms, as I've not managed to think of
13319         a non-kludgy way of doing this.  Finishes off bug 78739.
13320
13321 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
13322
13323         * object.c: properly setup interface_bitmap in proxy vtables.
13324
13325 2007-07-25  Marek Habersack  <mhabersack@novell.com>
13326
13327         * appdomain.c (get_shadow_assembly_location): do not use TickCount
13328         to create unique shadow copy target directories, use the domain's
13329         serial number instead. Each domain gets a unique target directory
13330         that way.
13331
13332         * domain.c (mono_domain_create): added code to increment domain
13333         shadow copy serial number and cache the value in the current
13334         domain structure.
13335
13336         * domain-internals.h (struct _MonoDomain): added a new field -
13337         shadow_serial to hold the serial number used in generation of
13338         shadow-copy directories. This is to make sure that the directory
13339         name is unique for each and every domain created. We avoid a race
13340         condition with overriding assemblies already in use by other app
13341         domains.
13342
13343 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
13344
13345         * class.c (mono_bounded_array_class_get): fixed memory leak when 
13346         binding generic parameters.
13347
13348 2007-07-24  Raja R Harinath  <rharinath@novell.com>
13349
13350         * metadata.c (do_mono_metadata_parse_generic_class): Use
13351         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
13352         error.
13353
13354 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
13355
13356         * loader.c, class-internals.h, reflection.c: removed the per-method
13357         generics hashtable: we use the global one through the call of
13358         mono_class_inflate_generic_method ().
13359
13360 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
13361
13362         * class.c, metadata.c, class-internals.h: introduce yet another
13363         generics global cache for inflated methods (fixes 98% of the perf
13364         issue in bug #81806).
13365
13366 2007-07-23  Raja R Harinath  <rharinath@novell.com>
13367
13368         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
13369         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
13370         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
13371         return a MonoGenericInst containing (a copy) of those types.
13372         (mono_metadata_inflate_generic_inst): Update to changes.
13373         (mono_metadata_parse_generic_inst): Likewise.
13374         (mono_get_shared_generic_inst): Likewise.
13375         * reflection.c (mono_class_bind_generic_parameters): Likewise.
13376         (mono_reflection_bind_generic_method_parameters): Likewise.
13377         * metadata-internals.h: Likewise.
13378         * icall.c (free_generic_context): Kill.
13379         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
13380
13381         * reflection.c (reflection_methodbuilder_to_mono_method): Use
13382         mono_metadata_type_dup.
13383         * marshal.c (mono_mb_create_method): Likewise.
13384
13385         * metadata.c (mono_metadata_type_dup): Rename from
13386         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
13387         MonoImage.  Handle a few more cases, esp. when no mempool is given.
13388         * marshal.c, metadata-internals.h: Update to changes.
13389
13390 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13391
13392         * class.c: fixed a small leak for array classes and removed warning.
13393
13394 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
13395
13396         * loader.c (mono_method_get_param_token): Make this work on generic methods.
13397         Return 0x8000000 for return parameters. Fixes #82161.
13398
13399 2007-07-21  Marek Habersack  <grendello@gmail.com>
13400
13401         * appdomain.c (get_shadow_assembly_location): append the current
13402         ticks value to the path. Avoids overwriting the same assemblies by
13403         several threads at the same time.
13404
13405 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
13406         and Raja R Harinath  <rharinath@novell.com>
13407
13408         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
13409         Simplify slightly.
13410         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
13411         property for testing if a method is a generic method definition.
13412
13413 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
13414
13415         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
13416
13417 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13418
13419         * verify.c: used function from private branch, reverted to the one in class.h 
13420
13421 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13422
13423         * verify.c: a typo slipped in and the code wont compile
13424
13425 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13426
13427         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
13428         disabled box instruction as it is doing the wrong thing
13429         improved stack dump messages, now it is easier to debug type related issues
13430
13431
13432 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
13433
13434         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
13435
13436 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13437
13438         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
13439         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
13440         grouped with class and valuetype. This change will simply 
13441         the code as it should be handled just like unmanaged pointers.
13442
13443 2007-07-19  Mark Probst  <mark.probst@gmail.com>
13444
13445         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
13446
13447 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13448
13449         * verify.c: several stack merge issues fixed, reference comparisons now
13450         check the type size. strict type check now works correctly.
13451         added more uses of IS_MANAGED_POINTER macro.
13452         fixed issues pointed by running the test suite against .net.
13453         
13454
13455 2007-07-19  Mark Probst  <mark.probst@gmail.com>
13456
13457         * class.c, loader.c, class-internals.h: Removed the
13458         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
13459         defines.
13460
13461         * icall.c: Better error checking in some internal reflection
13462         methods.
13463
13464 2007-07-18  William Holmes  <billholmes54@gmail.com>
13465
13466         * filewatcher.c : removed unused variable 'filename' in 
13467           ves_icall_System_IO_FSW_SupportsFSW
13468
13469 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
13470
13471         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
13472         obsolete, removed.
13473
13474 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
13475
13476         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
13477         
13478         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
13479
13480 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
13481
13482         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
13483         Implement generics support.
13484         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13485
13486         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
13487         type_args and method_args arguments.
13488         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
13489         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13490         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
13491
13492 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
13493
13494         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
13495           It adds a rootimage parameter to mono_reflection_get_type_internal,
13496           adds new function mono_reflection_get_type_with_rootimage and use
13497           the rootimage to resolve the types instead of the current image
13498
13499 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
13500
13501         * culture-info-table.h: Forgot to update after r78304.
13502
13503 2007-07-13  Raja R Harinath  <rharinath@novell.com>
13504
13505         * class.c (mono_class_is_open_constructed_type)
13506         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
13507
13508 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
13509
13510         * class.c (mono_bounded_array_class_get):  method fails if used with
13511         an incomplete TypeBuilder enum (no basetype field), fixed it by 
13512         avoiding calculating the size for such array as it cannot be instantiated.
13513         Fix bug #82015
13514
13515 2007-07-12  Raja R Harinath  <rharinath@novell.com>
13516
13517         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
13518         field.
13519         * metadata.c, reflection.c: Update to changes.
13520
13521 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
13522
13523         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
13524         mono_class_is_valid_enum, they are used to valide a enum when loading.
13525         * reflection.c: used new functions to throw TypeLoadException when and
13526         invalid enum is build with TypeBuilder. Fixes #82018
13527   
13528 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13529
13530         * object.c: forgot commit of mono_class_setup_methods () to access
13531         iface->methods.
13532         * object-internals.h: added a few more handy fields to
13533         MonoIMTCheckItem.
13534
13535 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
13536
13537         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
13538         iface->methods.
13539
13540 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
13541
13542         * class-internals.h, object-internals.h, object.c: IMT-based
13543         interface invocation core from Massimiliano Mantione
13544         (massi@ximian.com) with a reworked arch-specific interface,
13545         bsearch implementation and a few bugfixes and memory savings by me.
13546
13547 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
13548
13549         * class.c (mono_class_create_from_typedef): mono would segfault if 
13550         an enum did not have a __value field. It now throws a TypeLoadException
13551         for such cases. Fix bug #82022
13552
13553 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
13554
13555         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
13556
13557 2007-07-09  Mark Probst  <mark.probst@gmail.com>
13558
13559         * class.c (mono_class_init): If a class is already inited but has
13560         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
13561
13562 2007-07-09  Mark Probst  <mark.probst@gmail.com>
13563
13564         * class.c: Properly handle the case of an unimplemented interface
13565         method.  Fixes: 81673.
13566
13567 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
13568
13569         * class-internals.h, object.c: cleanup patch from massi: use
13570         MonoVTable->interface_bitmap since the vtable interfaces offset array
13571         is going away.
13572
13573 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
13574
13575         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
13576         GetMDStreamVersion icall instead.
13577
13578 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
13579
13580         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
13581         not use mono_dl_build_path() with a full library name: makes
13582         fallbacks to libgaim and libfam work.
13583
13584 2007-07-06  William Holmes  <billholmes54@gmail.com>
13585
13586         * assembly.c: Added a continue statement in probe_for_partial_name when
13587          parse_assembly_directory_name fails.  Fixes : 82002
13588
13589 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
13590
13591         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
13592         and added a verification  for TYPEDBYREF.
13593         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
13594         make native int interchangeable with int32 and some small cleanup and formating.
13595         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
13596         handle byref of byref.
13597         * verify.c (push_local): handle byref of byref.
13598         * verify.c (do_binop): invalid mix of values is unverifiable
13599         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
13600         added visibility checks
13601         * verify.c (field related method): added visibility checks
13602         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
13603
13604 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
13605
13606         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
13607         string.
13608
13609 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
13610
13611         * profiler.c (mono_profiler_load): Fix an off-by-one error.
13612
13613         * marshal.c (emit_marshal_string): When returning a string from managed code,
13614         allways make a copy even for unicode strings. Fixes #81990.
13615
13616 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
13617
13618         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
13619         of byref generic inst types (bug #81997).
13620
13621 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
13622
13623         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
13624         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
13625
13626 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
13627
13628         * marshal.c (emit_marshal_string): Add support for unicode strings in
13629         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
13630
13631 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
13632
13633         * verify.c: field load/store are now verified, missing only access checks now
13634
13635 2007-06-28  Martin Baulig  <martin@ximian.com>
13636
13637         * mono-debug.c (mono_debug_debugger_version): New public variable.
13638
13639 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
13640
13641         * locales.c: When constructing DateTimeFormat or NumberFormat for
13642         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
13643         MonoCultureInfo contructed from the current locale is always
13644         read-only and has UseUserOverride set to true. All MonoCultureInfo
13645         instances returned for GetCultures have both IsReadOnly and
13646         UseUserOverride set to true. Fixes part of bug #81930.
13647
13648 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
13649
13650        * icall-def.h: Update System.__ComObject icalls
13651        * marshal.c: Avoid managed transition (and object creation)
13652        when looking up COM interface in RCW.
13653        * marshal.h: Ditto.
13654        
13655        Code is contributed under MIT/X11 license.
13656
13657 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
13658
13659         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
13660         to avoid crashes during assembly unloading.
13661
13662 2007-06-22  Raja R Harinath  <rharinath@novell.com>
13663
13664         Fix MethodInfo.IsGenericMethodDefinition
13665         * reflection.c (mono_reflection_bind_generic_method_parameters):
13666         Rearrange code to ensure we always uses a generic method definition.
13667         * class.c (mono_class_inflate_generic_method_full): Set
13668         'generic_container' field only for generic method definitions.
13669         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
13670         Use presense of 'generic_container' field as indication of being a
13671         generic method definition.
13672
13673 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
13674
13675         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13676
13677         * object-internals.h: Reflect changes in the layout of the managed Delegate
13678         class.
13679         
13680         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
13681         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
13682         runtime memory used by the dynamic method. Fixes #77146.
13683
13684 2007-06-21  Dick Porter  <dick@ximian.com>
13685
13686         * file-io.h: 
13687         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
13688         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
13689         81767.
13690
13691 2007-06-21  Raja R Harinath  <rharinath@novell.com>
13692
13693         * reflection.c (method_encode_methodspec): Add a tripwire.
13694         * class.c (inflate_generic_type): The fully open generic type is
13695         not the same as the generic type definition.
13696
13697 2007-06-21  Martin Baulig  <martin@ximian.com>
13698
13699         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
13700
13701         * mono-debug-debugger.h
13702         (MonoDebuggerBreakpointInfo): Removed.
13703         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
13704         (mono_debugger_remove_breakpoint): Likewise.
13705         (mono_debugger_breakpoint_callback): Likewise.
13706         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
13707
13708 2007-06-21  Raja R Harinath  <rharinath@novell.com>
13709
13710         * metadata.c (mono_metadata_lookup_generic_class): The fully open
13711         generic type is not the same as the generic type definition.
13712         * class.c (mono_generic_class_get_class): Likewise.
13713
13714 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
13715
13716         * icall.c: The second argument to 
13717         System.Reflection.MethodBase.GetMethodFromHandleInternalType
13718         is a MonoType not a MonoClass.
13719
13720 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
13721
13722         * verify.c: support for function pointers in the verifier
13723
13724 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
13725
13726         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
13727
13728 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
13729
13730         * assembly.c: removed Mono.Data.SqliteClient from the list of
13731         forward-compatible assemblies as it breaks the ABI (bug #81899).
13732
13733 2007-06-19  Raja R Harinath  <rharinath@novell.com>
13734
13735         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
13736         lookup/update with the loader lock.
13737         * reflection.c (mono_class_bind_generic_parameters): No need to
13738         protect mono_metadata_lookup_* with the loader lock.
13739         * class.c (inflate_generic_type): Likewise.
13740         
13741         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
13742         on a generic instantiated type.
13743
13744 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
13745
13746         *verify.c: produce meanfull error messages on verification error
13747         *verify.c: fixed some cases of verification errors reported as validation errors
13748         *pedump.c: fixed the error name array, now it shows validation errors properly
13749         *verify.h: fixed the contant that should be used for verification errors
13750
13751 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
13752
13753         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
13754         for bug #77596, 81858 and 80743 (generics data structures on domain
13755         unload).
13756
13757 2007-06-15  Raja R Harinath  <rharinath@novell.com>
13758
13759         Avoid allocating 'MonoGenericContext' on the heap.
13760         * class-internals (_MonoMethodInflated::context): Make field
13761         inline, not a pointer.
13762         * loader.c (method_from_methodspec): Allocate 'new_context' on the
13763         stack.  Use the context embedded within the inflated method as the
13764         hash key, rather than 'new_context'.
13765         * class.c (inflate_generic_context): Simplify.  Return a struct
13766         rather than allocating on the heap.
13767         (mono_class_inflate_generic_method_full): Update to changes.  Now,
13768         doesn't salt away a copy of the context -- simplifying the
13769         lifetime rules of a 'MonoGenericContext *'.
13770         (mono_method_get_context): Return pointer to embedded context.
13771         (setup_generic_array_ifaces): Allocate temporary context on stack.
13772         * reflection.c (inflate_mono_method): Likewise.
13773         (mono_reflection_bind_generic_method_parameters): Likewise.
13774         Use the context embedded within the inflated method as the hash key.
13775
13776         Avoid a source of allocation of 'MonoGenericContext'.
13777         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
13778         and 'cached_context' fields into embedded 'MonoGenericContext' field.
13779         * class.c: Update to changes.
13780         (mono_generic_class_get_context): Simplify drastically.  Now just
13781         returns a pointer to the field.
13782         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
13783         argument as a const pointer.
13784         (mono_metadata_generic_context_equal): Likewise.
13785         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
13786         Update to changes.
13787
13788 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
13789
13790         * verify.c improved the handling of brtrue/brfalse, factored out common code
13791
13792 2007-06-14  Raja R Harinath  <rharinath@novell.com>
13793
13794         Kill MonoGenericMethod.
13795         * class-internals.h (MonoGenericContext::method_inst): Rename from
13796         'gmethod' and convert to a MonoGenericInst.
13797         (MonoGenericMethod): Remove.
13798         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
13799         * loader.c (method_from_methodspec): Update to changes.  Use a
13800         MonoGenericContext as the key to the hashtable.
13801         * metadata.c (mono_metadata_generic_context_equal): Rename from 
13802         'mono_metadata_generic_method_equal' and take MonoGenericContext.
13803         (mono_metadata_generic_context_hash): Likewise from
13804         'mono_metadata_generic_method_hash'.  Change hash function.
13805         (mono_metadata_load_generic_params): Update to changes.
13806         (mono_get_shared_generic_method): Remove.
13807         * metadata-internals.h (mono_get_shared_generic_method): Remove.
13808         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
13809         (inflate_generic_context): Likewise.
13810         (mono_class_inflate_generic_method_full): Likewise.
13811         (setup_generic_array_ifaces): Likewise.
13812         (mono_class_create_from_typespec): Likewise.
13813         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
13814         (method_encode_methodspec): Update callsite.
13815         (reflection_methodbuilder_to_mono_method): Update to changes.
13816         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
13817         MonoGenericContext as the key to the hashtable.
13818         (inflate_mono_method): Update to changes.
13819
13820         * class-internals.h (MonoGenericMethod::container): Remove.
13821         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
13822
13823 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
13824
13825         * profiler-private.h, profiler.c, profiler.h: added API to profile
13826         exception events.
13827
13828 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
13829
13830         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
13831
13832 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
13833
13834         * verify.c: method invocation is now validated, now we verify parameter types on stack.
13835         Fixed overflow and underflow not aborting the verification process.
13836
13837 2007-06-13  Mark Probst  <mark.probst@gmail.com>
13838
13839         * class-internals.h (MonoStats): Added stats entries for dynamic
13840         code allocations.
13841
13842 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
13843
13844         * loader.c (mono_free_method): Free header->locals and header->clauses.
13845
13846         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
13847         dynamic case.
13848
13849         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
13850
13851         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
13852
13853 2007-06-12  Raja R Harinath  <rharinath@novell.com>
13854
13855         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
13856         the tables.
13857
13858 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13859
13860         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
13861
13862 2007-06-11  Raja R Harinath  <harinath@gmail.com>
13863
13864         MonoGenericMethod on a diet
13865         * class-internals.h (_MonoMethodInflated::reflection_info): Move
13866         here ...
13867         (_MonoGenericMethod::reflection_info): ... from here.
13868         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
13869         Update to changes.
13870         * reflection.c (inflate_mono_method): Likewise.
13871         (mono_reflection_bind_generic_method_parameters): Likewise.
13872
13873 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13874
13875         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
13876         *verify.c: factored long ldarg forms to share code with short forms
13877
13878 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13879
13880         *verify.c: fixed code formating factored some duplicate code
13881         into a new function
13882
13883         *verify.h: fixed binary incompatibility introduced earlier
13884
13885         *pedump.c: fixed formating
13886
13887 2007-06-11  Raja R Harinath  <harinath@gmail.com>
13888
13889         Fix assertion when disassembling Mono.C5.dll
13890         * loader.c (method_from_methodspec): Avoid inflating a method
13891         twice with the same context.  If the methodref is inflated, use
13892         the declaring method instead.
13893
13894         * class.c (mono_class_from_generic_parameter): Fix case similar to
13895         bug #81830 handled below, but for method containers.
13896
13897 2007-06-10  Raja R Harinath  <harinath@gmail.com>
13898
13899         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
13900         get_shared_generic_class.  Directly inflate the instance.
13901         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
13902         (inflate_generic_class): Delete.
13903         (get_shared_generic_class): Delete.  Move setting of
13904         'cached_class' and 'cached_context' ...
13905         * metadata.c (mono_metadata_lookup_generic_class): ... here.
13906
13907         * metadata.c (mono_metadata_lookup_generic_class): Change
13908         signature to take the components of a MonoGenericClass rather than
13909         an allocated MonoGenericClass.  Change semantics to be intern-like.
13910         * reflection.c (mono_class_bind_generic_parameters): Update to
13911         changes.  Make locking region tighter.
13912         * class.c (inflate_generic_class): Update to changes.
13913         (get_shared_generic_class): Likewise.
13914         * metadata-internals.h: Likewise.
13915
13916         * reflection.c (mono_class_bind_generic_parameters): Take and
13917         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
13918         (mono_reflection_bind_generic_parameters): Use
13919         'mono_class_bind_generic_parameters' rather than duplicate the code.
13920         * class.c (mono_bounded_array_class_get): Update to changes.
13921         * object-internals.h: Likewise.
13922
13923         * reflection.c (mono_class_bind_generic_parameters): Only support
13924         parameterizing generic type definitions.  Remove support for other
13925         open types.
13926
13927 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
13928
13929         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
13930
13931         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
13932         in the dynamic case.
13933
13934 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
13935
13936         * threads.c: When cleaning up thread, reset the Background bit.
13937         Fixes bug #81720.
13938
13939 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
13940
13941        * metadata.c: Move variable declarations to top of scope.
13942        * verify.c: Move variable declarations to top of scope.
13943
13944        Code is contributed under MIT/X11 license.
13945
13946 2007-06-08  Raja R Harinath  <rharinath@novell.com>
13947
13948         * reflection.c (mono_class_bind_generic_parameters): Replace
13949         open-coded loop with mono_metadata_inflate_generic_inst.
13950
13951         * class.c (get_shared_generic_class): Don't call
13952         mono_get_shared_generic_inst.  Use the container's own
13953         'class_inst'.
13954
13955         * metadata.c (mono_metadata_load_generic_params): Move
13956         initialization of 'context' field here from ...
13957         * class.c (mono_class_create_from_typedef): ... here, and ...
13958         * loader.c (mono_get_method_from_token): ... here.
13959
13960         * class.c (get_shared_generic_class): Rename from
13961         mono_get_shared_generic_class and make static.
13962         (mono_get_shared_generic_inst): Move to metadata.c.
13963         * loader.c (mono_get_shared_generic_method): Likewise.
13964         * class-internals.h, metadata-internals.h: Update to changes.
13965
13966         Fix #81830
13967         * class.c (mono_class_from_generic_parameter): Don't assume a
13968         generic container owner exists.  Generic containers from monodis
13969         don't have any.
13970
13971 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
13972
13973         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
13974         * verify.h: new typedefs to returns the non-verifiable status
13975         * verify.c: initial implementation of generics, stack merging and object compatibility check
13976
13977 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13978
13979         * class.c, image.c, class-internals.h (MonoImage): class_cache is
13980         a MonoInternalHashTable again (fixed bug in internal hash table
13981         code).
13982
13983 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13984
13985         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
13986         MonoInternalHashTable again (fixed bug in internal hash table
13987         code).
13988
13989 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13990
13991         * class.c, image.c, class-internals.h, domain.c,
13992         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
13993         changes.  Have to figure out what makes them break the SWF
13994         regression.
13995
13996 2007-06-04  Mark Probst  <mark.probst@gmail.com>
13997
13998         * class.c, image.c, class-internals.h (MonoImage): class_cache is
13999         a MonoInternalHashTable now.
14000
14001 2007-06-04  Mark Probst  <mark.probst@gmail.com>
14002
14003         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
14004         MonoInternalHashTable now.
14005
14006 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
14007
14008         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
14009         invoke_impl code.
14010
14011         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
14012
14013         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
14014         dependent trampoline.
14015
14016         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14017
14018         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
14019
14020 2007-05-29  Robert Jordan  <robertj@gmx.net>
14021
14022         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
14023
14024 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
14025
14026         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
14027
14028 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
14029
14030        * marshal.c: Fix interface lookup loops for
14031        cominterop_get_com_slot_for_method and 
14032        cominterop_get_method_interface. Only need to lookup
14033        if type is a class, else use interface type method is on.
14034
14035        Code is contributed under MIT/X11 license.
14036
14037 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
14038
14039         * reflection.c: HasSecurity can be present even if no specially 
14040         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
14041         SecurityAttribute). Fix CAS regression tests on buildbot.
14042
14043 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
14044
14045        * appdomain.c: Add configure checks for header files.
14046        * image.c: Add configure checks for header files.
14047        * file-io.c: Add configure checks for header files.
14048        * debug-mono-symfile.c: Add configure checks for header files.
14049        * threadpool.c: Add configure checks for header files.
14050        * console-io.c: Add configure checks for header files.
14051        * profiler.c: Add configure checks for header files.
14052        * rawbuffer.c: Add configure checks for header files.
14053        * icall.c: Add configure checks for header files.
14054        * rand.c: Add configure checks for header files.
14055        * socket-io.c: Add configure checks for header files.
14056
14057        Code is contributed under MIT/X11 license.
14058
14059 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
14060
14061         * reflection.c (mono_custom_attrs_from_builders): Remove the 
14062         assertion as it breaks the build.
14063         
14064         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
14065
14066         * reflection.c (lookup_custom_attr): Make a copy here too.
14067
14068         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
14069         dynamic images.
14070
14071         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
14072         images.
14073
14074         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
14075         info.
14076
14077 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
14078
14079         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
14080         (load_cattr_value): Ditto.
14081
14082 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
14083
14084         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
14085
14086 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
14087
14088         * threads.c: In "start_wrapper", set apartment_state to MTA if
14089         apartment_state is Unknown and we're running on 2.0 profile or
14090         higher.
14091         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
14092         to main method, then set apartment_state to Unknown on 1.0 profile,
14093         and MTA on 2.0 profile.
14094
14095 2007-05-16  Jb Evain  <jb@nurv.fr>
14096
14097         * class-internals.h (MonoDefaults): Add an attribute_class and
14098           customattribute_data_class.
14099         * domain.c (mono_init_internal): Populate them.
14100         * reflection.c: Use them to remove duplicates. Make a vew
14101         MonoClass variables `static'.
14102
14103 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
14104
14105         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
14106         step in implementing IMT, so that all isinst checks now can go
14107         through the bitmap.
14108         This was needed because vtables for TransparentProxy need to look
14109         like the vtable of the "target" class, so they need to point to
14110         its interface bitmap directly.
14111
14112         * object.c: inside "mono_class_create_runtime_vtable" and
14113         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
14114
14115 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
14116
14117         * object-internals.h
14118           culture-info.h : added territory field in MonoCulture and
14119           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
14120         * locales.c : fill territory field above too.
14121         * culture-info-table.h : regenerated.
14122
14123 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
14124
14125         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
14126         Fixes #81599.
14127
14128 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
14129
14130         * object.c: Always initialize apartment, even if 
14131         there is no custom attributes on entry point.
14132         
14133         Code is contributed under MIT/X11 license.
14134
14135 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
14136
14137         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
14138         * metadata.c: If no encoding is set, check for unicode
14139         on class.
14140         
14141         Code is contributed under MIT/X11 license.
14142
14143 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14144
14145         * threads.c: Handle if mono_thread_current returns NULL 
14146         
14147         Code is contributed under MIT/X11 license.
14148
14149 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14150
14151         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
14152         in start_wrapper. Added mono_thread_init_apartment_state and
14153         mono_thread_cleanup_apartment_state.
14154         * object.c: Initialize thread apartment state on main thread
14155         by checking for STAThreadAttribute on entry point.
14156         * object-internals.h: Add apartment_state field to MonoThread.
14157         * threads-types.h: Add unmanaged definition of 
14158         System.Threading.ApartmentState, MonoThreadApartmentState.
14159         
14160         Code is contributed under MIT/X11 license.
14161         
14162 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
14163
14164         * class.c: Fix windows build.
14165         * class-internals.h: Fix windows build.
14166         
14167         Code is contributed under MIT/X11 license.
14168
14169 2007-05-08  Robert Jordan  <robertj@gmx.net>
14170
14171         * process.c (CreateProcess_internal):
14172         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
14173         .CreateNoWindow was specified. Fixes #81496.
14174
14175 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14176
14177         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
14178         step in implementing IMT, replaced it with two compact arrays
14179         (interfaces_packed and interface_offsets_packed) and a bitmap that
14180         is used for isinst checks (interface_bitmap).
14181
14182         * class.c: (compare_interface_ids): compare function to pass to
14183         bsearch when looking for an interface with a given id.
14184         (mono_class_interface_offset): reimplemented using bsearch on
14185         interfaces_packed, getting the offset from interface_offsets_packed.
14186         (print_implemented_interfaces): utility debugging function.
14187         (setup_interface_offsets): reworked to initialize interfaces_packed,
14188         interface_offsets_packed and interface_bitmap.
14189
14190         * object.c: replaced all accesses to "MonoClass.interface_offsets"
14191         with uses of interfaces_packed and interface_offsets_packed.
14192
14193 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14194
14195         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
14196         mono_class_interface_offset prototype to wrap all accesses to
14197         "MonoClass.interface_offsets".
14198
14199         * class.c: Implemented mono_class_interface_offset, and wrapped all
14200         accesses to "MonoClass.interface_offsets".
14201
14202         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
14203         "MonoClass.interface_offsets".
14204
14205 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
14206
14207         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
14208         GetMethodFromHandle overloads (bug #78637).
14209
14210 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
14211
14212         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
14213         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
14214
14215 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
14216
14217         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
14218         #81498.
14219
14220         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
14221         gracefully.
14222         (mono_custom_attrs_from_index): Ditto.
14223
14224         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
14225         Fixes #81501.
14226
14227 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
14228
14229         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
14230         is now allocated from a mempool.
14231
14232 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
14233
14234         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
14235         caller holds threads_lock, leading to deadlocks. Fixes #81476.
14236
14237 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
14238
14239         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
14240         mono_loader_clear_error () too late. Fixes #81463.
14241
14242 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
14243
14244         * culture-info-table.h : regenerated.
14245
14246 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
14247
14248         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
14249         is missing.
14250
14251 2007-04-25  Dick Porter  <dick@ximian.com>
14252
14253         * Makefile.am: Put the mingw enforced-optimisation back into the
14254         PLATFORM_WIN32 section.
14255
14256 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
14257
14258         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
14259         patch.
14260
14261         * image.c (mono_image_load_module): New API function to load a module reference.
14262
14263         * image.c (load_modules): Load modules lazily. Fixes #80812.
14264
14265         * class.c (mono_class_from_typeref): Use mono_image_load_module.
14266         
14267         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
14268
14269         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
14270         to mono_image_load_module_dynamic.
14271
14272 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
14273
14274         * marshal.c: Fix calling convention for CCW on non-windows
14275         platforms. STDCALL on windows, CDECL everywhere else to work 
14276         with XPCOM and MainWin COM.
14277         
14278         Code is contributed under MIT/X11 license.
14279
14280 2007-04-23  Martin Baulig  <martin@ximian.com>
14281
14282         Fix #80969.
14283
14284         * loader.c
14285         (method_from_memberref): Added `gboolean *used_context' argument.
14286         (mono_get_method_from_token): Likewise.
14287         (mono_get_method_full): Don't insert the method in the cache when
14288         `used_context' is true.
14289
14290 2007-04-23  Raja R Harinath  <rharinath@novell.com>
14291
14292         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
14293
14294         * reflection.c (mono_reflection_bind_generic_parameters): Don't
14295         create new MonoTypes for returned types.
14296         * class.c (mono_generic_class_get_class): Export mono-internal.
14297         * class-internals.h: Update to changes.
14298
14299 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14300
14301         * threadpool.c, threadpool.h, icall-def.h: patch from
14302         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
14303
14304 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
14305
14306         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
14307         
14308         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
14309
14310         * threads.c (mono_thread_get_stack_bounds): New helper function.
14311
14312         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
14313         Correctly compute stack bounds when attaching. Fixes #81394.
14314
14315 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
14316
14317         * reflection.c: fix handling of doubles in custom attributes
14318         for the arm-fpa format (bug #81368).
14319
14320 2007-04-18  Raja R Harinath  <rharinath@novell.com>
14321
14322         * reflection.c (assembly_add_win32_resources): Mildly relax an
14323         bounds check to let the end pointer point just past the end of the
14324         allocated buffer.  (may fix #81384)
14325
14326 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
14327
14328         * culture-info-table.h : regenerated.
14329
14330 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
14331
14332         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
14333         the thread is aborted early.
14334
14335 2007-04-05  Dick Porter  <dick@ximian.com>
14336
14337         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
14338         FindFirstFile()/FindNextFile() to find entries.  This lets the
14339         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
14340         81038.
14341
14342         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
14343         the parameters of
14344         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
14345
14346 2007-04-04  Martin Baulig  <martin@ximian.com>
14347
14348         * debug-helpers.c
14349         (mono_method_desc_full_match): Add support for nested classes.
14350
14351 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
14352
14353         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
14354
14355 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
14356
14357         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
14358         waiting for too many threads.
14359
14360 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
14361
14362         * environment.c: Fix return value check on uname so we can get the 
14363         executing version on Solaris operating systems.
14364
14365 2007-03-28  Jb Evain  <jbevain@gmail.com>
14366
14367         * class.c (mono_type_get_name_recurse): Complete the
14368         fix for the creation of assembly qualified names for
14369         pointer types. Fixes #81208.
14370
14371 2007-03-27  Dick Porter  <dick@ximian.com>
14372
14373         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
14374         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
14375         changed.
14376
14377         * threads.c
14378         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
14379         the value of ReleaseMutex().
14380
14381 2007-03-27  Dick Porter  <dick@ximian.com>
14382
14383         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
14384         in little-endian order, not network endian, so must be converted
14385         to host endian here.  Fixes bug 80593.
14386
14387 2007-03-22  Jb Evain  <jbevain@gmail.com>
14388
14389         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
14390         qualified names for pointer types. Fixes #81208.
14391
14392 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
14393
14394         * marshal.c: Add support for PreserveSigAttribute. 
14395         
14396         Code is contributed under MIT/X11 license.
14397
14398 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
14399
14400         * process.c: Fix endianness issues. Fixes #81126.
14401
14402         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
14403         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
14404
14405         * image.c (mono_image_lookup_resource): Make this work on big-endian
14406         machines.Change API contract so the caller needs to free the return value.
14407         
14408         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
14409         API change.
14410         
14411 2007-03-14  Martin Baulig  <martin@ximian.com>
14412
14413         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
14414         mono_type_get_desc() as well.
14415
14416 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
14417
14418         * icall.c:  Fix environ access in VS.  
14419         
14420 2007-03-13  Alp Toker  <alp@atoker.com>
14421
14422         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14423         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14424         #63841.
14425
14426 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
14427
14428         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
14429         circular references among dynamic methods. Fixes #81091.
14430
14431         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
14432
14433 2007-03-09  Martin Baulig  <martin@ximian.com>
14434
14435         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
14436
14437 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
14438
14439         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
14440         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
14441         
14442         Code is contributed under MIT/X11 license.
14443         
14444 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
14445
14446         * loader.c: Reapply patch for bug #79424.
14447
14448 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
14449
14450         * metadata.c (mono_type_to_unmanaged): Only convert object to
14451         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
14452
14453 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
14454
14455         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
14456         (and incorrectly set) is_reference field from MonoGenericInst.
14457
14458 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
14459
14460         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
14461         a little earlier.
14462
14463         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
14464
14465         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
14466
14467 2007-03-05  Miguel de Icaza  <miguel@novell.com>
14468
14469         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
14470         FileOptions.1 value to mean "temporary", map that to
14471         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
14472
14473         Fixes 80688
14474
14475 2007-03-03  Marek Habersack  <mhabersack@novell.com>
14476
14477         * appdomain.c: implement MS .Net style shadow copying. Copies of
14478         the assemblies are made in a subdirectory of the dynamic base
14479         directory, the assembly names are preserved.
14480         Copy .mdb and .config files along with the assemblies being shadowed.
14481
14482 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
14483
14484         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
14485         (emit_marshal_handleref): Ditto.
14486
14487         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
14488         on Visual C++. Fixes #80671.
14489
14490 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
14491
14492         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
14493         for clone operations.
14494
14495 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
14496
14497         * marshal.c: Fix warnings.
14498
14499 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
14500
14501         * loader.c: allow case-insensitive matching of the dll name
14502         in dllmap handling when prefixed with "i:".
14503
14504 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
14505
14506         * threads.c: Fix #ifdef for dummy_apc function for VS.
14507
14508 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
14509
14510         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
14511
14512 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
14513         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
14514         giving precedence to the methods with a fully qualified name
14515         (InterfaceName.MethodName) when building the interface sections
14516         of the vtable.
14517
14518 2007-02-16  Dick Porter  <dick@ximian.com>
14519
14520         * threadpool.c (append_job): Fix fast-path array handling, so it's
14521         less likely the array will grow exponentially when the load is
14522         heavy.
14523
14524 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14525
14526         * metadata-internals.h, loader.c: fix dllmap lookup order
14527         for non-function maps, too, and prepare for fallback code.
14528
14529 2007-02-12  Robert Jordan  <robertj@gmx.net>
14530
14531         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
14532         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
14533         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
14534         GlobalFree. Fixes a part of bug #77075.
14535
14536 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
14537
14538         * loader.c: implemented typedef parent in field memberref.
14539
14540 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
14541
14542         * marshal.c: Fix warnings and remember to call Release on
14543         IUnknown of RCW.
14544         
14545         Code is contributed under MIT/X11 license.
14546
14547 2007-02-10  Miguel de Icaza  <miguel@novell.com>
14548
14549         * class-internals.h: Add MonoHandleRef definition, and
14550         handleref_class to mono_defaults. 
14551
14552         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
14553         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
14554
14555         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
14556         (do nothing on this stage)
14557         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
14558         (emit_marshal_handleref): New method, used for argument handling
14559         of HandleRefs. 
14560
14561 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
14562
14563         * class.c (mono_class_setup_parent): Lazily init com types.
14564         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
14565         init com types.
14566         * object.c (mono_remote_class_vtable): Lazily init com types.
14567         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
14568         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
14569         * domain-internals.h: Expose mono_init_com_types.
14570         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
14571         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
14572         Add support for COM Callable Wrapper marshalling.
14573         * marshal.h: Add icall definitions.
14574         * gc.c: Handle freeing of CCWs in finalizer code.
14575         
14576         Code is contributed under MIT/X11 license.
14577
14578 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
14579
14580         * reflection.c: changed all the signature encoding code to use
14581         a variable-sized buffer.
14582
14583 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14584
14585         * marshal.c: locking fixes: never take the loader lock
14586         or other runtime locks when holding the marshal lock
14587         (fixes bug#80664).
14588
14589 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
14590
14591         * marshal.c: make the delegate function pointer mapping
14592         work for the moving GC.
14593
14594 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
14595
14596         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
14597         for bug #80618.
14598
14599 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14600
14601         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
14602         gmodule.
14603
14604 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
14605
14606         * threadpool.c: made the code moving-GC safe.
14607
14608 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
14609
14610         * assembly.c, boehm-gc.c, class-internals.h, class.c,
14611         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
14612         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
14613         warning cleanup.
14614         * reflection.c: warning cleanup, some threading and moving GC fixes.
14615
14616 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
14617
14618         * class.c, loader.c: create the needed Set/Get/Address array methods
14619         as well as the .ctors in mono_class_init (), fixes bug #80567.
14620
14621 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
14622
14623         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
14624         we doesn't decrease its alignment. Should fix the sparc build.
14625
14626 2007-01-24  Dick Porter  <dick@ximian.com>
14627
14628         * socket-io.c
14629         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
14630         Create the returned object if we need to ignore an unsupported
14631         socket option.  Fixes a segfault reported by Atsushi.
14632
14633 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14634
14635         * class.c, object.c: restrict GC-tracked fields to
14636         UIntPtr fields used inside corlib, so we provide better
14637         type info to the GC and also allow broken packing as in
14638         bug #80580.
14639
14640 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
14641
14642         * sgen-gc.c: removed duplicated function.
14643
14644 2007-01-19  Miguel de Icaza  <miguel@novell.com>
14645
14646         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
14647         value that means that the value is not supported, but that we
14648         should not return a failure, but instead report this as a
14649         successful operation.
14650
14651 2007-01-19  Raja R Harinath  <rharinath@novell.com>
14652
14653         Fix tests/bug79956.2.il
14654         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
14655         (mono_generic_class_get_class): If the generic definition in an
14656         enum, copy over other fields related to it.
14657
14658 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
14659
14660         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
14661         genericinst enums (bug #79215).
14662
14663 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
14664         * class.c: Fix bug 80307.
14665
14666 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
14667
14668         * image.c: if the file table is not present, try to load
14669         all the modules, since we don't have info about them
14670         having or not metadata (bug #80517).
14671         * assembly.c: allow mono_assembly_load_references () to
14672         work for netmodules.
14673
14674 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14675
14676         * image.c, metadata-internals.h, object.c: execute module
14677         cctors when running on the 2 runtime if present (bug #80487).
14678
14679 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14680
14681         * icall.c: optimized InitializeArray() on bigendian.
14682
14683 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
14684
14685         * icall.c: fix for the broken ARM FPA double format.
14686
14687 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
14688
14689         * icall.c: handle endian issues for r4 and r8 types, too, in
14690         the InitializeArray() icall.
14691
14692 2007-01-15  Miguel de Icaza  <miguel@novell.com>
14693
14694         * loader.c (mono_loader_error_prepare_exception): Clear the error
14695         once we have extracted the information from it, do this before we
14696         call into the JIT's class loading mechanisms.
14697
14698         * object.c (mono_class_create_runtime_vtable): Do not clear the
14699         loader error before calling mono_class_get_exception_for_failure
14700         as the loader error is needed inside
14701         mono_class_get_exception_for_failure to throw the error (thinko).
14702
14703         Fixes #80521
14704         
14705 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
14706
14707         * reflection.c: align fields rva data so it's faster to load at
14708         runtime.
14709
14710 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14711
14712         Prepare to simplify GenericMethod handling.
14713         * class-internals.h (mono_method_get_context): New accessor function.
14714         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
14715         rather than directly accessing '->context' field.
14716
14717         * class-internals.h (_MonoGenericParam.method): Move ...
14718         (_MonoGenericContainer): ... here.  Add into union with klass field.
14719         * class.c, icall.c, loader.c, metadata.c, reflection.c:
14720         Update to changes.
14721
14722 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
14723
14724         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
14725         the wrapper type enum and reduce relocations.
14726
14727 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14728
14729         * reflection.c (inflate_mono_method): Reuse method instantiation
14730         from the generic method, if available.
14731
14732 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14733
14734         * marshal.c (emit_marshal_variant): Fix conv_arg
14735         type in last commit, based on whether parameter is byref.
14736         
14737 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14738
14739         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
14740         marshalling.
14741         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
14742         MONO_TYPE_OBJECT back for VARIANT support.
14743
14744 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14745
14746         * marshal.c, marshal.h, icall-def.h: Implement 
14747         Marshal.ReAllocCoTaskMem.
14748
14749 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
14750
14751         * marshal.c: memory retention fixes: use the proper
14752         image cache for runtime_invoke method lookups.
14753
14754 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
14755
14756         * mempool.c: added code to help debug mempool allocations.
14757
14758 2007-01-11  Dick Porter  <dick@ximian.com>
14759
14760         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
14761         support (experimenting with faking it with IP_MTU_DISCOVER for
14762         systems that don't have IP_DONTFRAGMENT.)
14763         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
14764         icall.
14765
14766         * icall-def.h: new System.Net.Sockets.Disconnect icall.
14767
14768         * socket-io.h: Add new fields to MonoSocketAsyncResult
14769         corresponding to the new ones in Socket.cs.
14770
14771 2007-01-11  Raja R Harinath  <rharinath@novell.com>
14772
14773         Fix IronPython regression mentioned in #80249
14774         * metadata.c (do_mono_metadata_parse_generic_class): Clear
14775         'cached_context' field, since it may have been initialized as a
14776         side-effect of metadata parsing.
14777
14778         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
14779         (_MonoGenericClass.cached_class): Move here and rename from lone
14780         remaining field of ...
14781         (_MonoInflatedGenericClass): ... this.  Remove.
14782         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
14783         to changes.
14784
14785         Fix mcs/tests/test-128.cs regression.
14786         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
14787         2007-01-10 change below.
14788         [MONO_TYPE_OBJECT]: Recurse into array case.
14789
14790 2007-01-11  Raja R Harinath  <harinath@gmail.com>
14791
14792         * class-internals.h (mono_get_inflated_generic_class): Remove.
14793         * class.c (mono_get_inflated_generic_class): Remove.
14794         (mono_generic_class_get_class): Rename from
14795         mono_class_create_generic.
14796         (mono_class_from_mono_type) [GENERICINST]: Use it.
14797         * reflection.c, metadata.c: Update to changes.  Use
14798         'mono_class_from_mono_type'.
14799
14800 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
14801
14802         * reflection.c: use passed type when encoding an array element
14803         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
14804
14805 2007-01-09  Robert Jordan  <robertj@gmx.net>
14806
14807         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
14808         result arguments (someDelegate.EndInvoke (unrelatedAres)).
14809         Fixes bug #80392.
14810
14811 2007-01-09  Raja R Harinath  <rharinath@novell.com>
14812
14813         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
14814
14815         * object.c (set_value): Avoid aliasing between type->data.klass
14816         and type->data.generic_class.
14817
14818         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
14819
14820 2007-01-08  Raja R Harinath  <rharinath@novell.com>
14821
14822         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
14823         between type->data.klass and type->data.generic_class.
14824
14825 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
14826
14827         * marshal.c: In MS.NET, StringBuilder objects are not copied by
14828         value in out parameters.
14829
14830 2007-01-08  Raja R Harinath  <rharinath@novell.com>
14831
14832         Simplify invariant for MonoGenericClass::klass field.
14833         * class.c (mono_class_create_generic): Verify 'klass' is null.
14834         * metadata.c (do_mono_metadata_parse_generic_class): Don't
14835         initialize 'klass' field.
14836
14837 2007-01-05  Raja R Harinath  <rharinath@novell.com>
14838
14839         Ongoing work to avoid redundant data and simplify invariants.
14840         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
14841         'generic_class', and change type to a GenericInst.
14842         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
14843         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
14844
14845 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
14846
14847         * class.c : skip io-layer under PLATFORM_WIN32.
14848
14849 2007-01-03  Tor Lillqvist  <tml@novell.com>
14850
14851         Fix #80305: In a bundled executable, look in the bundled exe
14852         assembly to determine the runtime version. Add the possibility to
14853         bundle also the machine.config file.
14854         
14855         * assembly.c (mono_assembly_open_from_bundle): Make
14856         non-static. Allow being called even if we have no bundled
14857         assemblies, and return NULL right away in that case.
14858
14859         * domain-internals.h: Declare mono_assembly_open_from_bundle()
14860         here.
14861
14862         * domain.c (app_config_parse): Take an assembly exe file name as
14863         parameter instead of a config file name. Check for a bundled
14864         config file for that assembly by calling
14865         mono_config_string_for_assembly_file() (see below) before looking
14866         for one in the file system.
14867         (get_runtimes_from_exe): Corrsponding change to call of
14868         app_config_parse().
14869         (get_runtimes_from_exe): Check for bundled assembly exe file first
14870         by calling mono_assembly_open_from_bundle(). If no bundled
14871         assembly exe file is found, call mono_image_open() as before to
14872         look it up in the file system.
14873
14874         * mono-config.c: Add variable bundled_machinec_onfig.
14875         (mono_config_string_for_assembly_file): New function.
14876         (mono_config_for_assembly): Move code snippet that looks for a
14877         bundled assembly .config file into the above new function. Call
14878         it.
14879         (mono_register_machine_config, mono_get_machine_config): New
14880         functions to set and retrieve
14881
14882         * assembly.h: Declare mono_register_machine_config().
14883
14884         * mono-config.h: Declare mono_get_machine_config() and
14885         mono_config_string_for_assembly_file().
14886
14887         * icall.c: No declaration of environ necessary on Win32. It is
14888         declared (as a macro expanding to a function call) in stdlib.h.
14889         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
14890         New internal mono function. Returns the value of
14891         mono_get_machine_config() as a Mono string.
14892
14893         * icall-def.h: Add get_bundled_machine_config().
14894
14895 2007-01-04  Raja R Harinath  <rharinath@novell.com>
14896
14897         Remove redundant field
14898         * class-internals.h (_MonoGenericContext.container): Remove field.
14899         * loader.c (mono_method_get_signature_full): Don't parse a
14900         "container" for a signature parse when the signature is inflated
14901         immediately.
14902         (method_from_methodspec): Likewise, for a generic_inst.
14903         * class.c, metadata.c, reflection.c: Update to changes.
14904
14905 2006-01-04  Raja R Harinath  <rharinath@novell.com>
14906
14907         * class-internals.h (_MonoGenericClass): Rename 'context' field to
14908         'cached_context', and change semantics -- it starts off NULL, and
14909         is initialized on demand.
14910         * class.c (mono_generic_class_get_context): New accessor to
14911         replace 'context' field accesses.
14912         (mono_class_get_context): New helper.
14913         (*): Update to changes.
14914         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
14915
14916 2007-01-03  Miguel de Icaza  <miguel@novell.com>
14917
14918         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
14919         before the memcpy.   Fixes Marshal2 regression.
14920
14921 2007-01-02  Jb Evain  <jbevain@gmail.com>
14922
14923         * blob.h: add a MONO_TYPE_ENUM definition
14924         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
14925         fix the encoding of arrays of enums in custom attributes.
14926
14927         Fixes #79666.
14928
14929 2007-01-01  Miguel de Icaza  <miguel@novell.com>
14930
14931         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
14932         string is null terminated, but only cut the string short if it
14933         overflows the buffer.   
14934         
14935         (mono_string_to_byvalstr): Also fix this routine.   The code here
14936         was not properly terminating a string (it was only terminated
14937         because of the previous catch-all memset). 
14938
14939         I left the memset, because I do not know if applications expect
14940         the runtime to clear this region. 
14941
14942         Fixes #79944.
14943
14944         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
14945         Clear the error before returning to unmanaged code to prevent the
14946         runtime from being confused later on (fixes  80420).
14947         (ves_icall_type_from_name): Always call mono_loader_clear_error
14948         after parsing a type that could have failed.
14949         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
14950
14951         * loader.c (mono_loader_clear_error): Fix indentation.
14952
14953 2006-12-28  Martin Baulig  <martin@ximian.com>
14954
14955         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
14956
14957 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
14958
14959         * reflection.c: patch from Rolf Bjarne Kvinge to fix
14960         getting a token for an EnumBuilder.
14961
14962 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
14963
14964         * reflection.c: be more careful in case resource generation
14965         fails to create the data array.
14966
14967 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
14968
14969         * sgen-gc.c: write barrier for clone and fix unregister handles.
14970
14971 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
14972
14973         * reflection.c: some fixes needed in the generics code for the moving GC.
14974
14975 2006-12-22  Robert Jordan  <robertj@gmx.net>
14976
14977         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
14978         account. Fixes bug #80299.
14979
14980 2006-12-21  Raja R Harinath  <rharinath@novell.com>
14981
14982         Fix WaitHandle usage in delegates.
14983         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
14984         * object.c (mono_wait_handle_new): Use the property set method to
14985         initialize the handle.
14986         (mono_wait_handle_get_handle): New.
14987         * threadpool.c (mono_async_invoke): Use it.
14988         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
14989         Likewise.
14990         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
14991
14992 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
14993
14994         * marshal.c (emit_marshal): Call emit_marshal_variant and
14995         emit_marshal_com_interface when applicable.
14996         (emit_marshal_variant, emit_marshal_com_interface): Add
14997         methods for this case and remove if's from emit_marshal_object.
14998         
14999 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
15000
15001         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
15002
15003 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
15004
15005         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
15006         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
15007         and GlobalFree on Windows. Remove FIXME.
15008
15009 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
15010
15011         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
15012         implementation for managed objects.
15013
15014 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
15015
15016         * object.c: implemented code to be used for checking
15017         that no reference field overlaps with non-references.
15018
15019 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15020
15021         * threadpool.c: fix queue code to be compatible with the
15022         moving GC.
15023
15024 2006-12-18  Miguel de Icaza  <miguel@novell.com>
15025
15026         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
15027         in structures by throwing ArgumentNullException.
15028
15029         (emit_marshal_safehandle): Also when they are null parameters.
15030
15031         (emit_marshal_safehandle): Add support for ref
15032         SafeHandles parameters
15033
15034 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
15035
15036         * profiler.c: updated to use the mono-dl API instead of
15037         gmodule.
15038
15039 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15040
15041         * profiler.c: updated to use the mono-dl dynamic loading
15042         API instead of gmodule.
15043
15044 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
15045
15046         * profiler.c: use readlink, older versions of glib don't have
15047         g_file_read_link ().
15048
15049 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15050
15051         * profiler.c: try to detect the path to mono if libc fails to provide
15052         a useful name (bug #80286).
15053
15054 2006-12-16  Raja R Harinath  <rharinath@novell.com>
15055
15056         Fix #80242
15057         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
15058         instance, use the generic type definition instead.
15059         (ves_icall_Type_GetNestedTypes): Likewise.
15060         * class.c (mono_class_create_generic): Always set the
15061         nested_classes of a generic instance to NULL, even if the generic
15062         type definition has nested types.
15063
15064 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
15065
15066         * marshal.c (mono_string_from_bstr): Revert previous Windows change
15067         and fix on Linux.
15068         
15069 2006-12-15  Miguel de Icaza  <miguel@novell.com>
15070
15071         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
15072         my arguments were in the wrong order.   I also fixed the Windows
15073         version which seems to have had the same issue.
15074
15075         (mono_free_bstr): On Unix, this is g_free.
15076         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
15077         conversions (for the tests in corlib to pass).
15078
15079 2006-12-14  Miguel de Icaza  <miguel@novell.com>
15080
15081         * marshal.c (emit_ptr_to_object_conv): For now, ignore
15082         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
15083         exception if a ref SafeHandle in a struct has changed).
15084         
15085         (emit_struct_conv): Do not perform layout checks for classes
15086         derived from SafeHandle, as those are specially handled. 
15087
15088         (emit_object_to_ptr_conv): Add support for
15089         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
15090
15091         (emit_marshal_safehandle): Implement conversion of return values
15092         of safehandles (MARSHAL_ACTION_CONV_RESULT).
15093         
15094         * threads.c: WaitHandle now is compiled with two different handles
15095         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
15096         for 2.0.
15097         
15098         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
15099         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
15100         these routines to cope with both kinds of fields.
15101
15102 2006-12-12  Miguel de Icaza  <miguel@novell.com>
15103
15104         * metadata.c (mono_type_to_unmanaged): Handle the case where
15105         type->data.klass is a SafeHandle, and in that case, return the
15106         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
15107         MONO_MARSHAL_CONV_SAFEHANDLE. 
15108
15109 2006-12-11  Miguel de Icaza  <miguel@novell.com>
15110
15111         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
15112         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
15113         calling emit_marshal_object.
15114
15115         (emit_marshal_safehandle): Implement marshalling of
15116         SafeHandle parameters (no ref support yet).
15117
15118         (MarshalAction): Document the defines as I implement
15119         them for SafeHandle.
15120
15121         (emit_marshal_object): indentation police.
15122
15123         * class-internals.h: Define MonoSafeHandle.
15124         Add safehandle_class to MonoDefaults type.
15125
15126         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
15127         list of classes to check for fields. 
15128
15129         * domain.c (mono_init_internal): Add SafeHandle to the list of
15130         mono_defaults loaded.
15131
15132 2006-12-15  Raja R Harinath  <rharinath@novell.com>
15133
15134         Fix #80253
15135         * reflection.c (mono_reflection_bind_generic_parameters): If the
15136         generic type definition is a type builder, ensure that it is fully
15137         initialized before instantiating it.  Kill some dead code.
15138
15139 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
15140
15141         * object.c: clear the loader_error () before loading
15142         more metadata stuff (bug #80258).
15143
15144 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
15145
15146         * icall.c, icall-defs.h: type modifiers icalls for
15147         parameters and properties.
15148
15149 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
15150
15151         * object.c, icall.c: fixed warnings.
15152
15153 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15154
15155         * marshal.c: fixed a couple of leaks and coding style in a few places.
15156
15157 2006-12-08  Dick Porter  <dick@ximian.com>
15158
15159         * process.c: Cope with NULL ProcessStartInfo arguments on windows
15160         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
15161         80173.
15162
15163 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
15164
15165         * process.c: ProcessStartInfo may have only filename set and
15166         arguments can be NULL.
15167
15168 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15169
15170         * icall.c: fix leak found by Robert Jordan.
15171
15172 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15173
15174         * marshal.c, marshal.h: generate managed method to access an element
15175         of a multi-dimensional array.
15176
15177 2006-11-30  Paolo Molaro (lupus@ximian.com)
15178
15179         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
15180
15181 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15182
15183         * icall.c: back out GetFields () fix until the serialization code is
15184         fixed to not depend on the incorrect behaviour.
15185
15186 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
15187
15188         * profiler.c: provide defaults if none are set.
15189
15190 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
15191
15192         * Makefile.am, attrdefs.h: new public header file with
15193         constants for attributes for use by embedders.
15194
15195 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
15196
15197         * icall.c: GetFields () fix for bug #80064.
15198
15199 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
15200
15201         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
15202         removed long unused icalls.
15203
15204 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
15205   
15206         * marshal.c: 
15207                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
15208                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
15209                 can be generated without a delegate class.
15210                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
15211         
15212         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
15213
15214 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15215
15216         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
15217         #80069.
15218
15219 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
15220
15221         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
15222         icall-def.h: added icalls needed by System.GC.
15223
15224 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
15225
15226         * loader.c: ensure the class in catch clauses is handled
15227         correctly for generics methods (fixes bug#79980).
15228
15229 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
15230
15231         * monitor.h, monitor.c: added mono_locks_dump () function
15232         to help debug deadlocks involving managed locks.
15233
15234 2006-11-13  Dick Porter  <dick@ximian.com>
15235
15236         * file-io.c (get_file_attributes): If the file is a symlink try
15237         and get the stat data for the target, but also add the
15238         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
15239         the specs for the windows symlink support, but will probably have
15240         to be reworked when I have test data from a vista machine.  Fixes
15241         bug 79887.
15242
15243 2006-11-13  Dick Porter  <dick@ximian.com>
15244
15245         * gc.c (mono_domain_finalize): 
15246         * marshal.c (mono_delegate_begin_invoke): 
15247         * threadpool.c (socket_io_init, mono_thread_pool_init)
15248         (mono_thread_pool_finish): 
15249         * monitor.c (mono_monitor_try_enter_internal): 
15250         * threads.c (mono_thread_resume, mono_thread_init)
15251         (mono_thread_suspend_all_other_threads)
15252         (mono_thread_execute_interruption): 
15253         * appdomain.c (mono_domain_unload): Check for NULL error returns
15254         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
15255         75733.
15256
15257 2006-11-11  Miguel de Icaza  <miguel@novell.com>
15258
15259         * process.c
15260         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
15261         Only close the handle if the value of the handle is not
15262         INVALID_HANDLE_VALUE.  This just makes the process a bit more
15263         robust.
15264
15265         Improvement for #75733, so that we do not run into this problem. 
15266
15267         
15268         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
15269         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
15270         internal variables.  Fixes #79462 
15271         
15272
15273 2006-11-09  Dick Porter  <dick@ximian.com>
15274
15275         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
15276         Use poll() not select().  Fixes bug 79397.
15277
15278 2006-11-09  Raja R Harinath  <rharinath@novell.com>
15279
15280         Fix #79872
15281         * assembly.c (mono_assembly_load_from_full): Check that the given
15282         image has an assembly manifest.
15283
15284 2006-11-09  Ankit Jain  <jankit@novell.com>
15285
15286         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
15287         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
15288         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
15289
15290 2006-11-07  Dick Porter  <dick@ximian.com>
15291
15292         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
15293         Put the old resolver behaviour back for pre-2.0 profiles.
15294
15295 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
15296
15297         * threadpool.c: precise GC and locking fixes.
15298
15299 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
15300
15301         * class.c: don't load types that have an explicit unaligned
15302         managed reference. Provide better info in the TypeLoad exception.
15303         Part of the fix for bug #79744.
15304         * object.c: use the correct check for class type load issues.
15305
15306 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
15307
15308         * class.c: enforce alignment of fields with managed references
15309         even when Pack=1 is forced by the user (bug #77788).
15310
15311 2006-11-03  Dick Porter  <dick@ximian.com>
15312
15313         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
15314         If the address reverse lookup fails, return it as the hostname
15315         anyway.  Fixes bug 79721.
15316
15317 2006-11-03  Dick Porter  <dick@ximian.com>
15318
15319         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
15320         Fix build on Windows.
15321
15322 2006-11-02  Dick Porter  <dick@ximian.com>
15323
15324         * icall-def.h: 
15325         * object-internals.h: 
15326         * exception.c (mono_get_exception_thread_interrupted): 
15327         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
15328         Fixes bug 74525.
15329
15330         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
15331         Check for pending Thread.Interrupt.
15332
15333 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
15334         * loader.c: Fixed bug 79684.
15335
15336 2006-10-27  Dick Porter  <dick@ximian.com>
15337
15338         * file-io.c (get_file_attributes): Force symlinks to directories
15339         to be returned as a regular file.  Fixes bug 79733.
15340 2006-10-26  Dick Porter  <dick@ximian.com>
15341
15342         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
15343         CreateFile to open a directory then we need to set the
15344         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
15345
15346 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
15347
15348         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
15349         friends.
15350
15351 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15352
15353         * sgengc.c: small cleanup of timer code.
15354
15355 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
15356
15357         * sgen-gc.c: fix some warnings and start adding support for
15358         complete object removal on domain unload.
15359
15360 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
15361
15362         * assembly.c: build_assembly_name should not consider a version
15363         number without build or revision number invalid. Fixes bug #79715.
15364
15365 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
15366
15367         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
15368         call kernel32 function OutputDebugString directly.
15369         
15370         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
15371         
15372 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
15373
15374         * reflection.c: small cleanup, using a function to insert a MonoString
15375         in the string heap.
15376
15377 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
15378
15379         * reflection.c: moving GC fixes.
15380
15381 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
15382
15383         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
15384         all the objects with finalizers belonging to an unloading appdomain.
15385
15386 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
15387
15388         * sgen-gc.c: added ability to allocate even when the nursery is fully
15389         pinned and fixed a couple of bugs.
15390
15391 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15392
15393         * threads.h: Revert the last change for now.
15394
15395         * threads.h (mono_thread_get_pending_exception): Rename this to
15396         mono_thread_get_undeniable_exception ().
15397
15398 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
15399
15400         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
15401         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
15402         when fname does not refer to valid assembly. This result in a more
15403         meaningful error message.
15404         * exception.c: added mono_get_exception_bad_image_format2 which 
15405         constructs a BadImageFormatException using the ctor taking a custom
15406         message and the file name. Passing in a NULL msg results in a default
15407         message.
15408         * exception.h: define mono_get_exception_bad_image_format2 function.
15409         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
15410         when file name pointed to an invalid IL image. Use 
15411         mono_get_exception_file_not_found2 to construct FileNotFoundException,
15412         as this results in a more meaningful error message.
15413
15414 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15415
15416         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
15417         #79465.
15418
15419 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
15420
15421         * metadata.c (mono_type_size): Change the align parameter to guint32 for
15422         consistency with the other _size functions.
15423         (mono_type_stack_size): Ditto.
15424
15425         * class.c object.c icall.c: Fix warnings caused by the above change.
15426
15427         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
15428
15429         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
15430
15431         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
15432
15433 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
15434
15435         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
15436         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
15437         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
15438         threadpool.h, threads-types.h: mark more internal functions.
15439
15440 2006-10-11  Dick Porter  <dick@ximian.com>
15441
15442         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
15443         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
15444         reproduce the bug even before applying the fix.)
15445
15446 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
15447
15448         * reflection.c: allow retrieving attributes for arguments in generic
15449         methods (bug #79241).
15450
15451 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
15452
15453         * debug-mono-symfile.c: properly check fopen () result (found by
15454         coverity).
15455
15456 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
15457
15458         * reflection.c: make error message clearer and fixed two
15459         issuelets found by Coverity.
15460
15461 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
15462
15463         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
15464
15465 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
15466
15467         * object-internals.h, gc-internal.h, profiler-private.h:
15468         mark internal functions.
15469
15470 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
15471
15472         * reflection.c: put data in the text section.
15473         * icall.c: recognize more types in type_from_typename ().
15474         * process.c, marshal.c: added some GC FIXMEs.
15475
15476 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
15477
15478         * loader.c: check for NULL before initializing.
15479
15480 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
15481
15482         * gc.c (finalizer_thread): Use a non-alertable wait here.
15483
15484         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
15485         until the correct solution is found.
15486
15487 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
15488
15489         * reflection.c (mono_module_get_object): Avoid an assert when operating on
15490         modules with no metadata. Fixes #79596.
15491
15492         * image.c (load_metadata_ptrs): Put back the error message when
15493         the #- heap is encountered since the support is not complete yet.
15494
15495 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
15496
15497         * gc.c: do not allow the user to SuppressFinalize () a
15498         delegate because it would leak the trampoline if present.
15499
15500 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
15501
15502         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
15503         PropertyPtr table.
15504
15505 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
15506
15507         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
15508
15509         * metadata.c (mono_metadata_get_param_attrs): Ditto.
15510
15511         * row-indexes.h: Add definitions for *Ptr tables.
15512
15513         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
15514
15515         * metadata.c (mono_metadata_translate_token_index): New helper function to
15516         translate table indexes used in uncompressed metadata.
15517         (mono_metadata_decode_table_row): Ditto.
15518         (mono_metadata_decode_table_row_col): Ditto.
15519
15520         * metadata.c: Add table schema for *Ptr tables.
15521
15522         * class.c loader.c: Use the new helper function to access the affected metadata
15523         tables.
15524         
15525         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
15526         #38532.
15527         
15528 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
15529
15530         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
15531         sequences which can be unbounded in size. Fixes #79583.
15532
15533 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
15534
15535         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
15536         static initialization.
15537
15538         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
15539
15540         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
15541
15542         * domain.c (mono_domain_free): Free up type_init_exception_hash.
15543
15544         * object.c (mono_runtime_class_init): Implement correct semantics when a static
15545         ctor fails, i.e. throw the same exception on subsequent accesses.
15546         
15547 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
15548
15549         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
15550         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
15551         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
15552         Handle marshalling of interfaces and VARIANTs contained in structs.
15553         
15554         Code is contributed under MIT/X11 license.
15555         
15556 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
15557
15558         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
15559         
15560         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
15561         mempool.
15562
15563 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15564
15565         * console-io.c: ignore previous SIGINT handler.
15566
15567 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
15568
15569         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
15570         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
15571         #79460, #79461, #79485.
15572
15573         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
15574
15575         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
15576         #79217.
15577
15578 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
15579
15580         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
15581         could be generated from it.
15582
15583 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
15584
15585         * rand.c: fix read loop to correctly handle EINTR.
15586
15587 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15588
15589         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
15590         internal calls are defined to keep methods closer to the declaring
15591         type and allow a significant reduction in runtime relocations and
15592         memory usage.
15593
15594 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
15595
15596         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
15597         exception message to have FileNotFoundException use the default
15598         assembly load error message. Fixes bug #79426.
15599         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
15600
15601 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15602
15603         * threadpool.c: (start_thread_or_queue) use the root domain when
15604         creating the thread instead of the async object one.
15605
15606 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
15607
15608         * class.c, object.c, class-internals.h, reflection.c:
15609         for arrays, store element_size inside MonoClass (speedup
15610         for array object creation).
15611
15612 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
15613
15614         * icall.c: fixed CodeBase to use the file name and not the module
15615         name (bug #79365).
15616
15617 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
15618
15619         * mono-debug.c, mono-debug.h: export find_method as
15620         mono_debug_find_method ().
15621
15622 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15623
15624         * debug-helpers.c, class-internals.h: added a few functions useful
15625         when debugging under gdb.
15626
15627 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15628
15629         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
15630         characters that need special handling.
15631
15632 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
15633
15634         * mono-config.c: make the os/cpu specification more flexible,
15635         allowing lists and negation.
15636
15637 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
15638
15639         * marshal.c: COM Interop fixes. Handle case where method->klass.
15640         is interface. Handle BSTR/MonoString when null. Use CDECL as 
15641         calling convention on non-windows platforms. This is for
15642         compatibility with XPCOM and MainWin COM.
15643         
15644         Code is contributed under MIT/X11 license.
15645         
15646
15647 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
15648
15649         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
15650         correctly. Fixes #79217.
15651
15652         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
15653
15654 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
15655
15656         * mono-config.c: allow both an os and cpu attribute for dllmap
15657         and dllentry elemnets to enable a single config file to be used
15658         for multiple architectures.
15659
15660 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
15661
15662         * loader.c: MonoLoaderError was cleared too soon on load failure.
15663         Fixes bug #79424.
15664
15665 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
15666
15667         * icall.c: use the defining class vtable when accessing a
15668         static field, not a pobblibly derived class.
15669
15670 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
15671
15672         * icall.c string-icalls.c: Remove references to unicode.h.
15673
15674         * unicode.h unicode.c Makefile.am: Remove these unused source files.
15675
15676         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
15677
15678         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
15679         indicating the image where custom marshaller types should be looked up.
15680         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
15681         custom marshallers, instead of corlib. Fixes #79425.
15682
15683 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
15684
15685         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
15686
15687 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
15688
15689         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
15690         Implement Environment.ProcessorCount.
15691         
15692         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
15693         Implement Environment.ProcessorCount.
15694         
15695         * icall.c: 
15696         Add Environment.ProcessorCount icall.
15697         
15698         Patch by Jason McFall.
15699
15700 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15701
15702         * assembly.c: don't append .exe/.dll when the filename already contains
15703         one of those extensions.
15704
15705 2006-09-12  Martin Baulig  <martin@ximian.com>
15706
15707         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
15708         to array interfaces.
15709
15710 2006-09-11  Martin Baulig  <martin@ximian.com>
15711
15712         * reflection.c (mono_image_build_metadata): Create the
15713         MethodImpl's after emitting all types and methods, so we don't
15714         need another fixup pass for them.
15715
15716 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
15717
15718         * class.c (mono_class_from_name_case): Fix regression introduced by the last
15719         change.
15720
15721 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
15722
15723         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
15724         unload.
15725
15726 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
15727
15728         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
15729         args is not set. Fixes #78926.
15730
15731 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
15732
15733         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
15734
15735         * image.c (load_class_names): Move this to class.c, and rename it to 
15736         'mono_image_init_name_cache'.
15737         (load_modules): Fix a warning.
15738
15739         * class.c icall.c image.c: Initialize image->name_cache lazily.
15740
15741         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
15742         on its name using information in the AOT file.
15743
15744         * class.c (mono_class_from_name): Use the new hook function.
15745
15746 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
15747
15748         * reflection.c (mono_param_get_objects): Handle enum default parameter values
15749         correctly.
15750
15751         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
15752         Fixes #79289.
15753         
15754 2006-09-06  Martin Baulig  <martin@ximian.com>
15755
15756         * icall.c (mono_lookup_internal_call): Small fix.
15757
15758 2006-09-05  Raja R Harinath  <rharinath@novell.com>
15759
15760         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
15761         double g_free.
15762
15763 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
15764
15765         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
15766         when --debug is specified.
15767
15768 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
15769
15770         * class.c (setup_generic_array_ifaces): Fix a warning.
15771
15772 2006-09-04  Miguel de Icaza  <miguel@novell.com>
15773
15774         * Temporarily remove the patch to assemly.c that checks the
15775         assembly versions as it breaks our gacutil.
15776
15777 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
15778
15779         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
15780
15781         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
15782         a net 1.0 runtime.
15783
15784         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
15785         created using the default ctor. Fixes #79152.
15786         (mono_string_builder_to_utf16): Ditto.
15787
15788 2006-09-01  Martin Baulig  <martin@ximian.com>
15789
15790         Fix handling of the generic array interfaces.
15791
15792         * class-internals.h
15793         (MonoDefaults): Removed `generic_array_class' and added
15794         `generic_ilist' class.
15795
15796         * class.c
15797         (mono_bounded_array_class_get): Add the new generic array interfaces.
15798         (setup_generic_array_ifaces): New static method; create vtable
15799         entries for each method in the generic array interfaces.
15800
15801         * metadata.c
15802         (select_container): Allow "parent-less" generic methods.
15803
15804         * marshal.c
15805         (mono_marshal_get_generic_array_helper): New public method.
15806
15807         * icall.c
15808         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
15809         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
15810         moved the interncall into System.Array.
15811
15812 2006-09-01  Raja R Harinath  <rharinath@novell.com>
15813
15814         A few more cases of avoiding work on types with ->byref set.
15815         Has the real fix for #79238
15816         * icall.c (is_generic_parameter): New helper.
15817         (ves_icall_Type_GetGenericParameterPosition): Use it.
15818         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
15819         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
15820         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
15821         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
15822         reference types.
15823         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
15824         reference types.
15825         (ves_icall_Type_get_IsGenericInstance): Likewise.
15826         (ves_icall_Type_get_IsGenericType): Likewise.
15827
15828 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
15829
15830         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
15831         class if possible.
15832
15833         * mempool.h (mono_mempool_get_allocated): New helper function.
15834
15835         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
15836         change.
15837
15838         * mempool.c: Fix warnings and the calculation of stats.
15839
15840         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
15841
15842         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
15843
15844         * loader.c (mono_get_method_from_token): Update method_count stat.
15845
15846         * class-internals.h (MonoStats): Add some stats.
15847
15848 2006-08-31 Robert Jordan  <robertj@gmx.net>
15849
15850         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
15851         with managed variants.
15852         All code is contributed under the MIT/X11 license.
15853         
15854 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
15855
15856         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
15857         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
15858
15859         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
15860
15861         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
15862         with cycles in classes.
15863
15864         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
15865
15866         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
15867         missing a [MarshalAs] directive. Fixes #79203.
15868
15869         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
15870         klass->marshal_info. Fixes #79217.
15871
15872 2006-08-30  Martin Baulig  <martin@ximian.com>
15873
15874         Committing a patch from Joachim Ante <joe@otee.dk>:
15875         Add support for binary data symbol stores.
15876
15877         * debug-mono-symfile.c
15878         (mono_debug_open_mono_symbol_file): Renamed into
15879         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
15880         arguments.
15881
15882         * mono-debug.c
15883         (mono_debug_open_image): Added `raw_contents' and `size' args.
15884         (mono_debug_init_2_memory): New public function.
15885
15886 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
15887
15888         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
15889
15890 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15891
15892         * appdomain.c: implement support for ShadowCopyFiles.
15893
15894 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
15895
15896         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
15897         when value is NULL (and should remove CID #51).
15898
15899 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15900
15901         * image.c: moved 2 functions to ../utils.
15902
15903 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
15904
15905         * gc.c: cope with the target object of a GC handle being NULL
15906         (bug #78877).
15907
15908 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
15909
15910         * class.c: recursively check parent's explicit implementations
15911         of interface methods (fixes bug #79125).
15912
15913 2006-08-19  Miguel de Icaza  <miguel@novell.com>
15914
15915         * filewatcher.c: Avoid warnings when building, do not redefine
15916         constants that are defined.
15917
15918         Remove warnings.
15919
15920 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15921
15922         * image.c: don't fail when the link points to an absolute path.
15923
15924 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
15925
15926         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
15927         Fix CID #3.
15928
15929 2006-08-17  Miguel de Icaza  <miguel@novell.com>
15930
15931         * image.c (full_path): A new method used to obtain the actual path
15932         of an assembly even in the presence of symbolic links.  
15933
15934         This is necessary for the case where we are running a binary that
15935         has been GACed, but we are using the "published" path name
15936         ($prefix/mono/1.0/blah.exe) which happens to point to the real
15937         file in the GAC.
15938
15939         This was the source of the failure for the `xsp' command with the
15940         recent AppDomain changes, as far as the runtime was concerned,
15941         there were two different assemblies: $prefix/mono/1.0/blah.exe and
15942         $prefix/mono/gac/blah/version/blah.exe.
15943
15944         (do_mono_image_open): use full path
15945
15946 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15947
15948         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
15949
15950 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
15951
15952         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
15953         domain_id is supplied. Fix CID #241 and corlib's unit tests.
15954
15955 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15956
15957         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
15958         small structures. Fixes #78990.
15959
15960 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15961
15962         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
15963
15964         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
15965
15966 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15967
15968         * appdomain.c:
15969         * marshal.c: don't load all the assemblies from a domain into newly
15970         created ones. The new domains might have different rules and load
15971         assemblies from different locations. Fixes bug #76757.
15972
15973         Patch by Lluis. Conflicts resolved by Brian Crowell.
15974
15975 2006-08-16  Alp Toker  <alp@atoker.com>
15976
15977         * socket-io.c: First half of the fix for #79084.
15978         Set sa_size to the length of the content, not that of the struct.
15979         Don't add NULL suffix to the content, this should be done in
15980         managed code if needed.
15981
15982 2006-08-14  Raja R Harinath  <rharinath@novell.com>
15983
15984         Fix part of #79012
15985         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
15986         mono_metadata_parse_type returns NULL.
15987
15988 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
15989
15990         * normalization-tables.h : new file for string normalization data.
15991         * locales.c, locales.h, icall.c :
15992           added load_normalization_resource() for string normalization,
15993           and icall as well.
15994         * Makefile.am : added normalization-tables.h to the sources.
15995
15996 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
15997
15998         * marshal.c: Add more helper functions to reduce code duplication and use them
15999         everywhere.
16000
16001 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
16002
16003         * marshal.c: Fix non-x86 stdcall warnings.
16004         
16005         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
16006         them everywhere.
16007
16008 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
16009
16010         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
16011         type check on multi-dimensional arrays. Fixes #79000.
16012
16013 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
16014
16015         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
16016         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
16017         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
16018         * class-internals.h: add is_com_object to class structure.
16019         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
16020         null checks to COM object marshalling. Fix .ctor call on RCW.
16021         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
16022         
16023         All code is contributed under the MIT/X11 license.
16024
16025 2006-08-09  Dick Porter  <dick@ximian.com>
16026
16027         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
16028         racing mono_monitor_allocator_lock() somewhere, so don't delete
16029         the critical section for now.  Found by running and exiting
16030         monodevelop.
16031
16032 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
16033
16034         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
16035         (ves_icall_System_ComObject_FindInterface): Ditto.
16036         (ves_icall_System_ComObject_CacheInterface): Ditto.
16037
16038         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
16039         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
16040
16041 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16042
16043         * threadpool.c: treat pipes from process asynchronous reads as sockets
16044         when reading from them, so we get select/poll or epoll to wait for
16045         data.
16046
16047 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
16048
16049         * loader.c: Fix a typo (CID #233) in the null check.
16050
16051 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
16052
16053         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
16054         Hopefully fixes #78949.
16055         
16056         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
16057         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
16058         bytes. Fixes #78972.
16059
16060 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16061
16062         * filewatcher.c: we need to set errno here.
16063
16064 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16065
16066         * filewatcher.c: let Win32Exception get the error value.
16067
16068 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16069
16070         * filewatcher.c: translate errno into win32 errors for Win32Exception
16071         to know what happened.
16072
16073 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
16074
16075         * threadpool.c: Fix more warnings.
16076
16077         * assembly.c (search_loaded): Fix warnings.
16078
16079         * threadpool.c (mono_thread_pool_finish): Fix warnings.
16080         (mono_async_invoke): Ditto.
16081
16082 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
16083
16084         * object.c (mono_remote_class_vtable): Need to create proxy vtable
16085         entries for __ComObject type in addition to ComImport types.
16086         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
16087         about hash table.
16088         
16089         All code is contributed under the MIT/X11 license.
16090
16091 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
16092
16093         * image.c: avoid tentative loading of modulerefs that contain
16094         no metadata (P/Invoke library names).
16095
16096 2006-07-28  Dick Porter  <dick@ximian.com>
16097
16098         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
16099         mono_loader_lock() somewhere, so don't delete the critical section
16100         for now.  Found by running and exiting monodevelop.
16101
16102 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16103
16104         * filewatcher.c: define the inotify syscalls when we're building on
16105         linux and have sys/syscall.h. The build system might not have support
16106         for inotify but the target system might have it.
16107
16108 2006-07-26  Miguel de Icaza  <miguel@novell.com>
16109
16110         * domain.c: Documentation updates.
16111
16112         * loader.c (mono_free_method): Do not release the method
16113         information if we are being profiled, as profilers will use this
16114         information at shut down to present some data to the user.
16115
16116         This is needed so that the profiler does not crash, as the
16117         profiler tends to keep MonoMethods around, and they might become
16118         invalid if we free these.
16119
16120         (mono_get_method_constrained): Return the original CIL stream
16121         method as well, so verification can be performed against it.
16122
16123 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16124
16125         * filewatcher.[ch]: support for inotify file system watcher.
16126         * icall.c: add new internal calls for the inotify file system watcher.
16127
16128 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16129
16130         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
16131         #78888.
16132
16133 2006-07-20  Dick Porter  <dick@ximian.com>
16134
16135         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
16136         warning.
16137
16138 2006-07-20  Dick Porter  <dick@ximian.com>
16139
16140         * threads.c (start_wrapper): Do the thread cleanup while we still
16141         hold a reference to its object.  Fixes bug 78123.
16142
16143 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
16144
16145         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
16146         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
16147           "managed-to-managed".
16148         * icall.c: Redirect string constructors that take sbyte* to
16149           ves_icall_System_String_ctor_RedirectToCreateString.
16150         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
16151           to CreateString () methods with matching signature.
16152         * reflection.c: Use original security informations for
16153           MONO_WRAPPER_MANAGED_TO_MANAGED.
16154         * security-manager.c: Use original security informations for
16155           MONO_WRAPPER_MANAGED_TO_MANAGED.
16156         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
16157           that is a placeholder and only its address should be used.
16158         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
16159           that is a placeholder and only its address should be used.
16160
16161 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
16162
16163         Begin implementing COM Interop.
16164         * appdomain.c: Increment corlib version.
16165         * class.c: Set ComImport classes' parent to __ComObject.
16166         * loader.c: Mark cominterop methods as such.
16167         * domain.c: Add __ComObject class to MonoDefaults structure.
16168         * image.c: Add 2 hashtables to the image for COM Interop related methods
16169         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
16170         using the mempool allocator
16171         
16172         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
16173         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
16174         declaration for mono_metadata_type_dup_mp.
16175         
16176         * debug-helpers.c: Added strings for two additional wrapper types
16177         * object.c: Create proxy objects for ComImport classes
16178         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
16179         and added __ComObject class to MonoDefaults structure.
16180         
16181         * object-internals.h: Finish MonoRealProxy definition, and add definition of
16182         MonoComInteropProxy and MonoComObject.
16183         
16184         * marshal.c: Added support for COM Interop
16185         (signature_cominterop): Converts managed signature to corresponding
16186         unmanaged COM signature.
16187         (cominterop_get_function_pointer): gets unmanaged function pointer via
16188         COM object vtable
16189         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
16190         (cominterop_get_method_interface): returns interface type that method is defined on
16191         (mono_mb_emit_cominterop_call): emits native call to function pointer
16192         gotten from vtable
16193         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
16194         that matches signature of unmanaged function.
16195         (cominterop_get_native_wrapper): wrapper around adjusted method call.
16196         (cominterop_get_invoke): forwards call from proxy to __ComObject
16197         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
16198         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
16199         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
16200         
16201         * marshal.h: Added Marshal icall declarations.
16202         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
16203         so we can access them in finalizer
16204         
16205 2006-07-14  Dick Porter  <dick@ximian.com>
16206
16207         * object.c (mono_type_initialization_cleanup): Fix a race
16208         condition by temporarily commenting out the critical section
16209         deletion.
16210
16211 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
16212
16213         * reflection.c (create_custom_attr): Fix some warnings.
16214         (create_custom_attr_data): Ditto.
16215         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
16216         types. Fixes #78855.
16217
16218 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
16219
16220         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
16221
16222         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
16223
16224 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
16225
16226         * reflection.c (resolve_object): Add support for DynamicMethod.
16227
16228         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
16229         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
16230
16231 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
16232
16233         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
16234         don't leak GPtrArray's pdata has we have no use (nor free) for it.
16235
16236 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
16237
16238         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
16239         Fixes #77888.
16240
16241 2006-06-30  Raja R Harinath  <rharinath@novell.com>
16242
16243         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
16244         slightly: remove a shadow local variable.
16245
16246 2006-06-29  Raja R Harinath  <rharinath@novell.com>
16247
16248         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
16249         definition that introduces the virtual function slot.
16250         Also fix Coverity #105.
16251
16252 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
16253
16254         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
16255         for dynamic assemblies. Fixes #78724.
16256
16257 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
16258
16259         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
16260         Fixes #78722.
16261
16262 2006-06-21  Martin Baulig  <martin@ximian.com>
16263
16264         * reflection.c
16265         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
16266         fixes #76484.
16267
16268 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
16269
16270         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
16271
16272 2006-06-20  Raja R Harinath  <rharinath@novell.com>
16273
16274         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
16275         nor TYPEREFs.
16276         * class.c (mono_class_create_from_typespec): Add 'context' argument.
16277         Inflate result if necessary.
16278         (mono_class_get_full): Remove old version.  Rename from
16279         'mono_class_get' and add 'context' argument.  Pass it to
16280         ..._create_from_typespec.
16281         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
16282         (mono_ldtoken): Revert change below.
16283
16284 2006-06-20  Martin Baulig  <martin@ximian.com>
16285
16286         * class.c (mono_ldtoken): Don't pass the generic context to
16287         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
16288
16289 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
16290
16291         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
16292         and later freeing it. Fixes #78638.
16293
16294 2006-06-15  Miguel de Icaza  <miguel@novell.com>
16295
16296         * icall.c (mono_class_get_throw): Revert over-zealous error
16297         throwing, the caller for mono_class_get_throw will cope with
16298         errors when classes are not properly initialized already.
16299
16300         The code still copes with loader exceptions though.
16301
16302         Fixes the regression in reftype1 and reftype3 from the CAS tests.
16303         
16304 2006-06-14  Miguel de Icaza  <miguel@novell.com>
16305
16306         Fixes the `make run1' version of RuntimeAbort (to be commited,
16307         source is in Bugzilla).
16308         
16309         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
16310         FALSE on class loading failure instead of returning true.
16311
16312         * class.c (mono_class_create_from_typedef): It is possible for
16313         mono_metadata_interfaces_from_typedef_full to fail if a class is
16314         not found, cope with this.
16315         
16316
16317 2006-06-14  Dick Porter  <dick@ximian.com>
16318
16319         * socket-io.c: 
16320         * process.c: Fix a bunch of signed/unsigned warnings from gcc
16321         4.1.1
16322
16323 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
16324
16325         * culture-info-table.h : oops, forgot to make it nsync with r61548.
16326
16327 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16328
16329         * icall.c: Another fix for building mono in Visual Studio.
16330
16331 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16332
16333         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
16334         
16335 2006-06-09  Martin Baulig  <martin@ximian.com>
16336
16337         * debug-mono-symfile.c: Put this back and really fix it this
16338         time. Sorry for all the trouble.
16339
16340 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
16341
16342         * icall.c (mono_class_get_throw): Fix a warning.
16343         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
16344         ReflectionTypeLoadException if needed. Fixes #78606.
16345
16346         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
16347         (mono_class_init): Ditto.
16348
16349         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
16350         ref_only exceptions.
16351         (mono_loader_clear_error): Make this work even if there is no error.
16352
16353 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
16354
16355         * object-internals.h marshal.c marshal.h icall.c: Implement method 
16356         Marshal.GetComSlotForMethodInfo using internal call.
16357
16358 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
16359
16360         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
16361         a function for signalling it.
16362
16363         * class.c (mono_class_from_typeref): Use the new kind of loader error when
16364         a referenced assembly is not found.
16365
16366         * loader.c (mono_loader_error_prepare_exception): Add support for 
16367         LOADER_ERROR_ASSEMBLY. Fix formatting.
16368
16369 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16370
16371         * domain.c appdomain.c class-internals.h marshal.c: Add support 
16372         for VARIANT marshalling on windows and increment corlib version
16373         since Variant struct was added.
16374
16375 2006-06-03  Miguel de Icaza  <miguel@novell.com>
16376
16377         * debug-mono-symfile.c: Revert Martin's previous patch which broke
16378         stack trace line information:
16379
16380         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
16381         (Martin) when looking up B which is between A and C, return A not C.
16382
16383         Bug is #78573.
16384
16385         Thanks to Alexander Olk for tracking this down.
16386
16387 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
16388
16389         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
16390         
16391         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
16392         avoid clobbering its value.
16393         (mono_string_to_lpstr): Fix a warning on windows.
16394
16395 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
16396
16397         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
16398
16399         * reflection.c loader.c: Removed references to 'dummy' flag.
16400
16401         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
16402
16403         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
16404         it gets GC tracking.
16405
16406         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
16407         GC tracking.
16408         
16409         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
16410
16411         * marshal.c threadpool.c: Update callers of mono_async_result_new.
16412
16413         * appdomain.c: Bump corlib version.
16414
16415 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
16416
16417         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
16418         CEE_STIND_REF when working with object references.
16419
16420 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
16421
16422         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
16423         Fixes #78539.
16424
16425 2006-05-30  Miguel de Icaza  <miguel@novell.com>
16426
16427         * loader.c (method_from_memberref): Fix argument value for
16428         mono_loader_set_error_method_load (I was passing the MonoClass
16429         instead of the class name char *).
16430
16431 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
16432
16433         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
16434         CEE_STIND_REF when working with object references.
16435
16436 2006-05-30  Martin Baulig  <martin@ximian.com>
16437
16438         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
16439         mono_method_full_name() change and replace the ':' with a '.'
16440         here.
16441
16442 2006-05-30  Martin Baulig  <martin@ximian.com>
16443
16444         * debug-mono-symfile.c
16445         (mono_debug_symfile_lookup_location): Fix the algorithm:
16446         when looking up B which is between A and C, return A not C.
16447
16448 2006-05-29  Martin Baulig  <martin@ximian.com>
16449
16450         * mono-debug.h
16451         (MonoDebugMethodInfo): Make the typedef public.
16452         (MonoDebugSourceLocation): New public struct.
16453
16454         * mono-debug.c
16455         (mono_debug_source_location_from_address): Removed.
16456         (mono_debug_source_location_from_il_offset): Removed.
16457         (mono_debug_il_offset_from_address): Removed.
16458         (mono_debug_address_from_il_offset): Removed.
16459         (mono_debug_lookup_method): New public function.
16460         (mono_debug_lookup_source_location): New public function; replaces
16461         the old mono_debug_source_location_from_*() functions; see the
16462         inline documentation.
16463         (mono_debug_free_source_location): New public function.
16464         (mono_debug_print_stack_frame): New public function; see the
16465         inline documentation.
16466
16467         * debug-mono-symfile.c
16468         (mono_debug_find_source_location): Renamed into
16469         mono_debug_symfile_lookup_location(); only take a
16470         `MonoDebugMethodInfo *' and an `offset' argument; added inline
16471         documentation.
16472         (mono_debug_find_method): Renamed into
16473         mono_debug_symfile_lookup_method().
16474
16475 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
16476
16477         * assembly.c (mono_assembly_open_full): Dont overwrite the status
16478         returned by mono_image_open_full ().
16479
16480         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
16481         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
16482         #78517.
16483
16484         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
16485         #78518.
16486
16487 2006-05-27  Miguel de Icaza  <miguel@novell.com>
16488
16489         * class.c (mono_class_from_typeref): handle missing images
16490         earlier, deals with bug #78418.   Refactor code; 
16491
16492         Fix a warning introduced in my previous commit (some stale code
16493         from before I revisited my patch).
16494
16495         * class.c (mono_class_create_from_typedef): On failure, remove the
16496         class from the MonoImage->class_cache as the class is not
16497         initialized;   Fixes the leak pointed out by Paolo.
16498
16499 2006-05-25  Dick Porter  <dick@ximian.com>
16500
16501         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
16502         DeleteCriticalSections until I figure out which one may still be
16503         sometimes locked when mono_thread_cleanup is called.
16504
16505 2006-05-24  Dick Porter  <dick@ximian.com>
16506
16507         * threads.c (mono_thread_cleanup): Move the threading cleanup out
16508         of mono_thread_manage and back into its own function, so it can be
16509         called after the finalizer thread has finished.
16510
16511         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
16512
16513 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
16514
16515         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
16516         Fixes #78495.
16517
16518         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
16519         with non-blittable elements.
16520         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
16521
16522 2006-05-24  Martin Baulig  <martin@ximian.com>
16523
16524         * mono-debug-debugger.h (MonoDebuggerEvent): Added
16525         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
16526
16527         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
16528         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
16529         `mono_debugger_event_handler' to NULL.
16530
16531 2006-05-24  Martin Baulig  <martin@ximian.com>
16532
16533         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
16534
16535 2006-05-24  Martin Baulig  <martin@ximian.com>
16536
16537         * mono-debug-debugger.h
16538         (mono_debugger_create_notification_function): Added
16539         `MonoCodeManager *' argument.
16540
16541 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
16542
16543         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
16544
16545 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
16546
16547         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
16548         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
16549         implementation.
16550
16551 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
16552
16553         * icall.c: precise GC support: objects can't be stored in unmanaged
16554         memory anymore, even if they are kept alive by other references: since
16555         they can move the GC needs to be able to always find them.
16556
16557 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
16558
16559         * object.c: precise GC support for static fields. Support
16560         for moving GCs: write barriers and pinned allocation for interned
16561         strings.
16562
16563 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
16564
16565         * domain.c, domain-internals.h: precise GC support for the MonoDomain
16566         structure.
16567
16568 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
16569
16570         * class.c, gc.c: sgen and precise GC updates.
16571
16572 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
16573
16574         * marshal.h, marshal.c: added write barrier wrapper and precise type
16575         fixes.
16576
16577 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
16578
16579         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
16580         support.
16581
16582 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
16583
16584         * reflection.c: precise and sgen GC updates.
16585
16586 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
16587
16588         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
16589
16590 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
16591
16592         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
16593
16594 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
16595
16596         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
16597         MONO_TYPE_OBJECT. Fixes #78462.
16598
16599 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
16600
16601         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
16602         and blittable types.
16603
16604 2006-05-17  Miguel de Icaza  <miguel@novell.com>
16605
16606         * class.c (mono_class_get_exception_for_failure): Implement parts
16607         of a TODO: if the loader error is set (instead of the class
16608         error), we return a Loader exception that can be properly thrown
16609         elsewhere.
16610
16611         This was exposed by some Winforms 2.0 code that I tried to run
16612         (Atsushi pointed me to it).
16613
16614 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
16615
16616         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
16617         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
16618         
16619         * marshal.c (emit_marshal_vtype): Add limited support for 
16620         UnmanagedType.LPStruct. Fixes #78427.
16621
16622         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
16623         Applied a patch from kangaroo to fix #77523.
16624
16625 2006-05-17  Martin Baulig  <martin@ximian.com>
16626
16627         * threads.c
16628         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
16629         (debugger_thread_created): Removed.
16630         (debugger_thread_exited): Removed.
16631
16632 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
16633
16634         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16635
16636         * object-internals.h (MonoReflectionResource): Sync with managed version.
16637
16638 2006-05-12  Wade Berrier <wberrier@novell.com>
16639
16640         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
16641
16642 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
16643
16644         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
16645         functions try to allocate from the image mempool.
16646
16647 2006-05-12  Dick Porter  <dick@ximian.com>
16648
16649         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
16650
16651 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
16652
16653         * object.c: The FieldGetter and FieldSetter methods require the full
16654         name of the class, not only the name. Fixes bug #78277.
16655
16656 2006-05-11  Miguel de Icaza  <miguel@novell.com>
16657
16658         * loader.c (method_from_memberref): Do not pass the NULL klass to
16659         mono_loader_set_error_() methods.  Pass the non-NULL value
16660         (class). 
16661
16662 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
16663
16664         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
16665         (mono_assembly_close): Null out assembly->image->references after freeing it.
16666
16667         * image.c (mono_image_close): Free image->references.
16668         
16669         * reflection.c (mono_image_basic_init): Fix a small memory leak.
16670
16671 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
16672
16673         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
16674         before checking if it's NULL (g_assert).
16675
16676 2006-05-10  Martin Baulig  <martin@ximian.com>
16677
16678         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
16679         I thought I already killed that two months ago, but now it somehow reappeared.
16680
16681 2006-05-10  Martin Baulig  <martin@ximian.com>
16682
16683         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
16684
16685 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
16686
16687         * reflection.c: Allocate memory for dynamically created methods in the image
16688         mempools.
16689
16690 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
16691
16692         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
16693         don't use the ad pointer before checking if it's NULL (g_assert).
16694
16695 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
16696
16697         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
16698         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
16699
16700         * marshal.c: Allocate all signatures from mempools.
16701
16702         * marshal.c: Allocate some more signatures from mempools.
16703
16704 2006-05-09  Miguel de Icaza  <miguel@novell.com>
16705
16706         * object.c (mono_load_remote_field): The code used to provide a
16707         temporary variable for returning results if the user did not
16708         provide a result pointer.  But our temporary variable was allocted
16709         on the satck.
16710
16711         Fix calling code to always pass a result area.   Coverity ID 103.
16712
16713 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
16714
16715         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
16716         value, not the old. Fixes #78312.
16717         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
16718
16719         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
16720         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
16721         per-image cache.
16722
16723         * assembly.c (mono_assembly_close): Free image->references.
16724
16725         * assembly.c (mono_assembly_names_equal): Fix a warning.
16726         (mono_assemblies_cleanup): Cleanup more global data.
16727
16728         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
16729
16730         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
16731         ptr_cache and image->modules.
16732
16733         * image.c (mono_image_init): Allocate array_cache lazily.
16734         
16735 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16736
16737         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
16738         behavior was changed recently and has bad side effects.
16739
16740 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
16741
16742         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
16743         
16744         * assembly.c (mono_assembly_close): Remove a debug printf.
16745
16746         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
16747
16748         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
16749         to also allow for temporary references between mono_image_open ()/close ().
16750
16751         * domain.c (get_runtimes_from_exe): Add a FIXME.        
16752
16753 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
16754
16755         * marshal.c: Fix support for dynamic methods.
16756
16757         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
16758
16759         * marshal.c (mono_marshal_cleanup): New cleanup function.
16760
16761         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
16762         image mempools.
16763
16764         * class.c (mono_class_init): Fix leaking class->nested_classes.
16765
16766         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
16767
16768         * image.c (mono_image_init): Initialize the new cashes.
16769
16770         * image.c (mono_image_close): Destroy the new cashes.
16771
16772         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
16773
16774         * mempool.c (mono_mempool_strdup): New helper function.
16775
16776         * class-internals.h: Add prototype for mono_loader_unlock ().
16777
16778         * domain.c (mono_jit_info_table_find): Fix a warning.
16779         (mono_debugger_check_runtime_version): Ditto.
16780
16781         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
16782         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
16783         functions to these modules.
16784
16785         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
16786         metadata modules.
16787         
16788         * marshal.c (mono_free_bstr): Fix a warning.
16789
16790         * assembly.c (mono_assembly_open_full): Fix another small leak.
16791
16792         * object.c: Fix some unload leaks in the remoting code.
16793
16794         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
16795         function.
16796
16797         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
16798
16799         * reflection.c: Fix some unload leaks in dynamic assemblies.
16800
16801 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
16802
16803         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
16804         * marshal.h: Add BSTR support on Win32
16805         * icall.c: Add BSTR icalls
16806         * metadata.h: Add BSTR enums
16807
16808 2006-04-28  Miguel de Icaza  <miguel@novell.com>
16809
16810         Work to catch the crash from #76795 and turn it into an
16811         exception.   As I stubbed out pieces of the VisualBasic support,
16812         I found a number of places where the code was failing and I added
16813         checks to those places. 
16814         
16815         * metadata.c (do_mono_metadata_parse_generic_class): Make this
16816         function return a status code.  If we fail to parse the signature
16817         from mono_metadata_parse_generic_inst, return FALSE.
16818
16819         * loader.c (mono_get_method_from_token): If we fail to load the
16820         method (mono_class_get) return NULL.   
16821
16822         * (method_from_memberref): Return NULL if we are unable to parse
16823         the method signature
16824
16825         (mono_loader_error_prepare_exception): Since we now use the
16826         loader_error flag internally to stop processing, and obtaining
16827         exceptions that might be thrown will walk this code path the
16828         proper way of going from a MonoLoaderError into a
16829         MonoException was convoluted.   This new routine encapsulates the
16830         process of turning the error into an exception and *clearing* the
16831         error afterwards.
16832         
16833 2006-04-27  Miguel de Icaza  <miguel@novell.com>
16834
16835         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
16836         with missing assemblies), and to cope with:
16837
16838                 * Missing fieldref from a non-existing assembly.
16839                 * Missing methodref from a non-existing assembly.
16840
16841         The first batch of work to address *some* of the issues from 76661.
16842         
16843         * object.c (mono_class_create_runtime_vtable): If we fail to
16844         initialize the class raise the exception here. 
16845
16846         * metadata.c (mono_class_get_overrides_full): If any methods fail
16847         to load return the failure to the caller.
16848
16849         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
16850         flagging assemblies that failed to load.   
16851
16852         Do not crash if we are unable to load the assembly.
16853
16854         (mono_assembly_close): Do nothing with REFERENCE_MISSING
16855         assemblies. 
16856
16857         * loader.c (mono_loader_set_error_type_load): Change the
16858         convention to always pass unallocated strings, so we make our own
16859         copies (I know our own code had duplicated strings before, but
16860         this keeps the normal conventions).
16861         (method_from_memberref): Call mono_loader_set_error_method_load
16862         for all possible failures of loading the class. 
16863         Remove assert, turn into a loader error.
16864
16865         (mono_loader_error_to_exception): Move this routine from mini
16866         (mini_loader_error_to_exception) there was no need to have that in
16867         mini. 
16868
16869         * class.c (mono_class_from_typeref): If we were not able to load
16870         the assembly with mono_assembly_load_reference, call the
16871         mono_loader_set_error_type_load to register the problem.
16872
16873         (mono_class_setup_fields): If we fail to load the type from
16874         mono_metadata_parse_type_full, call mono_class_set_failure and
16875         break from the loop.
16876
16877         If class->exception_type is set, we do not layout the fields as
16878         that might crash the runtime, and instead return (from breaking
16879         from the previous loop).
16880
16881         (mono_class_setup_vtable): This now returns a boolean indicating
16882         whether the table was properly setup.   The decision is driven by
16883         mono_class_get_overrides_full which might run into non-existing
16884         methods. 
16885         
16886         (mono_class_init): Returns TRUE on success or FALSE if there was a
16887         problem in loading the type (incorrect assemblies, missing
16888         assemblies, methods, etc).
16889
16890         When we call mono_class_setup_fields we also check for a potential
16891         error inside this call (either a class exception or a general
16892         loader exception).
16893
16894         (mono_class_create_from_typedef): If the parent fails to load
16895         (calling mono_class_get_full) return NULL.
16896         
16897         ** Important **
16898
16899         calls to mono_metadata_parse_type_full should be checked
16900         everywhere and set the mono_class_set_failure
16901         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
16902
16903         The current patch checks the places where my manually constructed
16904         tests show the errors are showing up, but we should do it
16905         everywhere. 
16906
16907         ** Important2 **
16908
16909         mono_class_init return values should be tested everywhere, like
16910         the previous case this is something that we should audit
16911         everywhere and not only on the cases exposed by the tests I
16912         created. 
16913
16914 2006-04-26  Miguel de Icaza  <miguel@novell.com>
16915
16916         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
16917         boolean parameter and instead pass the information on `options'
16918         parameter (FileOptions).
16919
16920         * icall.c: Register the new signature for MonoIO.Open.
16921
16922         * debug-helpers.c (dis_one): Trying to understand how coverity
16923         works.  Fix Run 5, item 78.
16924
16925 2006-04-26  Dick Porter  <dick@ximian.com>
16926
16927         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
16928         dereference.
16929
16930 2006-04-25  Martin Baulig  <martin@ximian.com>
16931
16932         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
16933
16934         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
16935         debugger_thread_created().
16936         (debugger_gc_push_all_stacks): Don't handle the main thread in any
16937         special way.
16938         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
16939         (mono_debugger_finalize_threads): New function; undo the effects
16940         of mono_debugger_init_threads().
16941         (mono_debugger_create_all_threads): Removed.
16942
16943 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
16944
16945         * image.c (mono_image_close): Tidy up trace messages.
16946
16947         * assembly.c (mono_assembly_close): Ditto.
16948
16949         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
16950         no longer references an already freed assembly. Fixes #78168.
16951
16952 2006-04-21  Dick Porter  <dick@ximian.com>
16953
16954         * threads.c (mono_thread_detach): Fix reference counting when
16955         detaching threads.
16956
16957 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
16958
16959         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
16960         #78155.
16961
16962 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
16963
16964         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
16965         (mono_type_to_stind): Ditto.
16966
16967         * marshal.c: Use the new helper functions to simplify code.
16968
16969         * image.c (mono_image_close): Add some code for help debug assembly unloading
16970         problems.
16971
16972         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
16973         image mempool.
16974
16975         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
16976         assembly was already loaded in another appdomain. Fixes #78083.
16977
16978 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
16979
16980         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
16981         referenced assemblies.
16982         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
16983
16984         * domain.c (mono_domain_free): Add a trace message.
16985
16986         * appdomain.c (add_assemblies_to_domain): Ditto.        
16987
16988         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
16989         field.  
16990
16991 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
16992
16993         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
16994
16995 2006-04-12  Martin Baulig  <martin@ximian.com>
16996
16997         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
16998         `USE_INCLUDED_LIBGC'.   
16999
17000 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17001
17002         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
17003         the patch contains ../ and a small directory name later. Hopefully fixes
17004         #78035.
17005
17006 2006-04-10  Martin Baulig  <martin@ximian.com>
17007
17008         Clean up the debugger's thread-handling code.
17009
17010         The debugger's thread-handling code has been moved from
17011         ../mini/debug-debugger.c to threads.c.  We now iterate directly
17012         over the `threads' hash, keep track of exiting threads and also
17013         use proper locking.
17014
17015         We can now debug XSP and XSP based applications with the debugger.
17016
17017         * object-internals.h (MonoThread): Added `gpointer end_stack'.
17018
17019         * threads.h
17020         (MonoThreadCallbacks): Removed; this was only used by the debugger.
17021         (mono_install_thread_callbacks): Likewise.      
17022
17023         * threads.c (mono_thread_callbacks): Removed.
17024         (debugger_thread_created, debugger_thread_exited): New static functions.
17025         (start_wrapper): Call debugger_thread_created().
17026         (thread_cleanup): Call debugger_thread_exited().
17027         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
17028         (mono_debugger_init_threads): New public function.
17029         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
17030         iterate directly over the `threads' hash and also use proper locking.
17031
17032         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
17033
17034         * mono-debug-debugger.h
17035         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
17036
17037 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
17038
17039         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
17040         argument type=array. Fixes #78057.
17041
17042 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
17043
17044         * culture-info-table.h : regenerated. Fixed bug #69652.
17045
17046 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
17047
17048         * loader.c metadata.c: Reapply a variant r59116.
17049         
17050         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
17051
17052         * class.c (mono_class_setup_interface_offsets): New internal function.
17053
17054         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
17055         interfaces too. Fixes #77398.
17056
17057         * reflection.c (encode_cattr_value): Add support for 
17058         parameter type=object, argument type=array.
17059         (load_cattr_value): Ditto. Fixes #77916.
17060
17061         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
17062         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
17063
17064         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
17065         a byval char array and CharSet is Ansi.
17066
17067         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
17068
17069 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
17070
17071         * metadata.c: Add some locking comments.
17072         
17073         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
17074         mempool.
17075         (mono_metadata_free_method_signature): Don't free the signature itself.
17076
17077         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
17078
17079         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
17080         reference the same MonoImage.
17081         (mono_assembly_load_from_full): Add an assert.
17082
17083 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
17084
17085         * image.c (mono_image_close): Don't put the image we are about to free into the
17086         loaded_images_guid_hash.
17087
17088         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
17089         to reduce code duplication.
17090
17091         * marshal.c: Register the native functions called by this module as icalls, to
17092         somewhat centralize the creation of MonoMethodSignature's.
17093
17094         * loader.c (mono_method_signature): Add a cache for method signatures.
17095
17096         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
17097         the parameter attributes of a method.
17098         (mono_metadata_parse_method_signature_full): Refactored the computation of
17099         parameter attributes into a separate function. Also avoid one allocation in
17100         most cases.
17101
17102         * assembly.c (mono_assembly_close): Ditto.
17103
17104         * image.c (mono_image_close): Log trace messages with INFO level.
17105
17106         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
17107
17108         * image.c reflection.c: Correct reference counting of image modules.
17109         
17110         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
17111         of this function from the image mempool.
17112         
17113         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
17114         to allow more cached types to be used.
17115
17116         * mono-debug.c (mono_debug_add_method): Appled patch from
17117         David S. Miller  <davem@sunset.davemloft.net>: Access 
17118         minfo->lexical_blocks[] entry elements using read32().
17119
17120 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
17121
17122         * loader.c (mono_free_method): No longer free the method header for non-dynamic
17123         methods as it is allocated from the mempool.
17124
17125         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
17126         image mempool.
17127
17128         * metadata-internals.h: Add comments describing the reference counting scheme
17129         used for MonoImage and MonoAssembly.
17130
17131         * image.c assembly.c reflection.c: Rework reference counting of images and 
17132         assemblies so they are freed when the runtime is shut down. Free some 
17133         additional memory structures when an image is unloaded.
17134         
17135 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
17136
17137         * class.c loader.c reflection.c: Allocate more data structures in
17138         the image mempool.
17139
17140 2006-03-31  Miguel de Icaza  <miguel@novell.com>
17141
17142         * icall.c
17143         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
17144         build on pre glib 2.4 systems.
17145
17146 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
17147
17148         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
17149
17150         * icall.c: Fix some warnings.
17151
17152 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
17153
17154         * culture-info-table.h : regenerated.
17155
17156 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
17157
17158         * threads.c, object-internals.h, verify.c: changed the culture caching
17159         code to use a normal MonoArray for storage so the GC can keep track of
17160         them easily. Fixed bits of the cache logic, too and simplified the
17161         code.
17162
17163 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
17164
17165         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
17166         thread for non-Boehm GCs.
17167
17168 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17169
17170         * domain.c, object.c, domain-internals.h: reduce the amount of memory
17171         needed to keep track of the data for static fields.
17172
17173 2006-03-29  Raja R Harinath  <rharinath@novell.com>
17174
17175         Fix #75172
17176         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
17177         for interface classes.  Use 'num_methods' instead.
17178         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
17179         before using '->vtable_size' field.
17180
17181 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
17182
17183         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
17184         doesn't contain managed pointers, so use a normal hashtable.
17185
17186 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
17187
17188         * reflection.c, class-internals.h, domain.c: fixed handling of types
17189         used as values for objects in custom attributes (bug #77915):
17190
17191 2006-03-24  Martin Baulig  <martin@ximian.com>
17192
17193         * class.c (mono_class_setup_fields): Added support for generic
17194         instances; fixes #77580.
17195
17196 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17197
17198         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
17199
17200 2006-03-24  Dick Porter  <dick@ximian.com>
17201
17202         * file-io.c (get_file_attributes): More stat macro breakage.
17203         Fixes bug 77759.
17204
17205 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
17206
17207         * profiler.c: added the file=filename option in the default profiler
17208         to output the profile data to filename.
17209
17210 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17211
17212         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
17213         bug #77877.
17214
17215 2006-03-22  Martin Baulig  <martin@ximian.com>
17216
17217         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
17218         allocated `MonoClassField *' in `fb->handle'.
17219
17220 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17221
17222         * class.c, image.c, metadata-internals.h: implemented new mechanism to
17223         allocate interface ID to save memory and allow better ID reuse on
17224         appdomain unload. setup_generic_vtable () removal from Martin.
17225
17226 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
17227
17228         * object.h, appdomain.c, domain.c, exception.c, icall.c,
17229         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
17230         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
17231         write barriers for reference stores with managed objects accessed with
17232         C structures in the runtime and in embedding programs.
17233
17234 2006-03-20  Raja R Harinath  <rharinath@novell.com>
17235
17236         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
17237         'interface_id' and 'max_interface_id' fields of MonoClasses
17238         representing open generic types.
17239
17240 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
17241
17242         * object.h, object.c, icall.c: added functions to deal with
17243         storing valuetypes that contain references in managed objects.
17244         * reflection.c, string-icalls.c, threads.c, marshal.c: small
17245         fixes and comments around uses of mono_array_addr ().
17246
17247 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
17248
17249         * object.h, icall.c, monitor.c: object.GetHashCode ()
17250         implementation that supports the moving garbage collector.
17251
17252 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
17253
17254         * icall.c, threads-types.h, threads.c: implemented finalizer for
17255         LocalDataStoreSlot.
17256
17257 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
17258
17259         * metadata.c (mono_type_size): Add a fixme.
17260         (mono_type_stack_size): Ditto.
17261
17262         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
17263         'type_forwarders' field.
17264
17265         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
17266         attribute from net 2.0.
17267
17268         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
17269         from class.c.
17270
17271         * class.c (mono_class_setup_fields): Fix a warning.
17272         
17273         * class.c (mono_class_from_name): Add support for assemblyref entries
17274         in the EXPORTEDTYPE table.
17275
17276         * reflection.c: Add support for handling type forwarders under net 2.0.
17277
17278         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
17279         
17280 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
17281
17282         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
17283         overwriting entries in ModuleBuild->types, also clean up the code
17284         a little. Fixes #77774.
17285
17286 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
17287
17288         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
17289         load friend assembly info when present.
17290
17291 2006-03-14  Raja R Harinath  <rharinath@novell.com>
17292
17293         Fix crasher on gtest-158.cs.
17294         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
17295         the return value if the MonoClass we want is yet in an
17296         inconsistent state.
17297         * class.c (mono_class_create_from_typedef): Add an comment
17298         explaining an order dependency between mono_class_setup_parent and
17299         mono_class_setup_mono_type.
17300
17301 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
17302
17303         * class.c: documentation updates and events bug fix.
17304
17305 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17306
17307         * class.c: some cleanup, locking fixes.
17308
17309 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
17310
17311         * class.c: fix the generics code to setup nested
17312         type info to the instantiated type (bug #77770).
17313
17314 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17315
17316         * marshal.c: fixed a few type correctness issues.
17317
17318 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17319
17320         * loader.c: the Set/Get/Addrtess array methods should be public.
17321
17322 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
17323
17324         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
17325         
17326         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
17327         info->wrapper.
17328
17329 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
17330
17331         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
17332
17333         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
17334
17335         * mempool.c (mono_mempool_alloc): Speed this up a bit.
17336         (mono_mempool_alloc0): Ditto.
17337
17338 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17339
17340         * socket-io.c:
17341         (create_object_from_sockaddr): it was allocating 4 extra bytes
17342         for the AF_UNIX data. Fixes bug #77747.
17343
17344 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
17345
17346         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
17347
17348 2006-03-09  Dick Porter  <dick@ximian.com>
17349
17350         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
17351         Fixes bug 76966 again.
17352
17353 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
17354
17355         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
17356         names from r57532
17357         * appdomain.c: Bumped corlib version to 48 (due to r57532)
17358
17359 2006-03-07  Martin Baulig  <martin@ximian.com>
17360
17361         * object.c
17362         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
17363
17364 2006-03-07  Martin Baulig  <martin@ximian.com>
17365
17366         * class.c
17367         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
17368         regression introduced in r56970; see gtest-252.cs.
17369
17370         * loader.c (mono_get_method_constrained): Correctly handle generic
17371         methods; see gtest-253.cs.
17372
17373 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
17374
17375         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
17376
17377 2006-03-04  Martin Baulig  <martin@ximian.com>
17378
17379         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
17380         compute the parent type at runtime, just like we're already doing
17381         it for interfaces.
17382
17383         * reflection.c
17384         (mono_reflection_bind_generic_parameters): Don't compute the
17385         parent type anymore.
17386
17387         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
17388
17389 2006-03-04  Martin Baulig  <martin@ximian.com>
17390
17391         * mono-debug-debugger.h
17392         (mono_debugger_create_notification_function): Allocate memory at
17393         runtime and return a pointer to it.
17394
17395 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
17396
17397         * assembly.c: Fix windows build.
17398         
17399         * assembly.c: Fix build.
17400
17401         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
17402
17403         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
17404         
17405 2006-03-03  Dick Porter  <dick@ximian.com>
17406
17407         * process.c
17408         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
17409         Check parameters before dereferencing them.  Fixes Aaron's part of
17410         bug 77393.
17411
17412 2006-03-03  Raja R Harinath  <rharinath@novell.com>
17413
17414         Fix performance regression.
17415         * loader.c (find_method_in_class): Add 'from_class' argument.
17416         Rename 'klass' argument to 'in_class'.  The signature is compared
17417         against the method in 'in_class', and the corresponding method is
17418         returned from 'from_class'.
17419         (find_method): Walk both 'in_class' and 'from_class' in parallel.
17420         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
17421         type definition and generic instantiation in parallel.
17422         (mono_get_method_constrained): Update to changes.
17423
17424 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
17425
17426         * threads.c: make sure the domain is correct, too when doing
17427         mono_thread_attach ().
17428
17429 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
17430
17431         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
17432         windows. Fixes #77683.
17433
17434 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
17435
17436         * object.h, *: introduced specific way to set elements of an array
17437         of references to be used as write barrier. Still need to audit the
17438         uses of mono_array_addr.
17439
17440 2006-03-01  Miguel de Icaza  <miguel@novell.com>
17441
17442         * object-internals.h: New field to cache the assmebly name, patch
17443         from Tambet Ingo (tambet@ximian.com)
17444
17445 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
17446
17447         * decimal.h, class-internals.h, metadata-internals.h,
17448         file-io.h: mark a few function declarations as internal, to
17449         reduce the number of PLT entries.
17450
17451 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17452
17453         * file-io.c: fix typo in warning message.
17454
17455 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
17456
17457         * loader.c: on unix, lookup the "*A" version of a function
17458         if charset is auto as a second option before failing.
17459
17460 2006-02-28  Raja R Harinath  <rharinath@novell.com>
17461
17462         * class.h (mono_class_inflate_generic_method): Revert to two
17463         argument version.
17464         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
17465         (mono_class_inflate_generic_method_full): Add.
17466         * class.c (mono_class_inflate_generic_method_full): Rename from
17467         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
17468         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
17469         * loader.c, reflection.c: Update to changes.
17470
17471 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
17472
17473         * icall.c: const fixes and small improvements.
17474
17475 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17476
17477         * threadpool.c: for asynchronous connect(), enable the same workaround
17478         for BSD 6 as for the Mac. Fixes bug #77637.
17479
17480 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
17481
17482         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
17483         formatted classes. Fixes #77524.
17484
17485 2006-02-24  Raja R Harinath  <rharinath@novell.com>
17486
17487         * class.c (inflate_generic_type): Add a couple more
17488         micro-optimizations.
17489         (inflate_generic_context): Don't use the 'gmethod' from
17490         'inflate_with'.
17491         (mono_class_inflate_generic_method): If the method has generic
17492         parameters, but the passed-in context doesn't have a 'gmethod',
17493         create one.  Use the possibly simplified generic instantiation
17494         from the declaring class instead of the one passed in.
17495
17496 2006-02-24  Raja R Harinath  <harinath@gmail.com>
17497
17498         Make generic method signature and method header handling lazy.
17499         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
17500         (inflate_generic_header): Likewise.
17501         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
17502         parameter to avoid inflating types.
17503         (mono_get_inflated_method): Empty out.
17504         * class.h (mono_class_inflate_generic_method): Update to changes.
17505         * loader.c (mono_get_method_from_token): Don't parse signature for
17506         generic methods, nor methods of generic classes.
17507         (mono_method_signature): Rename from 'mono_method_signature'.
17508         Inflate signature on demand.
17509         (mono_method_get_header): Inflate method header on demand.
17510         * reflection.c: Update to changes.
17511
17512 2006-02-23  Raja R Harinath  <rharinath@novell.com>
17513
17514         * metadata.c (mono_metadata_inflate_generic_inst): If the
17515         instantiation is closed, don't bother expanding it in the new
17516         context.
17517         * class.c (inflate_generic_class): If the generic instantiation
17518         doesn't change after inflation, return the argument itself.
17519         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
17520         Add bounds checks.
17521         (inflate_generic_context): If neither the generic class nor the
17522         generic method instantiations change, return the original context.
17523         * reflection.c (mono_method_get_object): Do
17524         'mono_get_inflated_method' before accessing the ->klass field.
17525         (inflate_mono_method): Don't create a MonoGenericMethod unless
17526         necessary.
17527         (inflate_method): Don't pass a constructed type as the declaring
17528         type of a methodbuilder.
17529
17530 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
17531
17532         * object.c: fix memory overwrite.
17533
17534 2006-02-22  Dick Porter  <dick@ximian.com>
17535
17536         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
17537         it doesn't work any more.
17538         (mono_threads_request_thread_dump): Fix unused variable warnings.
17539
17540 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17541
17542         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
17543         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
17544         the public header file.
17545
17546 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
17547
17548         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
17549
17550 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
17551
17552         * class-internals.h, object.c: reduce the size of MonoVTable
17553         and store the interface_offsets array at negative offsets.
17554
17555 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
17556
17557         * metadata.c: tweak table descriptors data structures to reduce
17558         size and runtime relocations.
17559
17560 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17561
17562         * marshal.c: fix some types and opcodes to be type-safe
17563         in marshaling wrappers.
17564
17565 2006-02-21  Ankit Jain  <jankit@novell.com>
17566
17567         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
17568
17569 2006-02-21  Raja R Harinath  <rharinath@novell.com>
17570
17571         * metadata.c (get_constraints): Relax debugging checks for monodis.
17572
17573 2006-02-21  Ankit Jain  <jankit@novell.com>
17574
17575         * metadata.c (mono_metadata_load_generic_params): Move the code
17576         checking for ambiguous generic params from here to mono/dis/get.c
17577         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
17578
17579 2006-02-21  Raja R Harinath  <harinath@gmail.com>
17580
17581         Fix assertion triggered when compiling nemerle.
17582         * class.c (mono_get_shared_generic_inst): Rename from
17583         get_shared_inst and make non-static.
17584         * loader.c (mono_get_shared_generic_method): New.  Used to create
17585         the MonoGenericContext-equivalent of a MonoGenericContainer.
17586         (mono_get_method_from_token): Initialize the 'context' field of
17587         the created MonoGenericContainer.
17588         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
17589         * metadata.c (get_constraints): Add sanity check.
17590         * class-internals.h: Add new internal methods.
17591
17592         * reflection.c (verify_safe_for_managed_space): New sanity check.
17593         Currently checks that owner-less generic parameters aren't allowed
17594         in managed space.
17595         (mono_type_get_object): Use it.
17596         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
17597         that are now in mono_type_get_object.
17598         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
17599
17600 2006-02-19  Raja R Harinath  <harinath@gmail.com>
17601
17602         * metadata.c (mono_type_create_from_typespec): Rename from
17603         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
17604         argument and caching of types in the generic container.
17605         (unwrap_arrays, find_generic_param): Remove.
17606         * metadata-internals.h: Update.
17607         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
17608
17609 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
17610
17611         * class.c (mono_class_get_exception_for_failure): Fix a warning.
17612
17613         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
17614         return values. Fixes #77581.
17615
17616         * class.c (mono_fnptr_class_get): Switch name and name_space.
17617
17618         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
17619         classes and add support for [In, Out] attributes.
17620         (mono_marshal_free_asany): Ditto. Fixes #77524.
17621
17622 2006-02-18  Raja R Harinath  <harinath@gmail.com>
17623
17624         * class.c (mono_class_from_generic_parameter): Make more robust to
17625         incomplete MonoGenericContainers from monodis.
17626
17627 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17628
17629         * class-internals.h: added some more exception types.
17630         * class.c, metadata.c: added a few checks to handle missing
17631         types.
17632
17633 2006-02-17  Raja R Harinath  <rharinath@novell.com>
17634
17635         Use owner-less generic-params some more.
17636         * class.c (my_mono_class_from_generic_parameter): Remove.
17637         (mono_class_from_generic_parameter): Handle null image,
17638         param->name and param->owner.
17639         (mono_class_from_mono_type): Update.
17640         (mono_class_create_from_typespec): Remove 'container' parameter.
17641         If that parameter is non-null, the result is always inflated by
17642         'mono_class_get_full' anyway.
17643         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
17644         parameter.
17645         (mono_class_get_full): Update.
17646
17647         * class.c (inflate_generic_type) [GENERICINST]: If the generic
17648         instance is not open, don't bother inflating.
17649         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
17650         parse metadata for inflated classes.
17651         (_mono_class_get): Change GenericContext* parameter to
17652         GenericContainer*.
17653         (mono_class_create_from_typespec): Likewise.  Simplify, and
17654         implement trivially.  All the cases are handled in
17655         mono_class_from_mono_type.  Don't inflate returned class.
17656         (mono_class_get_full): Delegate GENERICINST optimization to
17657         inflate_generic_type.
17658         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
17659
17660 2006-02-16  Dick Porter  <dick@ximian.com>
17661
17662         * socket-io.c (create_object_from_sockaddr): Fix typo.
17663         (create_sockaddr_from_object): Check array lengths before
17664         potentially accessing items off the end.
17665         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
17666         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
17667         (ves_icall_System_Net_Sockets_Socket_Send_internal)
17668         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
17669         length checks to avoid wraparound overflows.
17670         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
17671         contents of the array of sockets
17672         (hostent_to_IPHostEntry2)
17673         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
17674         Check return value of inet_ntop ().
17675         (addrinfo_to_IPHostEntry): Fix typo
17676
17677 2006-02-16  Raja R Harinath  <rharinath@novell.com>
17678
17679         Type metadata parsing doesn't use generic-instantiation information.
17680         * metadata.c (mono_metadata_parse_array_full): Change
17681         MonoGenericContext* parameter to MonoGenericContainer*.
17682         (mono_metadata_parse_type_full): Likewise.
17683         (mono_type_create_from_typespec_full): Likewise.
17684         (mono_metadata_parse_mh_full): Likewise.
17685         (mono_metadata_parse_generic_inst): Likewise.
17686         (do_mono_metadata_parse_generic_class): Likewise.
17687         (do_mono_metadata_parse_type): Likewise.
17688         * metadata-internals.h: Update to changes.
17689         * class.c (mono_class_find_enum_basetype): Likewise.
17690         (mono_class_setup_fields): Likewise.
17691         (mono_class_create_from_typespec): Likewise.
17692         * loader.c (method_from_methodspec): Likewise.
17693         (mono_get_method_from_token): Likewise.
17694         (mono_method_get_header): Likewise.
17695
17696 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17697
17698         * marshal.c: handle additional GENERICINST case (patch from
17699         Thong Nguyen <tum@veridicus.com>).
17700         Fix a few cases where LDIND_I/STIND_I was used for references.
17701
17702 2006-02-16  Raja R Harinath  <rharinath@novell.com>
17703
17704         * reflection.c (mono_reflection_get_token): Remove unused variable.
17705
17706 2006-02-16  Martin Baulig  <martin@ximian.com>
17707
17708         * reflection.c (mono_reflection_get_token): Add support for fields
17709         in instantiated generic types.
17710
17711         * icall.c
17712         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
17713
17714 2006-02-15  Martin Baulig  <martin@ximian.com>
17715
17716         * icall.c
17717         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
17718         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
17719         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
17720         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
17721
17722 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17723
17724         * class.c, metadata.c, metadata.h, object.c, icall.c,
17725         marshal.c: changed mono_type_get_underlying_type () to do
17726         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
17727         Fixed handling of instantiated generic valuetypes (bug #75479).
17728
17729 2006-02-15  Raja R Harinath  <rharinath@novell.com>
17730
17731         * metadata.c (mono_metadata_decode_signed_value): Simplify.
17732         Delegate to mono_metadata_decode_value, and work on the returned value.
17733
17734         * icall.c (ves_icall_MonoType_GetGenericArguments):
17735         Add consistency check here too.
17736         
17737 2006-02-15  Ankit Jain  <jankit@novell.com>
17738
17739         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
17740         char/short etc.
17741
17742 2006-02-15  Ankit Jain  <jankit@novell.com>
17743
17744         * metadata.c (mono_metadata_decode_signed_value): New function to decode
17745         signed values, used only for representing lower bounds of arrays.
17746         (mono_metadata_parse_array_full): Use new
17747         mono_metadata_decode_signed_value to decode lower bounds.
17748
17749 2006-02-14  Martin Baulig  <martin@ximian.com>
17750
17751         * reflection.c
17752         (mono_reflection_get_token): Support "MonoGenericMethod" and
17753         "MonoGenericCMethod" and allow generic instances / methods.
17754
17755 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
17756
17757         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
17758         to obtain the terminal size using an ioctl.
17759
17760         * object.c (mono_nullable_init): Revert this as nullable reference
17761         types are not valid.
17762         (mono_nullable_box): Ditto.
17763
17764 2006-02-09  Dick Porter  <dick@ximian.com>
17765
17766         * threads.c (mono_thread_detach): Drop a reference to the thread
17767         we're detaching.
17768
17769 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
17770
17771         * object.c (mono_nullable_init): Handle nullable reference types.
17772         (mono_nullable_box): Ditto. Fixes #77446.
17773
17774 2006-02-07  Martin Baulig  <martin@ximian.com>
17775
17776         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
17777
17778 2006-02-07  Ankit Jain  <jankit@novell.com>
17779
17780         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
17781         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
17782         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
17783         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
17784         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
17785         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
17786
17787 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
17788
17789         * class.c (mono_class_create_generic): Set type_token as well.
17790
17791         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
17792         compatible with MS.
17793
17794 2006-02-02  Martin Baulig  <martin@ximian.com>
17795
17796         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
17797         has never been used so far.
17798
17799 2006-02-02  Martin Baulig  <martin@ximian.com>
17800
17801         * mono-debug-debugger.h: Changed comment at the top of this file;
17802         the header is not installed, but it's safe to #include it from
17803         within the JIT.
17804
17805         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
17806         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
17807
17808 2006-02-02  Martin Baulig  <martin@ximian.com>
17809
17810         * mono-debug.h
17811         (MonoSymbolTable): Removed the `metadata_info' field.
17812
17813         * mono-debug.c
17814         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
17815
17816         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
17817         (mono_debugger_add_builtin_types): Removed.
17818         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
17819         (mono_debugger_create_notification_function): We now operate on a
17820         pre-allocated area; take a `gpointer' and return `void'.
17821
17822         * mono-debug-debugger.c
17823         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
17824         (mono_debugger_add_builtin_types): Removed.
17825
17826 2006-02-02  Martin Baulig  <martin@ximian.com>
17827
17828         * threads.c (mono_debugger_create_all_threads): New public method.
17829
17830 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17831
17832         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
17833         breaks on several platforms.
17834
17835 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
17836
17837         * assembly.c: the VS.NET build doesn't supply default values for
17838         MONO_ASSEMBLIES and MONO_CFG_DIR.
17839
17840 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
17841
17842         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
17843         helper function.
17844
17845         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
17846
17847         * loader.c (method_from_memberref): Fix a warning.
17848
17849         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
17850
17851         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
17852         with explicit layout. Fixes #77433.
17853
17854 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
17855
17856         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
17857         max_interface_id is initialized before using it. Fixes #77398.
17858         (ves_icall_Type_GetInterfaces): Ditto.
17859
17860 2006-01-30  Raja R Harinath  <rharinath@novell.com>
17861
17862         * metadata.c (mono_metadata_parse_method_signature_full): Don't
17863         allocate memory for parameter attributes when parsing memberref
17864         signatures.
17865         * loader.c (mono_loader_set_error_method_load): Don't warn.
17866         (method_from_memberref): Ensure MissingMethodException gets thrown
17867         if method is not found.  Make warning more informative.
17868
17869 2006-01-29  Raja R Harinath  <harinath@gmail.com>
17870
17871         Fix #77397
17872         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
17873         return true if is byref.
17874         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17875         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
17876         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
17877
17878 2006-01-27  Raja R Harinath  <rharinath@novell.com>
17879
17880         Fix tests/find-method.2.il
17881         * loader.c (find_method, find_method_in_class): Remove is_inflated
17882         argument.  Revert 2006-01-18 change.
17883         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
17884         is generic, search for method in its generic definition.
17885         * class.c (mono_class_setup_vtable_general): Print generic
17886         arguments of generic types in debugging printf.
17887
17888 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
17889
17890         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
17891
17892         * threads.c (mono_threads_request_thread_dump): New helper function.
17893
17894 2006-01-25  Raja R Harinath  <rharinath@novell.com>
17895
17896         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
17897
17898 2006-01-25  Ankit Jain  <jankit@novell.com>
17899
17900         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
17901         move definition to ..
17902         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
17903         
17904 2006-01-25  Ankit Jain  <jankit@novell.com>
17905             Raja R Harinath  <rharinath@novell.com>
17906
17907         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
17908         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
17909         as necessary.
17910
17911 2006-01-25  Martin Baulig  <martin@ximian.com>
17912
17913         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
17914         `MonoDebuggerThread' into debug-debugger.c.
17915
17916 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
17917
17918         * profiler.c: fix printing of data.
17919
17920 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
17921
17922         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
17923           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
17924
17925 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17926
17927         * object.c: fix deadlock related to string interning.
17928
17929 2006-01-23  Martin Baulig  <martin@ximian.com>
17930
17931         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
17932
17933         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
17934
17935 2006-01-23  Martin Baulig  <martin@ximian.com>
17936
17937         * mono-debug.h: Moved the prototypes of some functions which are
17938         used by the JIT here from mono-debug-debugger.h.
17939
17940 2006-01-21  Martin Baulig  <martin@ximian.com>
17941
17942         * Makefile.am: Don't install mono-debug-debugger.h.
17943
17944 2006-01-21  Martin Baulig  <martin@ximian.com>
17945
17946         * mono-debug-debugger.h: Enforce the private status of this header
17947         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
17948         Moved some stuff from mono-debugger-jit-wrapper.h here.
17949
17950 2006-01-20  Raja R Harinath  <rharinath@novell.com>
17951
17952         * class.c (mono_class_from_typeref): Add a sanity test to help
17953         catch lack of assembly load/search hooks.
17954
17955 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
17956
17957         * marshal.c (emit_struct_conv): Relax the fields with same offset
17958         check even more. Fixes #77230.
17959
17960 2006-01-18  Martin Baulig  <martin@ximian.com>
17961
17962         * loader.c (find_method_in_class): Added `gboolean is_inflated'
17963         argument; if false, we compare the uninstantiated signatures.
17964         (method_from_memberref): Compare the uninstantiated signatures;
17965         fixes #76417.
17966
17967 2006-01-18  Robert Jordan  <robertj@gmx.net>
17968
17969         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
17970         Clear the weak link. Fixes bug #77170.
17971
17972         * gc.c (mono_gchandle_free):
17973         Reflect *-gc.c changes (tiny optimization).
17974
17975 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
17976
17977         * metadata.c (mono_metadata_signature_dup): Applied patch from
17978         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
17979         Fixes #77288.
17980
17981 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
17982
17983         * marshal.c (emit_struct_conv): Allow fields with the same offset when
17984         marshalling from native to managed code. Fixes #77230.
17985
17986 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17987
17988         * threadpool.c: fix problem (Mac only) when more than one asynchronous
17989         connect. Fixes bug #77020.
17990
17991 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17992
17993         * class.c: fixed id assignement for nested interfaces (bug #77275).
17994         Added also better info for --print-vtable debugging.
17995
17996 2006-01-12  Martin Baulig  <martin@ximian.com>
17997
17998         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
17999         interfaces on-the-fly; fixes #76625.
18000
18001         * class-internals.h
18002         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
18003         don't need that anymore.
18004
18005 2006-01-12  Miguel de Icaza  <miguel@novell.com>
18006
18007         * socket-io.c
18008         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
18009         To avoid initing the nested_classes when not needed I turned the
18010         PeerCredData as a toplevel internal class, as it has to be shared
18011         anyways. 
18012
18013         Fixes the CASA issue.
18014
18015 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
18016
18017         * domain.c: Accessors for MonoJitInfo
18018
18019         * profiler-private.h: Add jitinfo to the end jit hook
18020
18021         * profiler.[ch]: Define new hooks, called after jitting which give
18022         the MonoJitInfo that was compiled
18023
18024 2006-01-10  Martin Baulig  <martin@ximian.com>
18025
18026         * class.c (mono_class_setup_events): Add support for generic
18027         classes; fixes #76440.
18028
18029 2006-01-06  Raja R Harinath  <rharinath@novell.com>
18030
18031         Fix #77160.
18032         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
18033         on passed-in method.
18034
18035 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18036
18037         * object.c (mono_runtime_invoke_array): Add Nullable support.
18038
18039         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
18040
18041 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
18042
18043         * file-io.c: Don't consider sockets as directory and avoid an endless
18044         loop. Fix bug #76966.
18045
18046 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18047
18048         * object.c (mono_nullable_init): New helper function.
18049         (mono_nullable_box): Ditto.
18050
18051         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
18052
18053         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
18054
18055         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
18056         
18057 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
18058
18059         * class.c (mono_class_is_assignable_from): Make T assignable to 
18060         Nullable<T>.
18061
18062 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
18063
18064         * appdomain.c: Bump corlib version to 46.
18065         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
18066         serialization purpose) and changed ves_icall_System_Reflection_
18067         Assembly_get_code_base signature to accept a boolean (to escape, or 
18068         not, the assembly code base).
18069
18070 2005-12-23  Dick Porter  <dick@ximian.com>
18071
18072         * icall.c: 
18073         * threads-types.h: 
18074         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
18075         CreateEvent icall now returns "created" boolean parameter.
18076
18077 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
18078
18079         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
18080         #76967.
18081
18082         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
18083         when attr_klass is an interface. Fixes #77045.
18084
18085 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
18086
18087         * marshal.c (emit_struct_conv): Fix previous patch.
18088         
18089         * marshal.c (emit_struct_conv): Add a check for fields with the same
18090         offset.
18091
18092 2005-12-20  Raja R Harinath  <rharinath@novell.com>
18093
18094         Fix regression in Mono.C5.
18095         * class.c (mono_class_create_generic): If 'klass' is an interface
18096         set up the interface offsets.
18097         (mono_class_is_assignable_from): Don't throw away generic arguments.
18098
18099 2005-12-19  Raja R Harinath  <rharinath@novell.com>
18100
18101         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
18102         type parameters.
18103
18104 2005-12-15  Raja R Harinath  <rharinath@novell.com>
18105
18106         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
18107         dead store.
18108         (do_mono_metadata_parse_generic_class): Don't pass the current
18109         generic context when parsing the type being instantiated: it
18110         cannot use it, anyway.
18111
18112         * loader.c (method_from_memberref): Don't inflate a signature if
18113         it doesn't contain any type parameters.
18114
18115 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
18116
18117         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
18118
18119 2005-12-14  Martin Baulig  <martin@ximian.com>
18120
18121         * class.c
18122         (mono_type_get_name_recurse): Don't return null for type
18123         parameters and open generic classes.
18124         (mono_class_setup_methods): Don't exclude generic instances.
18125         (mono_get_unique_iid): Use different IDs for different
18126         instantiations of the same generic type.
18127         (mono_class_setup_vtable): Only use setup_generic_vtable() for
18128         open generic instances; create a normal vtable for closed generic
18129         instances.
18130         (mono_class_setup_vtable_general): We're now also called for
18131         closed generic instances.
18132
18133         * reflection.c
18134         (mono_reflection_bind_generic_parameters): Correctly use
18135         mono_metadata_lookup_generic_inst() everywhere.
18136
18137 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
18138
18139         * object.c (mono_class_create_runtime_vtable): Call 
18140         mono_class_setup_vtable ().
18141
18142         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
18143         function.
18144         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
18145         #76959.
18146
18147         * loader.c (mono_loader_set_error_type_load): Print the type load
18148         warnings to the console so they are more visible to the user.
18149         (mono_loader_set_error_method_load): Ditto.
18150
18151         * reflection.c (ensure_runtime_vtable): Revert the last change as it
18152         is still broken.
18153         
18154         * reflection.c (ensure_runtime_vtable): Fix build.
18155
18156         * reflection.c (ensure_runtime_vtable): Disable an optimization which
18157         doesn't work in all cases.
18158
18159 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
18160
18161         * object.c (mono_array_new_full): Treat a single dimensional array
18162         with 0 lower bounds as an szarray. Fixes #76973.
18163
18164         * reflection.c (custom_attr_visible): Really fix this.
18165
18166 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
18167
18168         * reflection.c (custom_attr_visible): Allow nested public attributes
18169         as well.
18170
18171         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
18172         interface check.
18173
18174 2005-12-12  Raja R Harinath  <harinath@gmail.com>
18175
18176         * class.c (set_generic_param_owner): Delete.
18177         (mono_class_create_from_typedef): Don't set ->owner field of
18178         generic parameters to "param containers" of enclosing classes.
18179         * reflection.c (mono_reflection_initialize_generic_parameter):
18180         Likewise.
18181
18182 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
18183
18184         * reflection.c (custom_attr_visible): Fix build.
18185
18186 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
18187
18188         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
18189         private attributes.
18190         
18191         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
18192         handling of null parameter defaults.
18193
18194 2005-12-09  Raja R Harinath  <rharinath@novell.com>
18195
18196         * class.c (mono_class_from_generic_parameter): Don't set
18197         klass->generic_container.
18198         (my_mono_class_from_generic_parameter): Likewise.
18199
18200 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
18201
18202         * reflection.c (load_public_key): Fix a warning.
18203         (method_encode_code): Fix unaligned accesses.
18204
18205 2005-12-07  Martin Baulig  <martin@ximian.com>
18206
18207         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
18208
18209         * reflection.c
18210         (write_generic_param_entry): Encode our custom attrs.
18211
18212         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
18213
18214 2005-12-07  Martin Baulig  <martin@ximian.com>
18215
18216         * reflection.c (encode_new_constraint): Removed; we don't use the
18217         `NewConstraintAttribute' anymore.
18218
18219 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
18220
18221         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
18222         not fire a TypeResolve event when Assembly.GetType () is called.
18223
18224 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
18225
18226         Beginning of support for nullable types in the runtime. Parts of
18227         this patch are from Martin.
18228
18229         * appdomain.c (MONO_CORLIB_VERSION): Bump
18230
18231         * domain.c (mono_init_internal): get the nullable type
18232
18233         * class.c (mono_class_is_nullable): New method
18234         (mono_class_get_nullable_param): New mehod
18235         (mono_class_create_generic): In types T? set cast_class to T
18236
18237         * class-internals.h (MonoDefaults): new nullable default class
18238         (mono_class_get_nullable_param, mono_class_get_nullable_param):
18239         new methods.
18240
18241 2005-12-05  Raja R Harinath  <rharinath@novell.com>
18242
18243         * metadata.c (select_container): New.  Refactor code to select the
18244         appropriate GenericContainer given the type of generic parameter
18245         we are looking for.
18246         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
18247         not a MonoGenericContext.  Use select_container.  Update parameters.
18248         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
18249         and MONO_TYPE_MVAR.
18250         (unwrap_arrays): Remove duplicate tests.
18251         (find_generic_param): Rename from 'has_same_context'.  Now walks a
18252         generic instantiated class to find any arguments that are generic
18253         parameters.
18254         (mono_type_create_from_typespec_full): Use find_generic_param to
18255         avoid evicting some generic instantiations from the typespec
18256         cache.
18257
18258 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
18259
18260         * reflection.c: fixed writing of doubles on ARM FPA.
18261
18262 2005-12-02  Robert Jordan  <robertj@gmx.net>
18263
18264         * icall.c: Fixed EventInfo.ReflectedType (#76829).
18265
18266 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18267
18268         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
18269         least on SUSE 10 they are not the same (on debian, they are just the
18270         same thing).
18271
18272 2005-12-01  Raja R Harinath  <rharinath@novell.com>
18273
18274         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
18275         DeclaringType for VARs and MVARs.
18276         * class.c (set_generic_param_owner): Fix initialization of owner
18277         fields.
18278
18279 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
18280
18281         * icall.c: fixed Enum.ToObject() to correctly convert the values.
18282
18283 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18284
18285         * threadpool.c: workaround for a bug that shows up on the Mac:
18286         select()+connect() on a blocking socket is not like it should
18287         be, so we proceed to connect() in that case, wasting the I/O
18288         threadpool thread until connect succeedes. Fixes bug #75436.
18289
18290 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18291
18292         * threadpool.c: fix typo when setting file descriptor states.
18293
18294 2005-11-28  Raja R Harinath  <rharinath@novell.com>
18295
18296         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
18297         * metadata.c (mono_metadata_parse_method_signature_full): Don't
18298         create a temporary signature container.
18299         (mono_metadata_parse_generic_param): Update to changes.
18300         (mono_type_create_from_typespec_full): Update to changes.
18301         * loader.c (method_from_memberref): Don't use a
18302         MonoGenericContainer while parsing a memberref signature.
18303         (method_from_methodspec): Remove dead-store of the 'container'
18304         variable.  It's overwritten before use.
18305
18306         * metadata.c (mono_type_create_from_typespec_full): Make debugging
18307         checks tighter.
18308         (mono_metadata_parse_generic_param): Likewise.
18309         * loader.c (find_method_in_class): Does not need a
18310         MonoGenericContainer.  Use 'mono_method_signature' rather than
18311         'mono_method_signature_full'.
18312         (find_method, mono_get_method_constrained, method_from_memberref):
18313         Update to changes.
18314
18315         * metadata.c (mono_type_create_from_typespec_full): Ensure that
18316         owner-less generic-parameters are never evicted from the typespec
18317         cache.
18318
18319         * loader.c (method_from_memberref): Don't use the current context
18320         when parsing signatures.
18321         (method_from_methodspec, mono_get_method_from_token): Update to changes.
18322
18323         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
18324         side-effects in g_assert.
18325         * loader.c (mono_get_method_from_token): Resolve klass earlier so
18326         that we don't potentially lose information.
18327
18328 2005-11-26  Dick Porter  <dick@ximian.com>
18329
18330         * icall.c:
18331         * threads.c: icalls to implement basic (ie, not named)
18332         System.Threading.Semaphore.
18333
18334 2005-11-24  Dick Porter  <dick@ximian.com>
18335
18336         * process.c
18337         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
18338         Use GetProcessId() if it's available.
18339
18340 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
18341
18342         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
18343
18344 2005-11-23  Raja R Harinath  <rharinath@novell.com>
18345             Ankit Jain  <jankit@novell.com>
18346
18347         * loader.c (mono_get_method_from_token): Initialize 'method' field
18348         of all generic parameters before parsing the signature.  Remove
18349         code that "fixed"-up MVAR references.
18350
18351 2005-11-23  Ankit Jain  <jankit@novell.com>
18352
18353         * metadata.c (mono_metadata_has_generic_params):
18354         (mono_metadata_load_generic_param_constraints):
18355         (mono_metadata_load_generic_params): Move duplicate code ...
18356         (mono_metadata_get_generic_param_row): ... here. Returns the
18357         first row-id in GenericParam table for a given owner (token).
18358         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
18359         prototype.
18360
18361 2005-11-23  Raja R Harinath  <rharinath@novell.com>
18362             Ankit Jain  <jankit@novell.com>
18363
18364         * metadata.c (mono_metadata_class_equal): Pass signature_only when
18365         comparing VARs too.
18366         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
18367         type->data.generic_param only if the type is an MVAR.
18368         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
18369         leak owner-less VARs and MVARs into managed space.
18370
18371 2005-11-21  Martin Baulig  <martin@ximian.com>
18372
18373         * class-internals.h
18374         (MonoMethod): Moved the `generic_container' here from
18375         `MonoMethodNormal' since we now also need it for
18376         `MonoMethodPInvoke';
18377         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
18378         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
18379         an union containing both `MonoMethodNormal' and
18380         `MonoMethodPInvoke'.
18381
18382         * loader.c
18383         (mono_get_method_from_token): Allow implementing generic methods
18384         as interncalls.
18385
18386         * threads.c
18387         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
18388         icall.
18389
18390 2005-11-17  Dick Porter  <dick@ximian.com>
18391
18392         * icall.c: 
18393         * process.h: 
18394         * process.c: Split the Process Start_internal icall into
18395         ShellExecuteEx_internal and CreateProcess_internal, which are
18396         called depending on whether UseShellExecute is true.  Fixes bug
18397         76670.
18398
18399         * appdomain.c (MONO_CORLIB_VERSION): Incremented
18400
18401 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
18402
18403         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
18404         'msize' parameters, use the information in 'mspec' instead.
18405         (emit_object_to_ptr_conv): Ditto.
18406
18407         * marshal.c (emit_struct_conv): Handle explicit layout structs with
18408         fields out of order. Fixes #76733.
18409
18410 2005-11-17  Ankit Jain  <jankit@novell.com>
18411
18412         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
18413
18414 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
18415
18416         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
18417           bug #76575.
18418
18419 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
18420
18421         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
18422         for types with non-auto layout. Fixes #76717.
18423
18424 2005-11-16  Ankit Jain  <jankit@novell.com>
18425
18426         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
18427         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
18428         if generic_context is null.
18429           (mono_metadata_generic_param_equal): param->owner can be null.
18430           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
18431         null.
18432
18433 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
18434
18435         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
18436         the correct value.
18437
18438 2005-11-15  Martin Baulig  <martin@ximian.com>
18439
18440         * object.c (set_value): Use mono_class_from_mono_type() instead of
18441         the hack for generic instances; fixes #76136.
18442
18443 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
18444
18445         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
18446         fields.
18447
18448         * image.c (load_metadata_ptrs): Initialize the new fields.
18449
18450         * reflection.c (create_dynamic_mono_image): Ditto.
18451
18452         * reflection.c (build_compressed_metadata): Use the new fields.
18453
18454         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
18455         icall.
18456
18457         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
18458         icall.
18459         
18460 2005-11-15  Ankit Jain  <jankit@novell.com>
18461             Raja R Harinath  <harinath@gmail.com>
18462
18463         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
18464         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
18465         new per-generic_container cache if the cached MonoType's context matches
18466         the current context.
18467           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
18468         to the expected context.
18469           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
18470
18471 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18472
18473         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
18474         we changed the signature of an icall.
18475         * icall.c: Modify to mono_double_ParseImpl return true/false 
18476         depending on the success, instead of throwing the exception. This will
18477         help us in Double.TryParse methods.
18478         
18479 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
18480
18481         * marshal.c (emit_marshal_object): Throw an exception when
18482         marshalling 'object' instead of crashing. Fixes #76696.
18483
18484 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
18485
18486         * class-internals.h: Add prototype for mono_type_get_full_name ().
18487
18488 2005-11-11  Dick Porter  <dick@ximian.com>
18489
18490         * threads.c (mono_thread_manage): Make sure the main thread has
18491         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
18492
18493 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
18494
18495         * loader.c (mono_loader_set_error_type_load): Log a warning to the
18496         console about the missing type.
18497         (mono_loader_set_error_method_load): Ditto.
18498
18499 2005-11-09  Miguel de Icaza  <miguel@novell.com>
18500
18501         * mono-config.c (mono_get_config_dir): Set the system defaults if
18502         none is specified.
18503
18504         * assembly.c (mono_set_dirs): New API entry point to set the
18505         assembly and the config directory in one call
18506
18507 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
18508
18509         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
18510         the ftnptr was created from a delegate in a domain other than the
18511         current domain. Fixes #75377.
18512
18513         * exception.h exception.c: Add mono_get_exception_not_supported ().
18514
18515 2005-11-08  Martin Baulig  <martin@ximian.com>
18516
18517         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
18518
18519 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
18520
18521         * security-manager.h: Added definitions to deal with strongname key 
18522         pairs bigger (and smaller) than 1024 bits.
18523         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
18524         adjust wrt the public key length being used.
18525
18526 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
18527
18528         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
18529           Windows build (r51396-51397).
18530
18531 2005-11-03  Martin Baulig  <martin@ximian.com>
18532
18533         * class.c (mono_class_setup_vtable_general): Also add generic
18534         methods to the vtable; fixes #76581.
18535
18536 2005-11-01  Miguel de Icaza  <miguel@novell.com>
18537
18538         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
18539         sure that we lookup GetString method from the System.Text.Encoding
18540         class, not the derived class or we get an empty method.
18541
18542         Fixed class #76612.
18543
18544 2005-10-25  Miguel de Icaza  <miguel@novell.com>
18545
18546         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
18547         if it has been previously set (embedders). 
18548
18549         Make mono_set_rootdir available also on Unix.
18550
18551 005-10-24  Robert Jordan  <robertj@gmx.net>
18552
18553         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
18554
18555 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
18556
18557         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
18558         only calls which are made to native code use this flag.
18559
18560         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
18561
18562 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
18563
18564         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
18565         Add support for FieldBuilders.
18566
18567 2005-10-29  Martin Baulig  <martin@ximian.com>
18568
18569         * mono-debug.c
18570         (mono_debug_using_mono_debugger): New public method; returns
18571         whether we're running inside the debugger.
18572
18573 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
18574
18575         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
18576         for Method/Constructor/FieldBuilders.
18577
18578 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
18579
18580         * reflection.c (module_add_cattrs): Save custom attributes for global methods
18581         and fields as well.
18582
18583 2005-10-26  Martin Baulig  <martin@ximian.com>
18584
18585         * mono-debug-debugger.c
18586         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
18587
18588 2005-10-24  Raja R Harinath  <harinath@gmail.com>
18589
18590         * icall.c (base64_to_byte_array): Don't pass an out-of-range
18591         integer to isspace.
18592
18593 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
18594
18595         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
18596         when passing valuetypes byref. Fixes #76502.
18597
18598 2005-10-19  Jackson Harper  <jackson@ximian.com>
18599
18600         * profiler.c: Don't put a . in front of types that are not in a
18601         namespace.
18602
18603 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
18604
18605         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
18606
18607 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
18608
18609         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
18610         #76436.
18611         (mono_marshal_get_ldflda_wrapper): Fix a warning.
18612
18613 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18614
18615         * assembly.c metadata-internals.h icall.c: Define an additional
18616         parameter for mono_assembly_name_parse_full, so we can avoid creating
18617         S.R.AssemblyName.Version when no version info wasn't passed.
18618         
18619 2005-10-09  Miguel de Icaza  <miguel@novell.com>
18620
18621         * class.c (mono_type_get_full_name): Reimplement method that was
18622         removed. 
18623
18624         * image.c: Some docs
18625
18626 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
18627
18628         * profiler.c (output_newobj_profile): Fix printing of Total memory
18629         on x86.
18630
18631 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
18632
18633         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
18634
18635 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
18636
18637         * threads.c: remove debug output.
18638
18639 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
18640
18641         * threads.c (mono_thread_manage): Fix crashes if more than 64
18642         threads need to be aborted. Hopefully fixes #75899.
18643
18644         * assembly.c (mono_stringify_assembly_name): New helper function.
18645
18646         * class.c: Use mono_stringify_assembly_name instead of the similar
18647         static function.
18648
18649         * assembly.h assembly.c: Add support for calling a postload search 
18650         hook if an assembly cannot be loaded.
18651
18652         * appdomain.c: Register new search hooks which call the AssemblyResolve
18653         events in AppDomain. Fixes #75231
18654
18655 2005-10-07  Martin Baulig  <martin@ximian.com>
18656
18657         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
18658         methods without debug info.
18659
18660 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
18661
18662         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
18663         wrappers.
18664
18665 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18666
18667         * file-io.c: now that we return symlinks, use lstat and, when the file
18668         is a symbolic link, stat, to get the file attributes. Also avoid the
18669         conversion to/from utf16/external.
18670
18671 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
18672
18673         * class.c (mono_class_layout_fields): Compute klass->has_references
18674         correctly if an embedded valuetype is not yet initialized. Fixes
18675         #76331.
18676
18677 2005-10-04  Martin Baulig  <martin@ximian.com>
18678
18679         * metadata.c
18680         (mono_metadata_load_generic_param_constraints): New public
18681         function; splitted the constraints loading out from
18682         mono_metadata_load_generic_params().
18683
18684         * class.c (mono_class_create_from_typedef): Call
18685         mono_metadata_load_generic_param_constraints() after setting up
18686         the type and creating our parent; fixes #75329.
18687
18688 2005-10-04  Martin Baulig  <martin@ximian.com>
18689
18690         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
18691         non-dynamic parent classes.
18692
18693 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
18694
18695         * file-io.c : win32 build fix (ETXTBSY seems not found).
18696
18697 2005-10-04  Martin Baulig  <martin@ximian.com>
18698
18699         * reflection.c
18700         (mono_image_get_methodspec_token): Make the cache actually work;
18701         fixes #75974.
18702
18703 2005-10-04  Martin Baulig  <martin@ximian.com>
18704
18705         * class.c (mono_class_name_from_token): Removed the unneccessary
18706         `MonoGenericContext *' argument.
18707
18708 2005-10-04  Martin Baulig  <martin@ximian.com>
18709
18710         * loader.c
18711         (method_from_methodspec): Make the caching work again; fixes the
18712         performance regression from #76262.
18713
18714 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18715
18716         * file-io.c:
18717         * file-io.h:
18718         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
18719         GetFileSystemEntries that performs the same work but without going
18720         into io-layer, locking, etc.
18721
18722 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
18723
18724         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
18725         ThreadState_Stopped as well. Fixes #76047.
18726
18727 2005-09-29  Martin Baulig  <martin@ximian.com>
18728
18729         * class.c
18730         (inflate_generic_context): If the new context has a `gmethod', set
18731         its `container' that that gmethod's `container'.
18732
18733         * metadata.c
18734         (mono_metadata_parse_generic_param): Simplify things;
18735         `generic_container = generic_context->container;' is just fine.
18736
18737         * loader.c (method_from_methodspec): Code cleanups.
18738
18739 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
18740
18741         * decimal.c: fix warning (and let gcc generate correct
18742         code on ARM with optimizations).
18743
18744 2005-09-28  Martin Baulig  <martin@ximian.com>
18745
18746         * loader.c
18747         (method_from_memberref): Added `MonoGenericContext *class_context'
18748         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
18749         (method_from_methodspec): If we're a memberref, use the enclosing
18750         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
18751
18752 2005-09-28  Martin Baulig  <martin@ximian.com>
18753
18754         * object.c (mono_runtime_invoke_array): Added support for
18755         MONO_TYPE_GENERICINST; fixes #75917.
18756
18757 2005-09-27  Martin Baulig  <martin@ximian.com>
18758
18759         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
18760         `k->byval_arg.type' to determine the actual type.
18761
18762         * loader.c (method_from_methodspec): Removed some hacks.
18763
18764 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
18765
18766         * class-internals.h (mono_field_is_deleted): Do the test for
18767         rtspecialname before we check the actual name of the field. This
18768         prevents us from dereferencing a pointer into the string table,
18769         saving us from accessing a few pages
18770
18771         * *.c: Replace the use of {Enter,Leave}CriticalSection with
18772         macros. This will allow a deadlock debugger to easily be plugged
18773         in.
18774
18775 2005-09-27  Martin Baulig  <martin@ximian.com>
18776
18777         * loader.c (method_from_methodspec): Create a "signature"
18778         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
18779
18780 2005-09-27  Martin Baulig  <martin@ximian.com>
18781
18782         * class.c
18783         (inflate_generic_class): Correctly set the new context's
18784         container.
18785
18786         * loader.c
18787         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
18788         instead of a `MonoGenericContext *'.
18789         (mono_method_signature_full): Take a `MonoGenericContainer *'
18790         instead of a `MonoGenericContext *'.
18791
18792         * metadata.c
18793         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
18794         instead of a `MonoGenericContext *'.
18795         (mono_metadata_parse_method_signature_full): Likewise.
18796
18797 2005-09-26  Martin Baulig  <martin@ximian.com>
18798
18799         * class.c
18800         (mono_class_from_generic_parameter): Set `klass->generic_container'
18801         (mono_class_from_generic_parameter): Likewise.
18802         (mono_bounded_array_class_get): We inherit the generic container
18803         from the element class.
18804
18805         * loader.c
18806         (find_method, find_method_in_class): Take a `MonoGenericContext *'
18807         argument rather than computing it here.
18808         (method_from_memberref): Correctly set the generic context before
18809         parsing the signature.  Fixes #75681.
18810
18811 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
18812
18813         * object.c (mono_class_has_special_static_fields): Fix warnings.
18814
18815 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18816
18817         * assembly.c: Add parse_public_key function, to
18818         par the public keys. Also added mono_assembly_name_parse_full,
18819         to define it the parsed key should be freed or not.
18820         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
18821         to parse a long format assembly name.
18822         * metadata-internals.h: Keep mono_assembly_name_parse_full as
18823         private, since calling it to preserve the key requires
18824         freeing it manually.
18825         
18826 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
18827
18828         * locales.c : removed HAVE_ICU part.
18829
18830 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
18831
18832         * object.c (mono_class_create_runtime_vtable): Avoid calling 
18833         field_is_special_static if the klass has no special static fields.
18834
18835         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
18836         (MonoCachedClassInfo): Likewise.
18837
18838         * object.c (mono_class_has_special_static_fields): New helper function.
18839
18840 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18841
18842         * class.c (mono_class_create_from_typedef): Don't call 
18843         interfaces_from_typedef_full for enums.
18844         (mono_class_create_from_typedef): Compute the base types of enums directly
18845         without calling mono_class_setup_fields ().
18846         (mono_class_find_enum_basetype): New helper function.
18847
18848         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
18849         one place inside the string heap.
18850         
18851 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
18852
18853         * class.c: locking fixes, code cleanups, some docs added.
18854         Allocate some data structures in the image mempool.
18855
18856 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18857
18858         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
18859         the example code.
18860         
18861 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
18862
18863         * class-internals.h, class.c, reflection.c: reduce memory taken by
18864         MonoClass.
18865
18866 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
18867
18868         * metadata.c, metadata.h, loader.h: documentation updates, code and
18869         API cleanups.
18870
18871 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18872
18873         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
18874         the example code.
18875
18876         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
18877         page faults caused by the runtime while reading metadata.
18878
18879 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18880
18881         * socket-io.c: the field names were changed 3 months ago and no one
18882         realized until bug #76077 got filed!
18883
18884 2005-09-20  Martin Baulig  <martin@ximian.com>
18885
18886         * icall.c (assembly_icalls): Removed some unused debugger icalls.
18887
18888 2005-09-20  Martin Baulig  <martin@ximian.com>
18889
18890         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
18891         write the rank into the class entry.
18892
18893 2005-09-20  Martin Baulig  <martin@ximian.com>
18894
18895         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
18896
18897 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
18898
18899         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18900
18901         * icall.c (custom_attrs_defined_internal): New icall.
18902
18903         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
18904         function.
18905         (mono_custom_attrs_construct_by_type): New helper function.
18906
18907 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
18908
18909         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
18910         terminate the resulting string. Fixes #76123.
18911
18912 2005-09-16  Martin Baulig  <martin@ximian.com>
18913
18914         * mono-debug.c
18915         (mono_debug_add_method): Ignore inflated methods for the moment.
18916
18917 2005-09-14  Martin Baulig  <martin@ximian.com>
18918
18919         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
18920
18921 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
18922
18923         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
18924         return a success/failure indication.
18925         (mono_metadata_interfaces_from_typedef_full): Ditto.
18926         (get_constraints): Ditto.
18927
18928 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
18929
18930         * marshal.c (emit_marshal_array): Fix handling of null arrays.
18931         
18932         * marshal.c (emit_marshal_array): Add support for returning string
18933         arrays from delegates. Fixes #76063.
18934
18935         * marshal.c: Use the emit_ldloc/stloc macros where possible.
18936
18937 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
18938
18939         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
18940         icall.
18941
18942 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
18943
18944         * reflection.c icall.c: Fix after mono_get_exception_type_load
18945         signature change.
18946
18947         * assembly.c (mono_assembly_get_assemblyref): New helper function.
18948         (mono_assembly_load_reference): Use the new helper.
18949
18950         * class-internals.h (MonoLoaderError): New structure containing 
18951         information about type loading errors.
18952
18953         * class-internals.h loader.c: Add APIs to store per-thread loader
18954         error information.
18955
18956         * loader.c class.c: Set the loader error if needed.
18957
18958         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
18959
18960 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
18961
18962         * decimal.c: fixed to handle the broken ARM fp format.
18963
18964 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
18965
18966         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
18967         broken.
18968
18969 2005-09-06  Martin Baulig  <martin@ximian.com>
18970
18971         * domain.c (supported_runtimes): Added v2.0.50727.
18972
18973 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
18974
18975         * culture-info.h: reduce the size of some structures.
18976
18977 2005-09-05  Martin Baulig  <martin@ximian.com>
18978
18979         Reflect latest API changes in the August CTP.
18980
18981         * icall.c
18982         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
18983         ("MonoType.HasGenericArguments"): Removed.
18984         ("MonoMethod.BindGenericParameters"): Renamed to
18985         "MakeGenericMethod".
18986         ("MethodBuilder.BindGenericParameters"): Renamed to
18987         "MakeGenericMethod".    
18988
18989 2005-09-05  Martin Baulig  <martin@ximian.com>
18990
18991         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
18992
18993 2005-09-05  Martin Baulig  <martin@ximian.com>
18994
18995         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18996
18997         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
18998         generic_container is non-NULL.
18999
19000 2005-09-05  Martin Baulig  <martin@ximian.com>
19001
19002         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19003
19004         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
19005
19006 2005-08-29  Michal Moskal  <malekith@nemerle.org>
19007
19008         * reflection.c (encode_locals,
19009         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
19010         for large generic types.
19011
19012 2005-09-05  Martin Baulig  <martin@ximian.com>
19013
19014         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19015
19016         * class.c (mono_dup_array_type): New public method.
19017         (mono_metadata_signature_deep_dup): New public method.
19018         (dup_type): Correctly duplicate array and function types.
19019
19020 2005-09-05  Martin Baulig  <martin@ximian.com>
19021
19022         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19023
19024         * reflection.c (get_default_param_value_blobs): Handle generic types
19025         and generic methods.
19026
19027 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
19028
19029         * class.c: Fixed error reporting (method/class were inversed) for 
19030         inheritance demands.
19031         * security-manager.c|h: Added the AppDomain when calling the managed
19032         System.Security.SecurityManager.InheritanceDemand method.
19033
19034 2005-09-01  Raja R Harinath  <rharinath@novell.com>
19035
19036         * reflection.c (encode_marshal_blob): 'marshaltype' and
19037         'marshaltyperef' are alternate sources for the custom marshaler
19038         name.
19039
19040 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
19041
19042         * class.c: fix creation of array classes with rank == 1
19043         (patch by Ankit Jain <jankit@novell.com>).
19044
19045 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
19046
19047         * object.c: fix check for creating the bound data for arrays vs
19048         szarrays.
19049
19050 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19051
19052         * object.c: configuration file name is now based on the executable name,
19053         not the image name. Fixes bug #75931.
19054
19055 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
19056
19057         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
19058         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
19059
19060 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
19061
19062         * rand.c: Use wincrypt.h instead of WinCrypt.h.
19063
19064 2005-08-24  Ankit Jain  <jankit@novell.com>
19065             Raja R Harinath  <rharinath@novell.com>
19066
19067         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
19068           called by it recursively.
19069           (mono_class_init): Remove special case in pending_init handling, since it's
19070           superseded by the fix to mono_class_from_typeref.
19071
19072 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
19073
19074         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
19075         BROKEN_THREAD_START stuff.
19076
19077 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
19078
19079         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
19080         trampoline.
19081
19082         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
19083         
19084         * object.c (mono_delegate_ctor): Replace the original function address with
19085         a delegate trampoline.
19086
19087 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
19088
19089         * icall.c: add boolean argument to base64_to_byte_array and 
19090         InternalFromBase64String to control whether a whitespace-only string
19091         is allowed (or should casue a FormatException to be thrown). We need
19092         this as the behavior has changed between MS.NET 1.x and 2.0, and we
19093         to match the MS behaviour in both profiles.
19094         * appdomain.c: Bump corlib version.
19095
19096 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19097
19098         This patch implements a big portion of publisher policy
19099         support, used to bind assembly versions and redirect
19100         one assembly from version A to version B.
19101
19102         * assembly.c:
19103         New GSList loaded_assembly_bindings, for storing the cached
19104         assembly bindings.
19105         (assembly_binding_maps_name): New static function for checking if a 
19106         assembly binding information maps an assembly name.
19107         (mono_assembly_binding_info_free): New function for freeing
19108         assembly binding information resources.
19109         (get_publisher_policy_info): New static function for retrieving 
19110         assembly binding information from a MonoImage.
19111         (compare_versions): New static function for comparing an assembly
19112         binding information data and the version of an assembly name.
19113         (check_policy_versions): New static function for checking if an
19114         assembly binding info mapping an assembly name is valid for it.
19115         (mono_assembly_load_publisher_policy): New static function for
19116         loading the 'policy.major.minor.MyAssembly' image for an assembly
19117         with an assembly name 'aname'.
19118         (mono_assembly_bind_version): New static function for updating
19119         assembly redirection.
19120         (mono_assembly_apply_binding): New static function for applying
19121         assembly binding.
19122         (search_binding_loaded): New static function for searching 
19123         loaded assembly binding infos in the cache domain.
19124         (mono_assembly_load_full): Don't apply assembly binding for
19125         reflection only assemblies.
19126
19127         * metadata-internals.h: Add MonoAssemblyBindingInfo,
19128         which contains information about assembly binding. Also
19129         declare signature for mono_config_parse_publisher_policy ()
19130         function, used to retrieve pub policy info.
19131         
19132         * mono-config.c:
19133         (publisher_policy_start): New static function used to parse publisher 
19134         policy config files.
19135         (publisher_policy_parser): New static MonoParseHandler containing 
19136         the functions used when parsing config files.
19137         (mono_config_parse_publisher_policy): New function for parsing
19138         publisher policy files.
19139         
19140 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
19141
19142         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
19143
19144         * marshal.c (mono_delegate_free_ftnptr): Ditto.
19145
19146         * object.c (mono_get_addr_from_ftnptr): New helper function.
19147
19148         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
19149
19150         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19151
19152 2005-08-19  Dick Porter  <dick@ximian.com>
19153
19154         * threads.c, threads.h, appdomain.c, appdomain.h,
19155         profiler-private.h, monitor.c, object.c, object-internals.h,
19156         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
19157         store the thread ID, so it can hold a 64 bit value if needed.
19158
19159 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
19160
19161         * reflection.c (mono_reflection_create_dynamic_method): Store the
19162         handle class into the method references as well so ldtoken works in
19163         dynamic methods.
19164
19165         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
19166         types.
19167
19168 2005-08-19  Ankit Jain <jankit@novell.com>
19169
19170         Fix #75847.
19171         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
19172           here rather than using the method signature of a arbitrary function
19173           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
19174           two arguments.
19175           Hack done with Harinath.
19176
19177 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19178
19179         * threadpool.c: disable printing stack traces when we get a exception
19180         in a threadpool thread. I need to do more testing to figure out which
19181         cases actually print this. Fixes bug #75828.
19182
19183 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19184
19185         * icall.c: there might be ignored whitespace after the last '='. This
19186         fixes length computation and bug #75840.
19187
19188 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
19189
19190         * assembly.c (mono_assembly_load_full): Consider .exe extension as
19191         well. Fixes #75809.
19192
19193         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
19194         #75784.
19195         
19196         * reflection.c (create_custom_attr_data): Ditto.
19197
19198 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
19199
19200         * locales.c, culture-info.h : removed RegionLCIDMap.
19201         * culture-info-tables.h : regenerated.
19202
19203 2005-08-16  Martin Baulig  <martin@ximian.com>
19204
19205         * class.c (mono_type_get_name_recurse): Small fix.
19206
19207 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
19208
19209         * locales.c : indentation fixie.
19210
19211 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
19212
19213         * object-internals.h,
19214           locales.h,
19215           locales.c,
19216           culture-info.h,
19217           icall.c : added RegionInfo table support.
19218         * culture-info-table.h : regenerated for region support.
19219
19220 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
19221
19222         * reflection.c (resolve_object): handle all kinds of MonoMethod
19223         including generic ones
19224
19225 2005-08-12  Ankit Jain <jankit@novell.com>
19226
19227         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
19228           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
19229
19230 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
19231
19232         * process.c: Don't close a thread handle when it's NULL. This is a
19233         workaround for bug #75733.
19234
19235 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
19236
19237         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
19238
19239 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
19240
19241         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
19242
19243 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19244
19245         * threadpool.c: if a work item in the thread pool has a callback that
19246         catches a exception, don't propagate it after invoking the callback.
19247         Fixes bug #75336.
19248
19249 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
19250
19251         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
19252
19253         * class-internals.h (MonoCachedClassInfo): Add some new fields.
19254
19255         * class.c (mono_class_init): Load field info lazily in the AOT case.    
19256
19257         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
19258
19259 2005-08-03  Ankit Jain  <jankit@novell.com>
19260
19261         Fix #75683.
19262         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
19263           PInvoke calling convention is 0.
19264
19265 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
19266
19267         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
19268         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
19269
19270 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
19271
19272         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
19273         to handle threads not started by the GC (patch by Michael Meeks
19274         <michael.meeks@novell.com>).
19275
19276 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
19277
19278         * reflection.c: Make buffer used in emitting types larger for some
19279         big generic types (patch by Michal Moskal).
19280
19281 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
19282
19283         * mono-debug.c: Fix some (not all) alignment problems.
19284
19285 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19286
19287         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
19288         Invoke mono_image_load_from_data_full passing the refonly
19289         parameter.
19290
19291         * assembly.c
19292         (mono_assembly_open_from_bundle): Add the refonly argument, 
19293         in order to pass it to other methods it calls to.
19294         (do_mono_assembly_open): Add the refonly argument, in order 
19295         to pass it to other methods it calls to.
19296         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
19297         the refonly parameter to it.
19298
19299         * image.c: Add loaded_images_refonly_hash and
19300         loaded_images_refonly_guid_hash to cache the reflection
19301         only loaded images.
19302         (mono_images_init): Initialize the hash tables used for
19303         caching the reflection only images.
19304         (load_modules): Invoke mono_image_open_full passing the refonly
19305         parameter to load the modules the correct way.
19306         (build_guid_table): Add the refonly argument, to re-build the 
19307         correct hash table.
19308         (do_mono_image_open): Added the refonly argument, in order to
19309         define it for the loaded image.
19310         (mono_image_loaded_full): New function, which receives an
19311         additional parameter to look for the image in the refonly or
19312         non-refonly section.
19313         (mono_image_loaded): Updated, using mono_image_loaded_full.
19314         (mono_image_loaded_by_guid_full): The same case that happens
19315         with mono_image_loaded_full.
19316         (mono_image_loaded_by_guid): Likewise.
19317         (register_image): Use the ref_only variable inside MonoImage
19318         to decide in which hash table store the current image.
19319         (mono_image_open_from_data_full): Rename
19320         mono_image_open_from_data to mono_image_open_from_data_full,
19321         adding the refonly argument, to define the ref_only variable 
19322         inside MonoImage.
19323         (mono_image_open_from_data): Return 
19324         mono_image_open_from_data_full.
19325         (mono_image_open_full): Rename mono_image_open to
19326         mono_image_open_full, receiving the new refonly argument,
19327         to pass it to inner methods.
19328         (mono_pe_file_open): Update this function, to open
19329         a MonoImage as a non-refonly image.
19330         (mono_image_close): Use the refonly variable inside
19331         MonoImage to remove the image from the correct caches.
19332
19333         * image.h: Add the signatures of mono_image_open_full,
19334         mono_image_open_from_data_full, mono_image_loaded_full,
19335         mono_image_loaded_by_guid_full.
19336
19337         * metadata-internals.h: Add the ref_only field to 
19338         MonoImage.
19339         
19340 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19341
19342         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
19343         Fix the last behavior, which used to load the assemblies and
19344         extract MonoReflectionAssemblyName information, instead of
19345         extract it from the metadata tables. Needed for Reflection
19346         Only assemblies.
19347         
19348 2005-07-29  Martin Baulig  <martin@ximian.com>
19349
19350         * mono-debug-debugger.c
19351         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
19352         not initialized.
19353
19354         * mono-debug.c
19355         (mono_debug_address_from_il_offset): Check whether we have
19356         debugging support before attempting to take the lock.
19357         (mono_debug_source_location_from_address): Likewise.
19358         (mono_debug_source_location_from_il_offset): Likewise.
19359         (mono_debug_il_offset_from_address): Likewise.
19360         (mono_debug_address_from_il_offset): Likewise.
19361
19362 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
19363
19364         * class.c (mono_class_from_name_case): Add support for dynamic images.
19365         Fixes #75650.
19366
19367         * object.c (mono_class_compute_gc_descriptor): Add a workaround
19368         for #75479.
19369
19370 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19371         
19372         * reflection.c (mono_method_get_object): Fix warning.
19373
19374 2005-07-28  Martin Baulig  <martin@ximian.com>
19375
19376         * mono-debug.c
19377         (mono_debug_add_wrapper): Also write the wrapper type.
19378
19379 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19380
19381         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
19382         
19383         * class.c (mono_class_init): Avoid reading nested classes if the AOT
19384         data indicates the class has none.
19385
19386 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
19387
19388         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
19389         loader lock with the debugger lock. Prevents deadlocks for beagle.
19390
19391         Beagle can now run on an smp box for a weekend without any
19392         issues. Woohoo!
19393
19394 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
19395
19396         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
19397         in a module. Fixes #75629.
19398
19399 2005-07-26  Martin Baulig  <martin@ximian.com>
19400
19401         * mono-debug.c (mono_debug_add_wrapper): New static method.
19402         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
19403         interncall or a wrapper.
19404
19405         * mono-debug.h (MonoDebugWrapperData): New public typedef.
19406         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
19407         (MONO_DEBUGGER_VERSION): Bump to 51.
19408
19409         * mono-debug-debugger.c
19410         (mono_debugger_add_type): Removed this empty function.
19411         (mono_debugger_add_method): Likewise.
19412
19413 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
19414
19415         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
19416         before accessing method->slot.
19417
19418 2005-07-21  Jb Evain  <jbevain@gmail.com>
19419
19420         * reflection.c (method_encode_clauses/class): Handle filters clauses.
19421         Fixes #75010.
19422
19423 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
19424
19425         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
19426         #75587.
19427
19428 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
19429
19430         * image.h image.c: Add mono_image_get_guid () API function.
19431
19432 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
19433
19434         There were issues when multiple threads tried to load
19435         assemblies. A deadlock was created between assemblies_mutex and
19436         mono_domain_assemblies_lock. This fixes the issue by making the
19437         assembly ref counting be lock free. See bug 75586.
19438         
19439         * image.c (mono_image_close): The add ref function here was using
19440         Interlocked operations while the unref was using a mutex and a
19441         --. I don't think this was ever a bug that would be exposed in a
19442         non-pendantic way (ie, by an embedder doing a ref on one thread
19443         and an unref on another), but for the sake of correctness, this is
19444         now Interlocked.
19445
19446         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
19447         (mono_assembly_load_reference): Call mono_assembly_addref rather
19448         than touching the refcount ourselves.
19449         (mono_assembly_close): Use InterlockedDecrement to unref the
19450         assembly. Don't acquire the lock unless it is actually needed.
19451
19452 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
19453
19454         * class.c (mono_class_layout_fields): Fix calculation of has_references
19455         for generic types.
19456
19457 2005-07-12  Martin Baulig  <martin@ximian.com>
19458
19459         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19460
19461         * metadata.c
19462         (mono_type_hash): Provide better hashing for generic instances.
19463         (mono_generic_inst_hash): Improve hashing.
19464         (mono_generic_class_hash): Likewise.
19465
19466         * reflection.c (mymono_metadata_type_hash): Improve hashing for
19467         generic instances.
19468
19469 2005-07-12  Martin Baulig  <martin@ximian.com>
19470
19471         * reflection.c (mono_reflection_create_runtime_class): Remove the
19472         hack for generic type definitions and non-`Run' assemblies.
19473         (mono_reflection_bind_generic_parameters): Also use
19474         `klass->wastypebuilder' to check for TypeBuilders.
19475
19476 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
19477
19478         * class.c (mono_class_layout_fields): Fix calculation of has_references
19479         for generic types.
19480
19481         * class.c (inflate_generic_class): Fix a leak.
19482         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
19483         for generic types.
19484
19485 2005-07-11  Martin Baulig  <martin@ximian.com>
19486
19487         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
19488         on error.
19489
19490 2005-07-11  Martin Baulig  <martin@ximian.com>
19491
19492         * loader.c (find_method): Also lookup in
19493         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
19494
19495 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19496
19497         * appdomain.c (mono_domain_unload): Don't free the error message
19498         before passing it to mono_get_exception_...
19499
19500         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
19501         
19502 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
19503
19504         * threads.c: try to better guess an available RT signal (bug #75387).
19505
19506 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19507
19508         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
19509         and CACHE_OBJECT.
19510
19511 2005-07-07  Martin Baulig  <martin@ximian.com>
19512
19513         * class.c (mono_type_get_name_full): Return NULL for
19514         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
19515         fixes #75408.
19516
19517 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19518
19519         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
19520         exit the appdomain as well being aborted.
19521
19522         * threadpool.c: Create all threadpool threads inside the root appdomain, and
19523         change back to the root domain after calling managed code. This enables
19524         appdomains using threadpools to be unloaded.
19525
19526 2005-07-07  Martin Baulig  <martin@ximian.com>
19527
19528         * class-internals.h
19529         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
19530         into `MonoDynamicGenericClass' since we only need it for dynamic
19531         types.
19532
19533         * reflection.c (mono_class_bind_generic_parameters): We don't need
19534         to compute the `parent' here.
19535
19536 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
19537
19538         * culture-info-table.h : regenerated.
19539
19540 2005-07-06  Martin Baulig  <martin@ximian.com>
19541
19542         * icall.c
19543         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
19544
19545         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
19546
19547 2005-07-06  Martin Baulig  <martin@ximian.com>
19548
19549         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
19550         we're doing a signature-only comparision; fixes #74945.
19551
19552 2005-07-06  Martin Baulig  <martin@ximian.com>
19553
19554         * class-internals.h (MonoGenericClass): Moved some things out into
19555         a new `MonoInflatedGenericClass' type.  
19556         (MonoInflatedGenericClass): New type; the `klass' of a
19557         `MonoGenericClass' is now computed lazyly in
19558         mono_get_inflated_generic_class().      
19559
19560         * class.c (mono_get_inflated_generic_class): New public function.
19561         (mono_class_inflate_generic_method): Removed the unused
19562         `MonoClass *' argument.
19563         (setup_generic_vtable): Don't call mono_get_inflated_method() on
19564         all the methods.
19565         (mono_class_create_generic): Make this static and merge it with
19566         mono_class_create_generic_2(); we're now called automatically from
19567         mono_get_inflated_generic_class().
19568
19569         * loader.c (mono_method_signature): Call
19570         mono_get_inflated_method() here.
19571
19572 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
19573
19574         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
19575         type of fields with RVA.
19576
19577         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
19578         for this pseudo class.
19579         (my_mono_class_from_generic_parameter): Likewise.
19580         (mono_class_init): Allow interfaces to have cctors.
19581
19582 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
19583
19584         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
19585         lazily for AOT methods.
19586
19587 2005-07-05  Martin Baulig  <martin@ximian.com>
19588
19589         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
19590         returns FALSE for a successful match, not TRUE.
19591
19592 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
19593
19594         * loader.c (mono_method_get_index): Optimize this a bit.
19595
19596 2005-07-04  Martin Baulig  <martin@ximian.com>
19597
19598         * class.c
19599         (class_compute_field_layout): Move the check for generic type
19600         definitions into mono_class_layout_fields().  Fixes #74684.
19601         (mono_class_from_generic_parameter): Correctly compute
19602         `klass->parent'; fixes #75457.
19603
19604         * reflection.c (register_assembly, register_module): Make sure
19605         `domain->rejobject_hash' is already created.
19606
19607 2005-07-02  Martin Baulig  <martin@ximian.com>
19608
19609         * class-internals.h
19610         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
19611         `MonoDynamicGenericClass'.      
19612
19613 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
19614
19615         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
19616         returned by a field getter is null, since null is a valid value.
19617
19618 2005-07-01  Martin Baulig  <martin@ximian.com>
19619
19620         * reflection.c (mono_reflection_generic_class_initialize): Update
19621         the `dgclass->fields [i].parent' to the correct class.
19622         (mono_image_get_fieldref_token): Use the declaring type, not the
19623         reflected type.
19624
19625 2005-07-01  Martin Baulig  <martin@ximian.com>
19626
19627         * loader.c (find_method): Also look in the interfaces; fixes #75429.
19628
19629 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
19630
19631         * threads.c (thread_cleanup): assert that thread != NULL
19632         (wait_for_tids_or_state_change): We were using the wrong variable
19633         when accessing wait->threads. `i' was always out of the bounds of
19634         the array.
19635
19636 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19637
19638         * loader.c: map user32 and kernel32 to libMonoSupportW
19639
19640 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
19641
19642         * appdomain.c (unload_thread_main): Mark this as WINAPI.
19643
19644 2005-06-28  Martin Baulig  <martin@ximian.com>
19645
19646         * loader.c (method_from_methodspec): Fix #75334.
19647
19648 2005-06-28  Martin Baulig  <martin@ximian.com>
19649
19650         Fix #74953 - Arrays now implement the generic IList<T> interface
19651         on the 2.0 platform.
19652
19653         * class-internals.h (MonoDefaults): Added `generic_array_class'.
19654
19655         * reflection.c (mono_class_bind_generic_parameters): New public
19656         function; similar to mono_reflection_bind_generic_parameters(),
19657         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
19658
19659         * domain.c (mono_init_internal): Try to initialize.
19660         `mono_defaults.generic_array_class' here; this'll only succeed if
19661         we're using the 2.0 corlib.
19662
19663         * icall.c
19664         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
19665         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
19666         (mono_lookup_internal_call): Added support for nested classes.
19667
19668         * loader.c
19669         (mono_get_method_from_token): Set `result->signature->pinvoke' if
19670         we're an interncall and have generic arguments.
19671
19672         * class.c
19673         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
19674         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
19675         instance of System.Array.InternalArray<T> for arrays, so they
19676         implement the generic IList<T> interface.
19677
19678 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
19679
19680         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
19681         (chastamar@yahoo.com). Fixes #75374.    
19682
19683 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
19684
19685         * culture-info-table.h: regenerated.
19686
19687 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19688
19689         * icall.c: handle spaces correctly for base64 strings.
19690
19691 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
19692
19693         * *.c: Kill some warnings.
19694
19695 2005-06-23  Duncan Mak  <duncan@novell.com>
19696
19697         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
19698         that this builds on Solaris 10 (x86).
19699
19700 2005-06-23  Martin Baulig  <martin@ximian.com>
19701
19702         * class.c
19703         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
19704         generic type definitions.
19705
19706 2005-06-23  Martin Baulig  <martin@ximian.com>
19707
19708         Fix #75331.
19709
19710         * metadata.c (mono_class_get_overrides): Renamed to
19711         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
19712         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
19713         pass it to mono_get_method_full().
19714
19715 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
19716
19717         * reflection.c (mono_reflection_create_runtime_class): take the
19718         mono_domain_lock in this method. Prevents deadlocks
19719
19720 2005-06-22  Martin Baulig  <martin@ximian.com>
19721
19722         * loader.c (method_from_methodspec): Fix #75330.
19723
19724 2005-06-22  Martin Baulig  <martin@ximian.com>
19725
19726         * reflection.c (type_get_qualified_name): Use
19727         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
19728         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
19729         argument; use it if we don't have an assembly name.
19730
19731 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
19732
19733         * object.c: In mono_message_init, set "copy out" flag for in
19734         parameters with the [Out] flag.
19735
19736 2005-06-21  Martin Baulig  <martin@ximian.com>
19737
19738         * class.c
19739         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
19740         and MONO_TYPE_PTR.
19741
19742 2005-06-21  Martin Baulig  <martin@ximian.com>
19743
19744         * class.c (mono_class_init): Don't initialize `class->fields' for
19745         generic instances since they're initialized again in
19746         compute_field_layout(). 
19747         (compute_field_layout): Set the field's `generic_info' here; fix
19748         #75320. 
19749
19750 2005-06-21  Martin Baulig  <martin@ximian.com>
19751
19752         * class-internals.h
19753         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
19754
19755         * metadata.c (mono_metadata_generic_method_equal): Also
19756         distinguish the `generic_class'; fixes #75334.
19757
19758 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19759
19760         * domain.c:
19761         * appdomain.c:
19762         * domain-internals.h:
19763         * reflection.c: 'domain_assemblies' field is now protected by its own
19764         lock. Don't call into managed code to run the AssemblyLoad event if we
19765         now there are no registered delegates for it.
19766
19767 2005-06-20  Martin Baulig  <martin@ximian.com>
19768
19769         * class.c (mono_class_is_assignable_from): Use a custom version of
19770         mono_class_has_parent() to make things work for generic instances;
19771         fix #75300.
19772
19773 2005-06-20  Martin Baulig  <martin@ximian.com>
19774
19775         * loader.c (method_from_methodspec): Apply a patch from
19776         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
19777
19778 2005-06-20  Martin Baulig  <martin@ximian.com>
19779
19780         * class.c (mono_class_init): Reverted Zoltan's last change; it
19781         breaks generics.
19782
19783 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
19784
19785         * threads.c (wait_for_tids_or_state_change): Add missing locking.
19786
19787 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19788
19789         * socket-io.c: fix the index in the socket array for writable/error
19790         sockets. Fixes bug #75306.
19791
19792 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
19793
19794         * class.c (mono_class_init): Allow interfaces to have static ctors.
19795
19796 2005-06-17  Martin Baulig  <martin@ximian.com>
19797
19798         * loader.c (method_from_methodspec): Use `context->container' when
19799         parsing the `gmethod->inst'.
19800
19801 2005-06-17  Martin Baulig  <martin@ximian.com>
19802
19803         * class.c (mono_type_get_name_recurse): Don't add the assembly
19804         name for type arguments.
19805
19806 2005-06-15  Martin Baulig  <martin@ximian.com>
19807
19808         * reflection.c (mono_image_get_inflated_method_token): Encode
19809         correct klass; fixes #75260.
19810
19811 2005-06-13 Michal Moskal <malekith@nemerle.org>
19812
19813         * icall.c: Make GetCorrespondingMethod/Constructor take
19814         MonoReflectionMethod method not MonoMethod. Removed
19815         MonoType.GetCorrespondingField, and make
19816         MonoGenericType.GetCorrespondingField take name not
19817         MonoClassField.
19818
19819 2005-06-13  Michal Moskal <malekith@nemerle.org>
19820
19821         * reflection.c (field_encode_signature, encode_locals):
19822          Make sizes of buffers for types larger (for big generic types).
19823          (create_generic_typespec,
19824          mono_reflection_sighelper_get_signature_local,
19825          mono_reflection_sighelper_get_signature_field):
19826          Add asserts for too small buffers.
19827
19828 2005-06-15  Martin Baulig  <martin@ximian.com>
19829
19830         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
19831         if our parent is not a dynamic type.
19832
19833 2005-06-15  Martin Baulig  <martin@ximian.com>
19834
19835         * class-internals.h (MonoTypeNameFormat): New enum.
19836
19837         * class.c
19838         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
19839         (mono_type_get_full_name): Removed.
19840         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
19841         argument instead of the boolean's.
19842
19843         * icall.c (ves_icall_System_MonoType_getFullName):
19844         Added `gboolean assembly_qualified'.    
19845
19846         * reflection.h
19847         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
19848
19849         * reflection.c (mono_reflection_parse_type): Parse the new type
19850         name format.
19851
19852 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19853
19854         * icall.c: no need to convert from utf16 to utf8 and then back again
19855         after the call to GetLogicalDrives.
19856
19857 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19858
19859         * icall.c: frombase64. Fix problems exposed by new tests.
19860
19861 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19862
19863         * icall.c: added internal calls for converting char [] and strings in
19864         base64 into byte [].
19865
19866 2005-06-10  Martin Baulig  <martin@ximian.com>
19867
19868         * class.c (mono_class_create_generic_2): Read the nested classes
19869         from the metadata rather than from `gklass->nested_classes' since
19870         `gklass' might not be initialized yet.
19871
19872 2005-06-09  Duncan Mak  <duncan@novell.com>
19873
19874         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
19875         all public headers. Fixes #74919.
19876
19877 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
19878
19879         * domain.c: The key for proxy_vtable_hash is now a pointer
19880         array. Added new GHashFunc and GCompareFunc functions for this.
19881
19882         * class.h: The list of interfaces in MonoRemoteClass is known in
19883         advance and can't grow (we create a new MonoRemoteClass if needed),
19884         so now the interface array can be allocated together with
19885         MonoRemoteClass.
19886         
19887         * object.c: Added a new method create_remote_class_key.
19888         Fixed mono_remote_class so it does not depend on
19889         mono_upgrade_remote_class.
19890         Removed extend_interface_array.
19891         Added new method clone_remote_class(), which makes a copy of a remote
19892         class and adds a new interface or class to it.
19893         mono_upgrade_remote_class() now creates a new remote class (or gets
19894         it from the cache) if an vtable upgrade is needed. In this way
19895         we make sure that other objects sharing the same remote class
19896         don't get the new vtable with unwanted interfaces.
19897         
19898         * object-internals.h:
19899         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
19900         
19901         * marshal.c: Track changes in mono_upgrade_remote_class().
19902
19903 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
19904         * icall.c: Add runtime methods for obtaining members of inflated
19905         class, which were created from supplied non-inflated members. It
19906         is used in internal Get{Method,Constructor,Field} methods in
19907         System.Type
19908
19909 2005-06-09  Martin Baulig  <martin@ximian.com>
19910
19911         * reflection.c
19912         (mono_reflection_bind_generic_method_parameters): Fix #75169.
19913
19914 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19915         * reflection.c (mono_image_basic_init): Define
19916         Version in MonoDynamicAssembly. 
19917         
19918 2005-06-08  Martin Baulig  <martin@ximian.com>
19919
19920         Fix #75136.
19921
19922         * loader.c
19923         (mono_method_signature_full): New public method; takes a
19924         `MonoGenericContext *'.
19925         (find_method): Use mono_method_signature_full() and pass the
19926         klass'es context to it.
19927
19928         * class.c (mono_class_is_inflated_method): Use
19929         mono_method_signature_full() and pass the context to it.
19930
19931 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
19932
19933         * object.c: add proper locking in mono_remote_class_vtable(),
19934         fixes possible memory corruption.
19935
19936 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
19937
19938         * marshal.c (mono_remoting_marshal_init): set
19939         initialized after initialization.
19940
19941 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
19942
19943         * locales.c : hush.
19944
19945 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
19946
19947         * object.c (extend_interface_array): fix really silly
19948         memory corrupting / comparison bug.
19949
19950 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19951
19952         * reflection.c: Functions added to support the creation
19953         of CustomAttributeData, which includes Attribute data
19954         used by ReflectionOnly methods.
19955
19956         * reflection.h:  mono_reflection_get_custom_attrs_data and
19957          mono_custom_attrs_data_construct added (functions exposed).
19958
19959          * icall.c: Added mono_reflection_get_custom_attrs_data
19960          as icall.
19961         
19962 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
19963
19964         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
19965         lupus's request.
19966
19967 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
19968
19969         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
19970
19971         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
19972         dynamic DllImportAttribute.
19973
19974         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
19975         dynamic DllImportAttribute.
19976
19977         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
19978         Fixes #75162.
19979
19980 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19981
19982         * threads.c: avoid segfault when an unstarted thread is aborted.
19983
19984 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
19985
19986         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
19987         Returns the name and version of the runtime for reporting.
19988
19989 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19990
19991         * appdomain.c: bump corlib version.
19992         * object-internals.h: new field in MonoReflectionAssembly.
19993
19994 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19995
19996         * object-internals.h: Carlos forgot to add this field.
19997
19998 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19999
20000         * icall.c: Added create_version to create instances
20001         of Version of MonoReflectionAssemblyName. This change helps
20002         the AssemblyName tests to keep running fine.
20003         
20004 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
20005   
20006         * object.c (mono_method_return_message_restore): A somehow less
20007         intrusive fix for #75138.
20008
20009 2005-06-03  Raja R Harinath  <rharinath@novell.com>
20010
20011         * object.c (mono_method_return_message_restore): Fix computation
20012         of expected number of out args.
20013
20014 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20015
20016         * reflection.c (mono_image_get_method_info): Fix the case when the
20017         charset is empty.
20018
20019 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
20020
20021         * object.c: Added missing null check in
20022           mono_method_return_message_restore.
20023
20024 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20025
20026         * reflection.c (mono_image_get_method_info): Handle the case when
20027         dllentry is empty.
20028
20029 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
20030
20031         * object.c: When creating the vtable for a proxy, take into account
20032         all inherited interfaces, not only the ones registered in
20033         iclass->interfaces. This fixs bug #74996.
20034         Also, in mono_method_return_message_restore, verify that the array
20035         of out args has the expected lengh.
20036
20037 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20038
20039         * socket-io.c: update the timeout in Poll when the call is interrupte.
20040
20041 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20042
20043         * socket-io.c: support abort/suspend in Select_internal after last
20044         change.
20045
20046 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20047
20048         * threadpool.c: remove warning.
20049
20050 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20051
20052         * icall.c:
20053         * socket-io.[ch]: Select_internal uses poll() now when available, thus
20054         removing the 1024 limit from select(). Runtime part of the fix for
20055         bug #71203.
20056
20057 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20058
20059         * socket-io.c: when resolving the addresses for the same
20060         host returned by gethostname(), get the local IPs from the interface
20061         list. Loopback addresses are discarded if the are interfaces up with
20062         non-loopback ones. Fixes bug #63265.
20063
20064 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
20065
20066         * appdomain.c, verify.c, object-internals.h, reflection.c:
20067         bumped corlib number to 36, and added new extra_flags field
20068         to ReflectionMethodBuilder and friends.  Fixes #75060.
20069
20070 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
20071
20072         * gc.c: register a new weak link only if the object is non-null
20073         (fixes bug#75047).
20074
20075 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20076
20077         * culture-info.h : short time pattern too.
20078
20079 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20080
20081         * culture-info.h : expand long time pattern string length.
20082
20083 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20084
20085         * culture-info-table.h : update (more French date format; #72788).
20086
20087 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
20088
20089         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
20090         the method is static. Fixes #75029.
20091
20092 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
20093
20094         * reflection.c: Update the table_idx field of method builders after
20095         saving the module, since it can change. This is a workaround for
20096         bug #74914. 
20097
20098 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20099
20100         * culture-info-table.h : update (additional French date format).
20101
20102 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
20103
20104         * icall.c (ves_icall_type_Equals): Revert last change.
20105         
20106         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
20107
20108         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
20109
20110 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
20111
20112         * class-internals.h: Added executioncontext_class field to 
20113         MonoDefaults structure.
20114         * domain.c: Cache System.Threading.ExecutionContext class in 
20115         mono_defaults.
20116         * object.c: Capture the ExecutionContext for asynchroneous calls in
20117          mono_async_result_new.
20118         * object-internals.h: Added execution_context and original_context 
20119         fields to MonoAsyncResult. Added execution_context to MonoThread.
20120         * security-manager.c|.h: Added mono_get_context_capture_method to 
20121         return the capture method (if required by the security manager or by
20122         the framework version used).
20123         * threadpool.c: Apply capture (if present) ExecutionContext in 
20124         mono_async_invoke and revert to original context after it completes.
20125
20126 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
20127
20128         * culture-info-table.h : updated (real hacky solution for zh-CHT).
20129
20130 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
20131
20132         * culture-info-table.h : zh-CHT related workaround.
20133
20134 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20135
20136         * marshal.c (emit_marshal_custom): Add some error checking and call the
20137         methods in the ICustomMarshaler interface. Fixes #74875.
20138         
20139         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
20140         native->managed wrappers.
20141
20142 2005-05-12  Martin Baulig  <martin@ximian.com>
20143
20144         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
20145         here and use the loader lock.
20146
20147         * mono-debug.c: Properly lock when the debugger is not attached.
20148         (mono_debug_init): Release the initial lock if we're not running
20149         in the debugger.
20150
20151 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20152
20153         * marshal.c (emit_marshal_custom): Pass through NULL values without
20154         calling the custom marshalling routines.
20155
20156         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
20157         conversion in structures. Fixes #74882.
20158
20159 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
20160
20161         * culture-info-table.h : zh-* cultures were missing.
20162
20163 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
20164
20165         * threads.c: Added a new event background_change_event which is signaled
20166         when a thread changes its background mode.
20167         Moved here several checks previously done in managed code. The checks
20168         require the thread lock, and using the thread lock in managed code
20169         can result in deadlocks.
20170         Merged Start_internal and Thread_internal into a single method. Now 
20171         Thread_internal does all work of creating and starting a thread.
20172         Added icalls for setting and getting the state of the object. Moved from
20173         managed code to avoid locking there.
20174         Added wait_for_tids_or_state_change() which is called instad of
20175         wait_for_tids when waiting for non-backround threads to end. This method
20176         will return if one of the threads ends or the background_change_event
20177         is signaled.
20178         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
20179         the background mode. This method signals the background_change_event
20180         event.
20181         * icall.c:
20182         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
20183         removed Start_internal.
20184         
20185 2005-05-11  Martin Baulig  <martin@ximian.com>
20186
20187         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
20188         to order of some fields to get proper alignment on 64-bit machines.
20189
20190 2005-05-11  Martin Baulig  <martin@ximian.com>
20191
20192         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
20193         changes as they're broken and completely fuck up the debugger.
20194
20195         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
20196
20197 2005-05-10  Martin Baulig  <martin@ximian.com>
20198
20199         * reflection.c (mono_reflection_generic_class_initialize): Don't
20200         call mono_class_setup_parent() here.
20201
20202 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20203
20204         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
20205         send/receive timeout use an integer in milliseconds. We were using a
20206         struct timeval.
20207
20208 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20209
20210         * locales.c:
20211         (internal_get_cultures): reserve the first slot of the array for the
20212         InvariantCulture, which will be filled in managed code.
20213
20214 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
20215
20216         * reflection.c (mono_image_fill_module_table): Initialize the
20217         GENERATION field as well.
20218
20219 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20220
20221         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
20222         Monitor.Enter on the object.
20223
20224 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
20225
20226         * threads.c: Enable the wait for running threads when exiting.
20227         * icall.c: Suspend all threads before exiting.
20228
20229 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
20230
20231         * assembly.c (mono_assembly_load_reference): Fix warning.
20232
20233 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20234
20235         * threadpool.c: changed the default number of threads per cpu. From now
20236         on, the default will be 20 + (5 * number of cpus) instead of 50.
20237
20238 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
20239
20240         * loader.c (mono_method_get_signature_full): Add locking here.
20241
20242 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
20243
20244         * appdomain.c: Moved methods for parsing and freeing assembly
20245         names to assembly.c.
20246         * assembly.c, domain-internals.h: Created public methods for parsing
20247         assembly names. Fixed mono_assembly_load_with_partial_name:
20248         it now finds the best match, taking into account the version,
20249         token and culture specified in the partial name. Also return
20250         the latest version if no version information is specified.
20251
20252 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
20253
20254         * threadpool.c: replace check for SocketAsyncCall class.
20255
20256 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20257
20258         * threadpool-internals.h:
20259         * Makefile.am: added threadpool-internals.h
20260
20261         * threadpool.c: call mono_unhandled_exception on exceptions not handled
20262         that happen in threadpool threads (tested on MS).
20263         (mono_thread_pool_remove_socket): new function that dispatch any pending
20264         AIO call on a socket that is closing. By now only epoll really needs it,
20265         as select/poll wake up when the socket closes.
20266
20267
20268         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
20269
20270 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
20271
20272         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
20273
20274 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
20275
20276         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
20277
20278 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
20279
20280         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
20281         has an abort request, convert it into a suspend request.
20282
20283 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
20284
20285         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
20286         warning for the usage of `UnmanagedFunctionPointerAttribute' which
20287         is not supported yet.
20288
20289 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20290
20291         * image.c: register assemblies loaded from data (bundles) in the loaded
20292         assemblies hash. Fixes bug #74772.
20293
20294 2005-04-29  Martin Baulig  <martin@ximian.com>
20295
20296         * class.c (mono_type_get_name_recurse): Update to the new naming
20297         schema from the latest .NET 2.x beta2.
20298         (mono_class_setup_vtable_general): If we're a generic instance,
20299         copy the vtable from our generic type definition and inflate all
20300         the methods in it.
20301
20302         * loader.c (find_method): Update to the new naming schema from the
20303         latest .NET 2.x beta2.
20304
20305 2005-04-29  Raja R Harinath  <harinath@gmail.com>
20306
20307         * class.c (mono_class_init): Add a mono_loader_unlock to the
20308         #74734 fix.
20309
20310 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
20311
20312         * icall.c (ves_icall_System_Environment_Exit): Remove the 
20313         suspend_all_other_threads () call for the time being, since it can hang.
20314
20315         * threads.c (mono_thread_manage): Similarly, disable the waiting for
20316         the background threads to exit, since it can also hang.
20317
20318         * class.c (mono_class_init): Applied patch from Ankit Jain 
20319         (radical@gmail.com). Avoid pending init errors when a field refers
20320         to a nested class using a typeref. Fixes #74734.
20321
20322         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
20323         this for dynamic modules.
20324
20325 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20326
20327         * threads.c: don't wait for threads that are in the process of aborting
20328         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
20329         and waiting for background threads to finish. This makes xsp and
20330         mod-mono-server exit without random length delays and/or hangs.
20331
20332 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20333
20334         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
20335
20336 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
20337
20338         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
20339         dynamic types to prevent infinite loops. Fixes #74727.
20340
20341         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
20342         ..._is_assignable_to.
20343
20344 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
20345
20346         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
20347
20348 2005-04-25  Martin Baulig  <martin@ximian.com>
20349
20350         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
20351
20352         * domain.c
20353         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
20354
20355         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
20356
20357         * reflection.c (build_compressed_metadata): Set metadata header
20358         version to 2.0.
20359
20360 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
20361
20362         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
20363         number into an integral and a decimal part. Fixes #70473.
20364
20365         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
20366
20367 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
20368
20369         * culture-info-table.h : reflected the latest locale-builder output.
20370
20371 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20372
20373         * threadpool.c: check for SuspendRequested too when deciding if
20374         mono_thread_interruption_checkpoint should be called.
20375
20376 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20377
20378         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
20379         * threads.c: remove interruption_mutex and use Interlocked instead. When
20380         suspending all the threads, wait for all the suspended events at once.
20381         If we're shutting down and get an APC that is going to be queued,
20382         call mono_thread_execute_interruption immediately, as the thread might
20383         be sleeping on a pthread condition or mutex.
20384
20385         * icall.c: call mono_runtime_set_shutting_down before suspending the
20386         threads.
20387
20388         Fixes bug #74693. And now xsp is happier when exiting.
20389
20390 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
20391
20392         * loader.c (mono_stack_walk): Fix #74690.
20393
20394 2005-04-22  Martin Baulig  <martin@ximian.com>
20395
20396         * mono-debug.h (MonoDebugMethodJitInfo): Added
20397         `MonoDebugMethodJitInfo *jit'.
20398
20399         * mono-debug.c (mono_debug_read_method): Cache the
20400         MonoDebugMethodJitInfo in `address->jit'.
20401         (mono_debug_free_method_jit_info): New public method.
20402
20403 2005-04-22  Martin Baulig  <martin@ximian.com>
20404
20405         * class.c (mono_class_is_assignable_from): Disallow
20406         type parameter -> interface.
20407
20408 2005-04-21  Dick Porter  <dick@ximian.com>
20409
20410         * threads.c (mono_thread_create): Turn an assertion into an error.
20411
20412 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
20413
20414         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
20415         
20416         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
20417         Fix some gcc 4.0 warnings.
20418
20419 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
20420
20421         * file-io.c: fix alt dir separator char on unix systems
20422         and cleanup (fixes bug #71214).
20423
20424 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
20425
20426         * marshal.c: Use CALLVIRT instead of CALL when dispatching
20427         a call to a remote domain, since the method may be an
20428         interface method in the client domain. This fixes bug #74192.
20429
20430 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20431
20432         * threadpool.c: recv/send are now performed before going back to managed
20433         code to save one transition.
20434
20435 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20436
20437         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
20438
20439         * metadata/threadpool.c: removed hack to workaround the bug above.
20440
20441         Fixes bug #74618.
20442
20443 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
20444
20445         * reflection.c reflection.h: Fix handling of parameter defaults in
20446         dynamic methods. Also fixes handling of parameter attributes.
20447         Fixes #74609.
20448
20449         * mono-debug.c (mono_debug_close_image): Fix warning.
20450
20451 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20452
20453         * socket-io.h: replaced old unused field with new 'blocking'.
20454         * threadpool.c: restore socket blocking state on windows(tm).
20455
20456 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
20457
20458         * icall.c: don't return the codebase in the AssemblyName[] returned by
20459         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
20460         * object-internals.h: Removed FIXME (fields were presents) and fixed
20461         versioncompat declaration.
20462
20463 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20464
20465         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
20466         not closed, so don't cleanup when it happens.
20467
20468 2005-04-13  Chris Toshok  <toshok@ximian.com>
20469
20470         * mono-debug-debugger.h: change prototype for
20471         mono_debugger_lookup_type.
20472
20473         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
20474         this function, although it should probably be named
20475         mono_debugger_init_type.
20476
20477 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20478
20479         * threadpool.c: fix non-AIO case.
20480
20481 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
20482
20483         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
20484         the built-in profiler to measure just JIT compilation times.
20485
20486 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20487
20488         * threadpool.c: the epollfd might be closed by another thread at
20489         any time, so ignore EBADF at treat it as a "we're closing" sign.
20490
20491 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20492
20493         * threadpool.c: release the semaphores with a count equals to the number
20494         of working threads in both IO and regular pools. Fixed typo that messed
20495         up the count of IO pool threads. Don't initialize the pipe handles if
20496         we're using epoll.
20497
20498 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20499
20500         * threadpool.c: some systems don't like a NULL when deleting the socket
20501         from epoll.
20502
20503 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20504
20505         * threadpool.c: fix semaphore allocation.
20506
20507 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20508
20509         * threadpool.c: added epoll() based implementation for asynchronous IO
20510         that is used instead of the default poll() when available.
20511         It can be disabled by setting MONO_DISABLE_AIO.
20512
20513 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20514
20515         * threadpool.c: windows needs 'closesocket' and instead of returning
20516         0 when the stream is closed while in select, it returns -1. Fixes bug
20517         #74573.
20518
20519 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
20520
20521         * class.c (class_compute_field_layout): Fix the regression caused by
20522         the previous try.
20523
20524 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20525
20526         * threadpool.c: separate pool for socket async. IO.
20527         * threadpool.h: mono_max_worker_threads is not a global any more.
20528
20529 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
20530
20531         * class.c (class_compute_field_layout): Fix #74549.
20532
20533 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20534
20535         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
20536         use 2 connected sockets instead.
20537
20538 2005-04-08  Miguel de Icaza  <miguel@novell.com>
20539
20540         * mono-config.c: Add new entry point for mkbundle
20541         mono_config_parse_memory. 
20542
20543 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20544
20545         * threadpool.c: removed another unused function.
20546
20547 2005-04-08  Ankit Jain  <radical@corewars.org>
20548
20549         * reflection.c (get_default_param_value_blobs): Add 'types'
20550         parameter to get the types encoded in the constant table.
20551         (mono_param_get_objects): Use the type from the constant table,
20552         not the type of the parameter, when creating default values.
20553         Handle null default values correctly.
20554
20555 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20556
20557         * file-io.c:
20558         * file-io.h:
20559         * threadpool.c:
20560         * threadpool.h:
20561         * icall.c:
20562         * socket-io.c: removed dead code for async IO.
20563
20564 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20565
20566         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
20567
20568         * threadpool.c: intercept socket async. calls and pass them to a thread
20569         that is polling and dispatching the job items to the threadpool as
20570         socket become ready. Fixes bugs #71217, #71933.
20571
20572         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
20573         between char and short/ushort arrays.
20574
20575         * socket-io.c: remove dead code.
20576
20577 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
20578
20579         * locales.c,
20580           icall.c : removed InternalToUpper_Comp() and
20581           InternalToLower_Comp().
20582
20583 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
20584
20585         * char-conversions.h : The tables were incorrectly generated. Should
20586           be generated against invariant culture.
20587
20588 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
20589
20590         * object.c (mono_runtime_invoke_array): Fix return value when 
20591         passing pre-created valuetype objects to ctors.
20592
20593         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
20594         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
20595         Fixes #74338.
20596
20597 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
20598
20599         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
20600         only used with --security and hides the wrong corlib version error.
20601
20602 2005-03-30  Joshua Tauberer  <tauberer@for.net>
20603
20604         * class.c: Changed mono_class_name_from_token so that types
20605         outside of a namespace don't have an initial period.  Improved
20606         the g_warning message used in _mono_class_get when loading
20607         fails.
20608         * assembly.c: In mono_assembly_load_reference, when an assembly
20609         can't be found, "No such file or directory" is misleading and
20610         unhelpful because a few paths were checked for the presence of
20611         the assembly.  When that happens (ENOENT), display a nicer
20612         message indicating the directories that were searched.  In all
20613         cases, the warning is made easier to read for non-hackers.
20614
20615 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
20616
20617         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
20618         project/solution.
20619         * appdomain.h|domain.c: Removed inline from functions.
20620         * appdomain.c: Reduced warnings when compiling on windows.
20621         * icall.c: Fixed output_debug declaration to gunichar2*.
20622         * mono-config.c: Reduced warnings when compiling on windows.
20623         * rand.c: Added missing "windows.h". Added missing return value.
20624         * rawbuffer.c: Added missing winsock2.h for windows.
20625         * sysmath.h: Added mono-compiler.h header to allow/ease 
20626         compilation with non-GCC compilers.
20627         * threads.c: Fixed declarations to compile with VS.NET C compiler.
20628         Removed cast warnings.
20629
20630         Adapted from the work of J Lothian (for VC6).
20631
20632 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
20633
20634         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
20635         from default_path.
20636
20637 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
20638
20639         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
20640         the 2.0 profile.
20641
20642 2005-03-27  Raja R Harinath  <harinath@gmail.com>
20643
20644         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
20645         has to be in $(exec_prefix).  $(prefix) is for arch-independent
20646         stuff, and it would probably use $(prefix)/share rather than
20647         $(prefix)/lib.
20648
20649 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20650
20651         * console-io.c: added 2 includes that might be missing.
20652
20653 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
20654
20655         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
20656         profile.
20657
20658         * reflection.c (create_custom_attr): Allocate the params array using
20659         alloca so it gets GC tracking.
20660
20661 2005-03-23  Chris Toshok  <toshok@ximian.com>
20662
20663         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
20664         out some spew.
20665
20666 2005-03-24  Raja R Harinath  <rharinath@novell.com>
20667
20668         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
20669         changes to pick up any changes in prefix, etc.
20670
20671 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20672
20673         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
20674         
20675         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
20676         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
20677
20678 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20679
20680         * class-internals.h object-internals.h class.c reflection.c: Extend the
20681         mono_lookup_dynamic_token () function to return the class of the
20682         token as well. 
20683
20684         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
20685         well. Fixes #73848.
20686
20687 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
20688
20689         * security-manager.c: Skip inheritance checks for intra-corlib
20690         class inheritance and method overrides. This skips a lot of checks
20691         and (anyway) permissions cannot work until corlib is loaded.
20692
20693 2005-03-23  Martin Baulig  <martin@ximian.com>
20694
20695         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
20696         MONO_TYPE_GENERICINST.  
20697
20698 2005-03-23  Martin Baulig  <martin@ximian.com>
20699
20700         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
20701
20702 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20703
20704         * class.c: added locking comments to some functions.
20705         Cache the interface offsets arrays (saves about 20 KB
20706         of runtime memory in a typical app).
20707         Reduce the time overhead in mono_class_setup_supertypes ().
20708
20709 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
20710
20711         * icall.c: speedup and fix leaks in GetMethodsByName and
20712         GetPropertiesByName.
20713
20714 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20715
20716         * reflection.c: some locking fixes.
20717
20718 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
20719
20720         * metadata.c: added missing break in case statement.
20721
20722 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
20723
20724         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
20725         typedbyref return values. Fixes #73941.
20726
20727 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
20728
20729         * security-manager.c|h: Added demandunmanaged method and 
20730         suppressunmanagedcodesecurity class to MonoSecurityManager.
20731         Renamed aptc class to allowpartiallytrustedcallers.
20732
20733 2005-03-17  Martin Baulig  <martin@ximian.com>
20734
20735         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
20736
20737 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20738
20739         * file-io.c: disabled file async. IO using aio_*. It uses the
20740         threadpool now. Workaround for bug #73718.
20741
20742 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20743
20744         * assembly.h, mono-config.c: added code to deal with bundled configs
20745         for bundled assemblies.
20746
20747 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
20748
20749         * *.c, private.h: cleanup, removing old private.h header file.
20750
20751 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
20752
20753         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
20754         and throw_on_unmappable_char attributes.
20755
20756 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
20757
20758         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
20759         _ProcessName_internal.
20760
20761 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
20762
20763         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
20764         #73631.
20765
20766         * icall.c threads.c threads-types.h: Remove slothash icalls as they
20767         are no longer used.
20768
20769 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
20770
20771         * object.c (compute_class_bitmap): Add support for generics. Fixes
20772         #73527.
20773
20774 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
20775
20776         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
20777
20778 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20779
20780         * filewatcher.c: commented out the code for windows watcher, as we don't
20781         use it (we use the managed implementation instead).
20782
20783 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
20784
20785         * object-internals.h (MonoThread): Remove 'unused1' field.
20786
20787         * appdomain.c: Bump corlib version.
20788
20789         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
20790
20791         * reflection.c (mono_reflection_create_runtime_class): Remove the
20792         AssemblyBuilder.Save optimization since it causes too many problems.
20793
20794 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
20795
20796         * exception.c|h: Added mono_get_exception_reflection_type_load to
20797         create a ReflectionTypeLoadException object.
20798         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
20799         to return NULL is a InheritanceDemand fails during reflection. Updated
20800         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
20801         ReflectionTypeLoadException if an InheritanceDemand fails during 
20802         reflection. Added icall mapping for GetLinkDemandSecurity.
20803         * security-manager.c|h: Added ves_icall_System_Security_
20804         SecurityManager_GetLinkDemandSecurity internal call to return the
20805         class and methods permissions set for a LinkDemand. Removed unused
20806         fields in MonoSecurityManager.
20807
20808 2005-03-10  Martin Baulig  <martin@ximian.com>
20809
20810         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
20811         it's a generic instance.
20812
20813 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
20814
20815         * reflection.c (mono_get_object_from_blob): Applied patch from
20816         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
20817
20818         * class.c (mono_class_is_assignable_from): Another try at fixing 
20819         #73469 without breaking anything.
20820
20821 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
20822
20823         * class.c: (mono_class_is_assignable_from): Revert the last changes
20824         since they don't work with generics.
20825         
20826         * class.c (mono_class_is_assignable_from): Fix build bustage.
20827
20828         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
20829         the managed IsAssignableFrom method. Fixes #73469.
20830
20831         * reflection.c (mono_reflection_call_is_assignable_from): New helper
20832         function.
20833
20834 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
20835
20836         * object.c (mono_load_remote_field_new): Fix returning uninitialized
20837         memory when the remoting callback does not sets the out arguments.
20838         Fixes #73007.
20839
20840         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
20841         by mistake.
20842
20843         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
20844
20845         * object-internals.h (MonoStackFrame): Sync with managed object layout.
20846
20847         * appdomain.c: Bump corlib version.
20848
20849 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
20850
20851         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
20852         function.
20853
20854         * threads.c (mono_thread_attach): Detect threads which are not started
20855         by the GC pthread wrappers.
20856
20857 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
20858
20859         * icall.c: Added new icall for RNG.
20860         * rand.c|h: Added new icall to open the RNG. This allows to share a 
20861         single handle on Linux to access /dev/urandom and fix #73183.
20862
20863 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
20864
20865         * object.c: setting the new vtable in a transparent proxy object must
20866         not change the GC descriptor.
20867
20868 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20869
20870         * object.c: fixed compilation without GCJ support.
20871         * reflection.c: for runtime-created types ensure klass->has_references
20872         is correct (bug #73215).
20873
20874 2005-03-02  Martin Baulig  <martin@ximian.com>
20875
20876         * class.c (mono_class_is_assignable_from): Make this work if
20877         `oklass' is a generic instance; fixes #72831.
20878
20879 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
20880
20881         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
20882         with hasthis set.
20883         
20884         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
20885
20886         * marshal.c: Reorganize native->managed marshalling code to also use
20887         the emit_marshal_... functions.
20888
20889 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
20890
20891         * object.c: typed allocs have issues with bitmap sizes > 30,
20892         so check for max_set >= 30.
20893
20894 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
20895
20896         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
20897         managed code. Fixes #73012.
20898
20899         * metadata.h (MonoMarshalSpec): Add elem_mult field.
20900
20901         * metadata.c reflection.c: Load/Emit elem_mult as well.
20902         
20903         * metadata.h (MonoMarshalSpec): Add comment.
20904
20905         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
20906
20907         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
20908         num_elem to -1 if not given.
20909
20910         * object-internals.h (MonoReflectionMarshal): Add has_size field.
20911
20912         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
20913         given values.
20914
20915 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
20916
20917         * null-gc.c (mono_gc_free_fixed): Was not compilable.
20918
20919 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
20920
20921         * reflection.c (encode_marshal_blob): Encode param_num field as well.
20922
20923         * object-internals.h (MonoReflectionMarshal): Add param_num field.
20924
20925 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
20926
20927         * object.c: generalized the reference bitmap creation
20928         and added hooks for the new GC.
20929         * class-internals.c: removed the gc_bitmap field from MonoClass.
20930
20931 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20932
20933         * domain.c: help the compiler to produce better code
20934         in mono_jit_info_table_find ().
20935
20936 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
20937
20938         * object.c: make all allocations look typed.
20939
20940 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20941
20942         * socket-io.c: load Mono.Posix if it's not loaded already
20943         (fixes bug#73033).
20944
20945 2005-02-24  Martin Baulig  <martin@ximian.com>
20946
20947         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
20948         * reflection.c (dup_type): Likewise.
20949
20950 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
20951
20952         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
20953         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
20954
20955 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
20956
20957         * domain.c, threads.c, object-internals.h: make the critical thread
20958         local vars use the fast access mode (even when we're compiled in
20959         a lib). Provide accessors to be used by the jit during codegen.
20960
20961 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20962
20963         * appdomain.c: Changed hook functios behavior to include
20964         support for the reflection only assemblies. Some icalls were changed
20965         to support the mentioned assemblies too. Signatures of static methods
20966         try_assembly_resolve and real_load now have an additional parameter:
20967         refonly.
20968
20969         * assembly.c: General changes to mono_assembly_ methods to support
20970         reflection only api. Functions mono_assembly_open, mono_assembly_load,
20971         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
20972         suffix, to support an additional gbool parameter to specify whether
20973         the assembli is reflection only or not. Created some new hook functions 
20974         to add support for reflection only assemblies. Signatures of static 
20975         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
20976         have now an additional parameter: refonly.
20977
20978         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
20979         indicating whether the assembly is reflection only or not.
20980
20981         * exception.c: Add mono_get_exception_invalid_operation.
20982
20983         * icall.c: Throw an InvalidOperationException when trying to invoke
20984         a property/method/event, or trying to set/get the value of a field.
20985         Also add an icall to retrieve the ref_only flag to the
20986         MonoReflectionAssembly.
20987
20988 2005-02-23  Chris Toshok  <toshok@ximian.com>
20989
20990         Part of fix for #72827.
20991         * mono-debug.c (mono_debug_add_method): add lexical block data to
20992         the info we write.  Kind of a hack at the moment - we copy the
20993         lexical block info from the MonoDebugMethodInfo to the
20994         MonoDebugMethodJitInfo here, before writing it.
20995         (mono_debug_read_method): read the lexical block info.
20996
20997         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
20998
20999         * debug-mono-symfile.h: add lexical block support.
21000
21001         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
21002         support.
21003
21004 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21005
21006         * loader.c (mono_lookup_pinvoke_call): Fix warning.
21007
21008         * object.c (mono_runtime_free_method): Call mono_free_method () and
21009         put the TODOs there.
21010
21011         * loader.c (mono_free_method): Free up most memory allocated for 
21012         dynamic methods.
21013
21014 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
21015
21016         * reflection.c: properly flag a Type argument to a
21017         named custom attr value (bug #72248).
21018
21019 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21020
21021         * reflection.c: reduce code duplication in named custom
21022         attribute encoding.
21023
21024 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
21025
21026         * reflection.c: properly encode custom attrs of type object
21027         (bug #72649).
21028
21029 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21030
21031         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
21032
21033 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
21034
21035         * socket-io.c: load System.dll if it's not loaded already
21036         (bug #72850 and #70477).
21037
21038 2005-02-21  Martin Baulig  <martin@ximian.com>
21039
21040         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
21041         generic instances.
21042
21043 2005-02-21  Martin Baulig  <martin@ximian.com>
21044
21045         * reflection.c (mono_image_build_metadata): We also need to
21046         "fixup" the MethodImpl table after we computed the final method
21047         indices.  Call fixup_methodimpl() to do that.
21048         (fixup_methodimpl): New private method.
21049
21050 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
21051
21052         * assembly.c: special case mscorlib.dll (bug#72536),
21053         patch from Carlos Alberto Cortez.
21054
21055 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
21056
21057         * threads-types.h threads.c: Fix build bustage.
21058
21059         * threads.c: Use a union for long<->double conversions.
21060
21061         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
21062         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
21063
21064         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
21065         containing the checkpoint call with NOT_TAKEN.
21066         
21067         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
21068         checkpoint before pushing the arguments, so they won't have to be
21069         spilled to stack.
21070
21071 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21072
21073         * domain.c, assembly.c, domain-internals.h: make some data
21074         const and relocation-free.
21075
21076 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
21077
21078         * object.c, appdomain.c, class-internals.h: introduce the
21079         MonoClassRuntimeInfo structure to hold the info needed to
21080         use a class at runtime. Made mono_class_vtable() lock-free
21081         for all the appdomains.
21082
21083 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
21084
21085         * metadata-internals.h, image.c: introduce a per-image mempool to
21086         be used for memory that has the same lifetime as the image.
21087
21088 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
21089
21090         * domain.c: In mono_init_internal(), instead of selecting the first
21091         runtime version supported by an executable, get a list of all
21092         supported versions and select the one for which an mscorlib exists
21093         (since even if the runtime supports a given version, it doesn't mean
21094         that the framework for that version is installed).
21095         Modified get_runtimes_from_exe to support this behavior.
21096         In supported_runtimes, added information about additional system
21097         assembly versions.
21098         
21099         * assembly.c: Added support for more than one system assembly version
21100         per runtime version. Updated the assembly list.
21101         In mono_assembly_remap_version, removed the initial version check,
21102         since we don't know to which version we need to compare until we
21103         get the version set on which the assembly is based.
21104         Moved the code for loading corlib into the new method
21105         mono_assembly_load_corlib(), so it can be used by the initialization
21106         code.
21107         
21108         * domain-internals.h: Updated data structures and added declaration
21109         for mono_assembly_load_corlib.
21110
21111 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21112
21113         * reflection.c (resolve_object): Fix the creation of the signature in 
21114         the SignatureHelper case.
21115
21116         * assembly.c (mono_assembly_remap_version): Fix binary search.
21117         
21118 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
21119  
21120         * class.c: Added inheritance check when a method is overloaded (from a
21121         virtual method or when implementing an interface) and when a class is
21122         inherited. Added functions to set a failure for a class and to 
21123         retreive the exception from a failure.
21124         * class-internals.h: Added fields to MonoClass to keep the exception
21125         information status for inheritance (or other exceptions) to be thrown
21126         later (i.e. not at load time).
21127         * object.c: Throw the inheritance SecurityException when a type is to 
21128         be created with either class or method inheritance violations.
21129         * reflection.c|h: Fix when getting declsec from a class. Removed 
21130         unrequired code for class. Improved sanity in parameter naming.
21131         * security-manager.c|h: Added functions to check for class and method
21132         inheritance.
21133
21134 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21135
21136         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
21137         and has_finalize in dynamic types as well.
21138
21139 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
21140
21141         * culture-info-table.h : fixed currency format for en-GB (and so on).
21142
21143 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
21144
21145         * gc.c: ensure the GC handles never have 0 as a value.
21146
21147 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21148
21149         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
21150         a pointer to a struct to unmanaged code. Fixes #72625.
21151
21152 2005-02-16  Martin Baulig  <martin@ximian.com>
21153
21154         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
21155
21156 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21157
21158         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
21159
21160 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21161
21162         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
21163
21164         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
21165         UnmanagedFunctionPointerAttribute, use it for determining calling convention
21166         etc. Fixes #71471.
21167
21168         * reflection.c (mono_custom_attrs_get_attr): New helper function.
21169
21170         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
21171
21172 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
21173
21174         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
21175         changes to make the current context a field in MonoThread.
21176
21177 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21178
21179         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
21180         the last change.
21181         
21182         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
21183         extracted from mono_marshal_get_native_wrapper.
21184
21185         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
21186         to create wrappers around native functions.
21187
21188         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
21189         delegates for arbitrary function pointers. Fixes #71472.
21190
21191 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
21192
21193         * threads.c: cleaned up the code a little.
21194
21195 2005-02-15  Martin Baulig  <martin@ximian.com>
21196
21197         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
21198         the data table.
21199
21200         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
21201         allocate larger chunks if needed.
21202
21203 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
21204
21205         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
21206         in by mistake.
21207
21208 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
21209
21210         * domain.c: keep the domains in an array and ensure the domain ids
21211         are kept small, so they can be used as indexes to domain-specific data
21212         with a small memory overhead.
21213
21214 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
21215
21216         * icall.c: Handle byref types in Type icalls. Fixes #72544.
21217
21218 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
21219
21220         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
21221
21222 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
21223
21224         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
21225
21226         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
21227         values.
21228
21229         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
21230         
21231 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
21232
21233         * domain-internals.h: add the hashtable here.
21234
21235         * class-internals.h: Remove `info' from MonoMethod
21236
21237         * domain.c: Add a new hashtable, jit_trampoline_hash
21238
21239 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
21240
21241         * object.c: don't set the value of static fields
21242         (fixes bug#72494).
21243
21244 2005-02-11  Martin Baulig  <martin@ximian.com>
21245
21246         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
21247         (mono_debug_add_method): Silently ignore the method if it's too big.
21248         (mono_debug_add_type): Likewise.
21249
21250 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
21251
21252         * threads.c, appdomain.c: remove #ifdefs from the code.
21253
21254 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
21255
21256         * metadata-internals.h: Added flags to MonoAssembly to cache the most
21257         common security informations. This allows us to stay in unmanaged code
21258         when doing LinkDemand and it's special cases (except for the first 
21259         time for initialization). The flags a very much used with --security.
21260         * reflection.c|h: Added code to get declarative security attributes 
21261         for LinkDemand and InheritanceDemand. This required to refactor the
21262         existing code for Demand.
21263         * security-manager.c|h: Added new method fields for the special cases
21264         of LinkDemand.
21265
21266 2005-02-10  Martin Baulig  <martin@ximian.com>
21267
21268         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
21269         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
21270
21271 2005-02-10  Martin Baulig  <martin@ximian.com>
21272
21273         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
21274         debugging code; this is almost a complete rewrite.
21275
21276         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
21277
21278 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21279
21280         * domain.c, object.h: expose mono_string_equal () and 
21281         mono_string_hash ().
21282         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
21283         it's implemented in managed code.
21284
21285 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21286
21287         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
21288         lo leak objects between appdomains.
21289
21290 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21291
21292         * assembly.c: old compilers compilation fix from 
21293         robertj@gmx.net (Robert Jordan).
21294
21295 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
21296
21297         * class-internals.h: Little reminder for the future.
21298
21299         * debug-helpers.c: Fix up wrapper_type_names
21300
21301 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21302
21303         * image.c, metadata-internals.h: when loading an image from a file,
21304         mmap all of it and use the same codepaths as when using a
21305         in-memory image: the code is simpler and we use less memory
21306         (both writable and readonly).
21307
21308 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
21309
21310         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
21311         API to alloc runtime data structures that need to be tracked by the
21312         GC and contain pointers.
21313         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
21314         make the code more readable and eventually use a different GC.
21315
21316 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
21317
21318         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
21319         for out arguments.
21320         
21321 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
21322
21323         * object.c: In release_type_locks(), don't release the cctor lock
21324         if it has already been released. This fixes a crash in the
21325         thread5 test.
21326
21327 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21328
21329         * gc.c, marshal.c, icall.c: register a delegate for finalization
21330         only when the native function pointer has been allocated for it.
21331
21332 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21333
21334         * object.c: cleaned up some code, allocate objects that are
21335         pointer free with the atomic malloc variant. Allocate memory
21336         for static data from the mempool if it's pointer-free.
21337         Allocate the bounds array at the end of the array data, when needed.
21338         * object-internals.h, object.h: move a private function in a private
21339         header.
21340         * class.c: handle missing case in tracking references in fields.
21341
21342 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
21343
21344         * class.c, class-internals.h: keep track if a type has
21345         reference fields in either the instance or static fields.
21346
21347 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
21348
21349         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
21350         and renamed to MonoRuntimeInfo. Added fields to store the expected
21351         framework assembly version. Changed mono_get_framework_version and
21352         mono_get_runtime_version for a single mono_get_runtime_info method.
21353         
21354         * assembly.c: Added method to remap system assembly versions to the
21355         current executing runtime version. Removed old mapping code.
21356         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
21357         
21358         * icall.c, reflection.c: Track api changes.
21359
21360 2005-02-06  Miguel de Icaza  <miguel@novell.com>
21361
21362         * loader.c (method_from_memberref): Improve error reporting,
21363         produce the class name instead of the typeref/typedef index. 
21364
21365 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
21366
21367         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
21368
21369 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21370
21371         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
21372         stdcall and charset name mangling.  Reorganize the code and add
21373         some tracing stuff.
21374
21375 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
21376
21377         * monodiet.c: More iters!
21378
21379         * marshal.c: Iter usage.
21380
21381         * icall.c: Iter usage.
21382
21383         * object.c: Use iters.
21384
21385         * debug-helpers.c: More iters
21386
21387 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21388
21389         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
21390         under win32.
21391
21392 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
21393
21394         * mono-debug-debugger.c: use iters
21395
21396         * class.c, class-internals.h: mono_class_setup_events is static
21397         now
21398
21399         * All callers: use iters
21400
21401 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21402
21403         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
21404         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
21405
21406 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
21407
21408         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
21409
21410         * marshal.h: Add prototypes for ldfld/stfld_remote.
21411
21412         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
21413         this is called during startup.
21414         
21415 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
21416
21417         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
21418         MonoThreadsSync struct private in monitor.c. Changed the way
21419         MonoThreadsSync is allocated so it's faster and there is no
21420         need to keep track of it with a finalizer and it uses less memory.
21421         This also finally allows us to allocate mono objects as ptrfree when
21422         there are no reference fields.
21423
21424 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
21425
21426         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
21427         disappearing link to the GC interface and use them to simplify
21428         the gchandles code.
21429
21430 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
21431
21432         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
21433         stfld_remote which call mono_load/store_field_new. This allows methods
21434         calling ldfld/stfld wrappers to be AOTed.
21435
21436         * console-io.c: Include sys/filio.h under solaris.
21437         
21438         * console-io.c: Include curses.h if needed correctly.
21439
21440 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
21441         
21442         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
21443         method->klass as well.
21444
21445         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
21446
21447         * class.c (mono_class_init): Switch on lazy initialization of 
21448         methods.
21449
21450         * class.c (mono_class_get_finalizer): Handle the case when the 
21451         finalizer is inherited.
21452
21453 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21454
21455         * console-io.c: <curses.h> is needed by term.h on solaris.
21456
21457 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
21458
21459         * icall.c, class-internals.h, monodiet.c, class.c: Remove
21460         mono_class_setup_properties where possible. Remove this ftn from
21461         the header file, and make it static.
21462
21463 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
21464
21465         * loader.c: Add missing setup_... call.
21466
21467         * class.c: Add missing setup_... calls.
21468
21469         * class.c (mono_class_init): Switch on lazy initialization of 
21470         the generic vtable.
21471         
21472         * class.c (mono_class_init): Fix generics broken by the recent changes.
21473
21474         * monodiet.c (handle_type): Add missing setup_... calls.
21475
21476         * class.c: Back out garbage in previous patch.
21477         
21478         * class.c: Add missing setup_... calls.
21479
21480         * class.c (mono_class_get_method_from_name_flags): Avoid calling
21481         mono_class_setup_methods () if possible.
21482
21483         * class-internals.h (MonoClass): Add 'has_cctor' flag.
21484
21485         * class-internals.h (MonoCachedClassInfo): New structure.
21486
21487         * class.c: Initialize properties and events fields of MonoClass lazily.
21488
21489         * class.c: Add infrastructure for lazily initializing the methods and
21490         vtable fields of MonoClass. Not yet used.
21491
21492         * class.c (mono_class_get_finalizer): New helper function.
21493
21494         * class.c: Add infrastructure for loading some class related data from
21495         an AOT file.
21496
21497         * object.c: Add infrastructure for initializing the vtable from data
21498         in the AOT file.
21499
21500         * gc.c (run_finalize): Use mono_class_get_finalizer ().
21501
21502         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
21503         appropriate initialization function before accessing parts of the
21504         MonoClass structure.
21505
21506         * marshal.c: Fix warnings.
21507         
21508         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
21509
21510         * mono-debug-debugger.c (get_exception_message): Use 
21511         mono_class_get_method_from_name_flags ().
21512
21513 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
21514
21515         * reflection.c, appdomain.c: Replace a few manual searches that
21516         Zoltan missed. (Paolo approved this part of my initial patch).
21517
21518 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
21519
21520         * profiler.c: disable recording statistical events at report time.
21521
21522 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21523
21524         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
21525         to byteswap arrays of enum values, too (bug #72080).
21526
21527 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
21528
21529         * appdomain.c (set_domain_search_path): Allow this to be called if
21530         domain->setup is not yet set.
21531
21532         * loader.c (mono_method_get_index): New helper function.
21533
21534         * loader.c reflection.c: Use mono_method_get_index ().
21535
21536         * class.c (mono_class_get_method_from_name_flags): New helper method.
21537
21538         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
21539         this.
21540
21541         * class.c (mono_class_get_cctor): New helper method.
21542
21543         * string-icalls.c object.c class.c marshal.c reflection.c: Use
21544         mono_class_get_method () to look up methods.
21545
21546 2005-02-01  Miguel de Icaza  <miguel@novell.com>
21547
21548         * console-io.c: Fix the build, this should work on Windows.
21549
21550 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
21551
21552         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
21553         be set to null to keep things valid
21554
21555 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21556
21557         * icall.c: added Console 2.0 icalls.
21558         * Makefile.am: added console-io.[ch]
21559         * console-io.[ch]: internal calls for Console 2.0 API.
21560
21561 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21562
21563         * class.c: make sure we consider all the interfaces
21564         when calculating max_interface_id (bug found by
21565         Jeroen Frijters running ikvm).
21566
21567 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
21568
21569         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
21570         valuetype fields to null.
21571
21572         * object.c (set_value): Ditto. Fixes #71669.    
21573
21574 2005-01-31  Martin Baulig  <martin@ximian.com>
21575
21576         * metadata.c (mono_metadata_has_generic_params): New public
21577         function; checks whether something is a generic method.
21578
21579 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
21580
21581         * appdomain.c: fix infinite recursion when adding assemblies.
21582
21583 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
21584
21585         * object.c: Fix small typo to return all items for Environment.
21586         GetCommandLineArgs.
21587
21588 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21589
21590         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
21591         reflection.c: more domain and assembly-unload related fixes
21592         and memory leaks plugs.
21593
21594 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
21595
21596         * 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.
21597
21598 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
21599
21600         * loader.c (mono_method_signature): Make this method lazy
21601         (mono_get_method_from_token): Don't computate the signature here.
21602
21603         Doing this saves quite a bit of memory. I got 90 kb on starting up
21604         monodoc. It should also save some disk reads on startup.
21605
21606         * *: MonoMethod->signature might be NULL now. You *MUST* use
21607         mono_method_signature.
21608
21609 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
21610
21611         * object.c (mono_runtime_get_main_args): Return an array from the
21612         current domain here. Fixes #71938.
21613
21614 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
21615
21616         * monitor.c: formatting changes to comply with the
21617         mono coding style and remove #ifdefs from the code.
21618
21619 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21620
21621         * metadata.c, private.h: remove some unneeded data
21622         and use a more compact representation for table schemas.
21623
21624 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
21625
21626         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
21627         to get a better distribution in hash tables.
21628         * *.c: use mono_aligned_addr_hash() where appropriate.
21629         * assembly.c: make var static.
21630
21631 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
21632
21633         * domain-internals.h: Put MonoJitInfo on a diet.
21634
21635         * domain.c: Fix a warning.
21636
21637 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21638
21639         * gc.c: rework the gc handles code to reuse handles
21640         when freed.
21641
21642 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
21643
21644         * domain.c: fixed long standing bug in mono_string_equal() which
21645         was brought to light with the ldstr changes.
21646
21647 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
21648
21649         * reflection.c: Remove warning by adding missing include for marshal.h
21650
21651 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21652
21653         * domain.c, object.c: change the ldstr_table to hold
21654         MonoString* as keys: makes the runtime isinterned lookup
21655         faster and simplifies memory management.
21656
21657 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
21658  
21659         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
21660         possible to add imperative security checks before calling the icall.
21661         * reflection.c: Return security attributes on the original MonoMethod
21662         (and not the wrapped one). This fix permissions on icalls.
21663
21664 2005-01-25  Dick Porter  <dick@ximian.com>
21665
21666         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
21667         the check for mktime() support actually test the mktime() return
21668         value.  "Fixes" bug 71682, though the output is still different to
21669         MS.
21670
21671 2005-01-25  Martin Baulig  <martin@ximian.com>
21672
21673         * class.c (mono_class_is_assignable_from): Make this work for
21674         generic instances.
21675
21676 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
21677
21678         * marshal.c (mono_string_utf8_to_builder)
21679         (mono_string_builder_to_utf16): We might not have ownership of the
21680         string. In thise case, we need to create a new buffer.
21681
21682         * object-internals.h (mono_stringbuilder_capacity): sb->str might
21683         be null, in which case, use the default capacity.
21684
21685 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21686
21687         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
21688         GC events to the profiler.
21689
21690 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21691
21692         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
21693         if you don't want the GC to run.
21694
21695 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
21696
21697         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
21698         start providing a GC API and keeping different implementations in
21699         their own file.
21700         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
21701
21702 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
21703
21704         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
21705         mmap rather than allocating a huge buffer.
21706         (mono_debug_close_mono_symbol_file): Free the buffer allocated
21707         above.
21708
21709 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
21710
21711         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
21712         and CheckExecutionRights.
21713         * reflection.c|h: Keep the index of the declarative security to be 
21714         used, instead of the pointer, when AOT compiler is used. Also add 
21715         class initialization when requesting demands.
21716         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
21717         CheckExecutionRights. Both properties are now FALSE by default, and
21718         unmodifiable, unless the --security option is used.
21719
21720 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21721
21722         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
21723         reflection.c: properly refcount images and assemblies, many leaks fixed.
21724
21725 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21726
21727         * threadpool.c: increase the timeout for threads in the thread pool to
21728         10s.  Fixes bug #67159.
21729
21730 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
21731
21732         * class-internals.h: Sun's compiler insists on explicit
21733         signed on bit fields to handle then correctly.
21734
21735 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
21736
21737         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
21738         Make the size of the array fit only the number of invalid path
21739         chars that we have.
21740
21741         * class.c (_mono_class_get): Improve the error reporting when a
21742         class referenced is not found, to assist debugging. 
21743
21744 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
21745
21746         * threads.c: fix off-by-one error.
21747         * domain.c: free data allocated in the domain.
21748
21749 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
21750
21751         * reflection.c (mono_method_body_get_object): Fill out exception info
21752         as well.
21753
21754         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
21755         structure.
21756         
21757 2005-01-19  Martin Baulig  <martin@ximian.com>
21758
21759         * loader.c (mono_get_method_constrained): Make this work again.
21760
21761 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
21762
21763         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
21764         guint16 to match the managed side.
21765
21766         * reflection.c (mono_reflection_body_get_object): Fill out local
21767         variables array.
21768
21769         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
21770         as well.
21771
21772         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
21773         'local_var_sig_token'.
21774
21775 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
21776
21777         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
21778         System.Drawing.
21779
21780         * reflection.c (mono_method_body_get_object): Handle abstract and
21781         runtime methods.
21782
21783 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
21784
21785         * marshal.c, loader.c, class-internals.h, reflection.c:
21786         store the emthod data for a wrapper in an array instead of a list.
21787
21788 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
21789
21790         * marshal.c: change the code to allocate memory more
21791         conservatively for method wrappers.
21792
21793 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
21794
21795         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
21796         fields from MonoClass to the marshal info structure where they belong.
21797
21798 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21799
21800         * class.c, object.c, class-internals.h, marshal.c: rearrange
21801         some fields and tweak some types to lower memory usage.
21802
21803 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
21804
21805         * threads.c (signal_thread_state_change): Handle the case when the
21806         target thread is the current thread.
21807
21808         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
21809
21810         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
21811         emit_ptr_to_object_conv. 
21812
21813         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
21814         marshalling. Fixes #71352.
21815
21816 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
21817
21818         * metadata.h, blob.h: move table enum to blob.h so it can be included
21819         in any header.
21820         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
21821         cut the size of MonoImage/MonoDynamicImage.
21822
21823 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
21824
21825         * profiler.c (mono_profiler_install_simple): Fix default arguments.
21826
21827 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
21828
21829         * reflection.c, reflection.h, icall.c: add a function to check
21830         if an attribute type is defined for a metadata object.
21831
21832 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
21833
21834         * object-internals.h: Added some needed fields from StringBuilder class.
21835         * marshal.c: Set the maxCapacity when creating a StringBuilder.
21836
21837 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
21838
21839         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
21840         threads before shutting down the runtime.
21841
21842         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
21843
21844 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21845
21846         * object-internal.h, threads.c: implement stacksize and 
21847         parameterized thread start functionality (requires
21848         matching corlib). Marked broken code for later removal.
21849
21850 2005-01-12  Martin Baulig  <martin@ximian.com>
21851
21852         * class-internals.h (MonoGenericClass): Moved the `initialized'
21853         flag to MonoDynamicGenericClass, removed `init_pending'.
21854         (MonoGenericInst): Added `is_reference' flag.
21855
21856 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
21857
21858         * reflection.c (mono_image_create_pefile): Only set the pe_offset
21859         inside the MSDOS header. Fixes #71201.
21860
21861         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
21862         gc thread.
21863         (mono_domain_finalize): Ditto.
21864
21865 2005-01-12  Martin Baulig  <martin@ximian.com>
21866
21867         * class.c (mono_get_shared_generic_class): Use the cache for
21868         non-dynamic generic classes.
21869
21870         * class-internals.h (mono_class_create_generic_2): Removed
21871         function prototype, this function is now static inside class.c.
21872
21873         * class.c (mono_class_create_generic_2): Made this static, only
21874         call it from mono_class_init() and mono_class_setup_parent().
21875         (collect_implemented_interfaces_aux): Call mono_class_init() on
21876         the interfaces we collect.
21877         (mono_class_setup_vtable): Call mono_class_init (class->parent).
21878
21879 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
21880
21881         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
21882         it a real thread handle.
21883
21884         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
21885         MonoJitExceptionInfo, since each catch clause needs its own variable.
21886         
21887 2005-01-11  Dick Porter  <dick@ximian.com>
21888
21889         * image.c (mono_pe_file_open): New variant on mono_image_open()
21890         that does not set up the CLI metadata; used for FileVersionInfo so
21891         it can get the data for windows binaries too.
21892         
21893         * process.c (process_read_string_block): Don't read off the end of
21894         the StringTable block.
21895
21896         These both fix bug 70766.
21897
21898 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
21899
21900         * gc.c: set some fields to NULL at GC cleanup time.
21901         * threads.c: if we quit the main thread, call exit ().
21902
21903 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
21904
21905         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
21906
21907 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
21908
21909         * threads.h, threads.c, object.c: added accessor and settor for
21910         main_thread. Handle it specially when exiting from it: wait
21911         for other foreground threads to exit.
21912
21913 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
21914
21915         * process.c, verify.c: remove some bloat.
21916
21917 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
21918
21919         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
21920         the calling convention to cdecl under win32.
21921
21922 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
21923
21924         * object.c (mono_object_get_size): New function to get the size of
21925         an object instance.
21926
21927         * profiler.c (simple_allocation): Use above.
21928
21929 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
21930
21931         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
21932         ves_icall_System_AppDomain_getRootDomain (as it's not required to
21933         get an appdomain by it's id and we can't assume the root's id is 0).
21934         * domain-internals.h: Change the function prototype to match.
21935         * icall.c: Change the icall table for AppDomain.
21936
21937 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
21938
21939         * locales.c (string_invariant_compare_char): Only compute
21940         GUnicodeTypes in the case where we need them.  Test for ordinality
21941         first and return if so.
21942
21943         From the commit:
21944
21945                 /*
21946                  * FIXME: here we must use the information from c1type and c2type
21947                  * to find out the proper collation, even on the InvariantCulture, the
21948                  * sorting is not done by computing the unicode values, but their
21949                  * actual sort order.
21950                  */
21951
21952 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
21953
21954         * loader.c: for P/Invoke methods, allow the "Internal" shared
21955         library name to refer to the calling process symbol namespace.
21956
21957 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
21958
21959         * Makefile.am: Add the security manager to the build.
21960         * security-manager.c|h: New. Initialization of the security manager.
21961
21962 2005-01-07  Dick Porter  <dick@ximian.com>
21963
21964         * threads.c: 
21965         * monitor.c: Update thread state during Monitor and WaitHandle
21966         waits.  Fixes bug 71031.
21967
21968 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
21969
21970         * reflection.c (property_encode_signature): Correctly handle when the
21971         property has no methods.
21972
21973 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
21974
21975         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
21976         
21977         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
21978         fields from mb, not rmb. Fixes #71017.
21979
21980         * marshal.c (emit_ptr_to_str_conv): Add support for 
21981         ByValTStr -> string conversion. Fixes #71015.
21982
21983         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
21984
21985         * mempool.c (mono_mempool_contains_addr): New helper function.
21986
21987 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
21988
21989         * metadata.c (mono_metadata_compute_size): Fix size calculation of
21990         HasSematics encoded fields.
21991         
21992         * metadata.c (mono_type_to_unmanaged): Improve error message for 
21993         invalid string marshalling.
21994
21995         * metadata.c: Fix warnings.
21996         
21997 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21998
21999         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
22000         profiler support.
22001
22002 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
22003
22004         * domain.c object.c domain-internals.h: Revert part of r38077 since the
22005         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
22006         tests.
22007
22008 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
22009
22010         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
22011         so methods containing these can be AOTed.
22012
22013 2005-01-03  Martin Baulig  <martin@ximian.com>
22014
22015         * loader.c (find_method): Removed the hack for generic instances.
22016         (method_from_memberref): If our parent is a generic instance, pass
22017         its generic type definition to find_method() and then inflate the
22018         method.
22019         (mono_get_method_constrained): Pass the generic type definition to
22020         find_method() and inflate the method later.
22021
22022         * class-internals.h (MonoStats): Added `generic_class_count'.
22023
22024         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
22025         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
22026
22027         * reflection.c (mono_custom_attrs_from_params): Don't ignore
22028         generic type definitions.
22029
22030 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
22031
22032         * loader.c icall.c: Fix warnings.
22033
22034 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
22035
22036         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
22037         blittable types. Fixes #70864.
22038
22039 2004-12-29  Martin Baulig  <martin@ximian.com>
22040
22041         * icall.c
22042         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
22043
22044         * reflection.c (mono_method_get_object): Create a
22045         "System.Reflection.MonoGenericMethod" for inflated methods; don't
22046         call mono_get_inflated_method().
22047
22048         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
22049
22050 2004-12-27  Martin Baulig  <martin@ximian.com>
22051
22052         * class-internals.h (MonoMethod): Added `is_inflated' flag.
22053         (MonoMethodInflated): Added `inflated' field.
22054
22055         * class.c (mono_class_inflate_generic_method): Don't really
22056         inflate the method here; just set the `is_inflated' flag in the
22057         MonoMethod.
22058         (mono_class_get_inflated_method): Actually inflate the method here
22059         if it's not already inflated; we use the MonoMethodInflated's new
22060         `inflated' field as a cache.
22061
22062 2004-12-26  Martin Baulig  <martin@ximian.com>
22063
22064         * class.c
22065         (inflate_generic_class): Moved some code out of inflate_generic_type().
22066         (mono_class_inflate_generic_method): If we're already inflated,
22067         inflate the context and use the declaring method; ie. make sure
22068         the declaring method of an inflated method is always the generic
22069         method definition.
22070         (mono_class_create_from_typedef): Create
22071         `class->generic_container->context->gclass'.
22072
22073 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
22074
22075         * metadata-internals.h, marshal.c, reflection.c: More
22076         MonoGHashTable->GHashTable.
22077
22078         * domain-internals.h, class.c: Change MonoGHashTable's into
22079         GHashTables for some cases where no gc stuff is used
22080
22081         All users: update apis
22082
22083 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
22084
22085         * metadata.c (builtin_types): Make this `const'. Makes this get
22086         put into the shareable section.
22087         (mono_metadata_init): Casts to make gcc happy.
22088
22089 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
22090
22091         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
22092
22093 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
22094
22095         * icall.c: Added an internal call to retrieve the position and length
22096         of assembly-level declarative security attributes (RequestMinimum, 
22097         RequestOptional and RequestRefuse). This is used by the Assembly class
22098         to re-create the corresponding permission sets.
22099
22100 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
22101
22102         * marshal.c: fix the stelemref wrapper to be type correct
22103         (and faster).
22104
22105 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
22106
22107         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
22108         to do key & 0x7fffffff. Hashtable already does this. It just
22109         results in longer code.
22110
22111 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
22112
22113         * appdomain.c: Bump corlib version.
22114         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
22115         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
22116         * reflection.c|h: Add functions to get declarative security infos
22117         (blob position and length) for assemblies, classes and methods.
22118
22119 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
22120
22121         * reflection.c: sort the constant table (bug #70693).
22122
22123 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
22124
22125         * object-internals.h, threads.c, domain.c: add accessors for
22126         the MonoThread and MonoDomain tls keys.
22127
22128 2004-12-18  Martin Baulig  <martin@ximian.com>
22129
22130         * class.c (inflate_generic_type): If we're inflating a generic
22131         instance, set `ngclass->context->container = context->container';
22132         ie. the container we inflated into.
22133
22134         * metadata.c (mono_metadata_parse_generic_param): Reflect above
22135         inflate_generic_type() changes.
22136
22137 2004-12-17  Martin Baulig  <martin@ximian.com>
22138
22139         * class-internals.h
22140         (MonoGenericClass): Replaced `MonoType *generic_type' with
22141         `MonoClass *generic_class'.  Removed `dynamic_info'; if
22142         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
22143         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
22144
22145 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
22146
22147         * exception.c (mono_exception_from_token): New helper function.
22148
22149 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
22150
22151         * assembly.c (mono_assembly_load_with_partial_name): Call 
22152         mono_assembly_loaded before invoking the preload hooks. Fixes
22153         #70564.
22154
22155         * object-internals.h (MonoThread): Change culture_info and 
22156         ui_culture_info into an array.
22157
22158         * threads.c: Cache culture info objects from more than one appdomain.
22159
22160         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
22161         current UI culture.
22162
22163 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
22164
22165         * threads.h threads.c appdomain.c: Clear the culture_info field of
22166         all threads during unloading if they point to an object in the dying
22167         appdomain.
22168
22169 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
22170
22171         * culture-info.h (TextInfoEntry): New struct
22172         * object-internals.h: sync with managed
22173         * locales.c: fill the `text_info_data' field
22174         * culture-info-tables.h: update
22175
22176 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
22177
22178         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
22179         collector.
22180
22181 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
22182
22183         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
22184         (ves_icall_ModuleBuilder_getMethodToken): Ditto
22185
22186 2004-12-12  Martin Baulig  <martin@ximian.com>
22187
22188         * mono-debug-debugger.c (write_type): If we're an enum and the
22189         builtin types have already been initialized, call mono_class_init().
22190
22191 2004-12-11  Martin Baulig  <martin@ximian.com>
22192
22193         * metadata.c (mono_metadata_load_generic_params): Added
22194         `MonoGenericContainer *parent_container' argument; automatically
22195         compute `container->is_method'; pass the correct owner to
22196         get_constraints().      
22197
22198         * reflection.c (compare_genericparam): Sort the GenericParam table
22199         according to increasing owners. 
22200
22201 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
22202
22203         * profiler.c: allow disabling the default profiler.
22204
22205 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
22206
22207         * decimal.c, icall.c: allow disabling System.Decimal support.
22208
22209 2004-12-09  Marek Safar <marek.safar@seznam.cz>
22210
22211         * reflection.c: Add support for null attribute arguments.
22212
22213 2004-12-09  Martin Baulig  <martin@ximian.com>
22214
22215         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
22216         names to get rid of compiler warnings.
22217
22218 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
22219
22220         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
22221         mono_marshal_load_type_info (). Fixes #69625.
22222         (mono_marshal_get_ptr_to_struct): Likewise.
22223
22224 2004-12-08  Martin Baulig  <martin@ximian.com>
22225
22226         * mono-debug.h: Bumped version number to 47.
22227
22228         * mono-debug-debugger.c
22229         (mono_debugger_event_handler, mono_debugger_event): Take two
22230         guint64 arguments insteed of a gpointer and a guint32.  
22231
22232 2004-12-08  Martin Baulig  <martin@ximian.com>
22233
22234         * debug-mono-symfile.h
22235         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
22236         `address' to `native_offset'.
22237
22238 2004-12-08  Martin Baulig  <martin@ximian.com>
22239
22240         * class.c (mono_class_create_from_typespec): Only inflate if we
22241         either have `context->gclass' or `context->gmethod'.
22242
22243 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
22244
22245         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
22246
22247         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
22248
22249         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
22250
22251         * reflection.c (mono_assembly_get_object): Remove the workaround put
22252         in for the release.
22253         
22254         * appdomain.c: Use the corlib_internal field from MonoAssembly.
22255
22256         * appdomain.c: Bump corlib version.
22257
22258         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
22259         be visible in other appdomains.
22260
22261 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
22262
22263         * threads.c: Interlocked inc and dec for longs were messed up,
22264         use a KISS based impl for this. Fixes 70234
22265
22266 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
22267
22268         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
22269
22270 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
22271
22272         * icall.c: fix to follow policy not to allow struct
22273         arguments in icalls.
22274
22275 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22276
22277         * process.c: make the patch that handles spaces in file paths work
22278         on mono/windows too.
22279
22280 2004-12-06  Martin Baulig  <martin@ximian.com>
22281
22282         * class.c (mono_class_create_generic): Call
22283         mono_class_setup_supertypes() if we're dynamic.
22284         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
22285
22286 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
22287
22288         * object-internals.h: Add new fields to MonoThread.
22289
22290         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
22291
22292         * icall.c threads-types.h threads.c: Add new icalls.
22293
22294         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
22295
22296         * object-internals.h (MonoReflectionAssembly): Sync object layout with
22297         managed side.
22298
22299         * appdomain.c: Bump corlib version.
22300
22301         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
22302         internal assemblies. Fixes #69181.
22303
22304 2004-12-05  Martin Baulig  <martin@ximian.com>
22305
22306         * class.c (mono_class_inflate_generic_signature): Make this a
22307         no-op if `context' is NULL or we don't have any type parameters;
22308         also copy `sentinelpos'.        
22309
22310 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
22311
22312         * image.c: Add unbox_wrapper_cache.
22313
22314         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
22315
22316         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
22317         function generator.
22318         
22319         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
22320         Fixes #70173.
22321
22322         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
22323         
22324 2004-12-04  Martin Baulig  <martin@ximian.com>
22325
22326         * loader.c (mono_method_get_signature_full): New public function;
22327         like mono_method_get_signature(), but with an additional
22328         `MonoGenericContext *' argument.
22329
22330         * class.c (mono_class_inflate_generic_signature): Formerly known
22331         as inflate_generic_signature(); make this public.
22332
22333 2004-12-04  Martin Baulig  <martin@ximian.com>
22334
22335         * metadata.c
22336         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
22337         instead of a `MonoGenericContainer *'.  
22338         (mono_metadata_parse_array_full): Likewise.
22339         (mono_metadata_parse_signature_full): Likewise.
22340         (mono_metadata_parse_method_signature_full): Likewise.
22341         (mono_metadata_parse_generic_inst): Likewise.
22342         (mono_metadata_parse_generic_param): Likewise.
22343         (mono_metadata_parse_mh_full): Likewise.
22344         (mono_type_create_from_typespec_full): Likewise.
22345
22346 2004-12-03  Martin Baulig  <martin@ximian.com>
22347
22348         * class-internals.h (MonoGenericContainer): Replaced the
22349         `MonoGenericContext * pointer with a `MonoGenericContext'
22350         structure and made it the first element.
22351
22352 2004-12-03  Martin Baulig  <martin@ximian.com>
22353
22354         * class.c
22355         (inflate_generic_type): Set the `context->container' when creating
22356         a new MonoGenericContext.
22357         (mono_class_inflate_generic_method): Likewise.
22358         (mono_class_create_from_typespec): Just use `context->container'
22359         to get the container.
22360
22361         * loader.c (method_from_methodspec): Set `context->parent' from
22362         `context->container' - and if that's a method container, use its
22363         parent.  Also set the `context->container' when creating a new
22364         MonoGenericContext.
22365         (mono_get_method_from_token): Use just `context->container' to get
22366         the container.
22367
22368         * metadata.c (do_mono_metadata_parse_generic_class): Also set
22369         `gclass->context->container'.
22370
22371         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
22372         the `context->container' when creating a new MonoGenericContext.
22373
22374 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
22375
22376         * reflection.c (compare_genericparam): Sort params with identical
22377         owner by their number. Fixes gen-111 on sparc.
22378
22379 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
22380
22381         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
22382         around the domain changes.
22383
22384         * appdomain.c (mono_domain_unload): Handle the case when the thread
22385         calling Unload is itself being aborted during unloading. Fixes #70022.
22386
22387         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
22388
22389         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
22390         checkpoint_func as an icall so it gets a wrapper.
22391         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
22392         in the cross-appdomain wrappers too.
22393
22394         * threads.c (mono_thread_has_appdomain_ref): Make this public.
22395
22396         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
22397
22398         * reflection.c: Fix some memory leaks.
22399         
22400 2004-12-02  Martin Baulig  <martin@ximian.com>
22401
22402         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
22403
22404         * metadata.c (generic_class_cache): New static hashtable.
22405         (mono_metadata_lookup_generic_class): New public method.
22406
22407 2004-12-02  Martin Baulig  <martin@ximian.com>
22408
22409         * class.c (mono_class_create_from_typedef): Call
22410         mono_class_setup_parent() and mono_class_create_mono_type() before
22411         parsing the interfaces.
22412
22413 2004-12-02  Martin Baulig  <martin@ximian.com>
22414
22415         * metadata.c (generic_inst_cache): New static hashtable.
22416         (mono_metadata_lookup_generic_inst): New public function.
22417         (mono_metadata_inflate_generic_inst): New public function.
22418         (mono_metadata_parse_generic_inst): New public function.
22419         (do_mono_metadata_parse_generic_class): Use the new
22420         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
22421         since this'll also use the cache.
22422
22423         * reflection.c (mono_reflection_bind_generic_method_parameters):
22424         Use mono_metadata_lookup_generic_inst() to use the new cache.
22425
22426         * class.c (inflate_mono_type): Use
22427         mono_metadata_inflate_generic_inst() to inflate a generic
22428         instance; this'll also use the new cache.
22429
22430         * loader.c (method_from_methodspec): Use
22431         mono_metadata_parse_generic_inst() and
22432         mono_metadata_inflate_generic_inst() rather than parsing it
22433         manually, so we can use the new cache.
22434
22435 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
22436
22437         * threads.c (wait_for_tids): Do not incorrectly free threads when 
22438         the wait times out.
22439
22440 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
22441
22442         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
22443         iter->args based on whether parameters are passed in registers (i.e.
22444         MONO_ARCH_REGPARMS is defined)
22445
22446 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
22447
22448         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
22449         the exception message. Fixes #70070.
22450         (method_from_methodspec): Fix warnings.
22451
22452 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22453
22454         * process.c: (complete_path) return the path quoted
22455
22456 2004-12-01  Martin Baulig  <martin@ximian.com>
22457
22458         * class-internals.h (MonoGenericInst): New structure.
22459         (MonoGenericClass): Replaced `type_argc', `type_argv' and
22460         `is_open' with `MonoGenericInst *inst'.
22461         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
22462         `is_open' with `MonoGenericInst *inst'.
22463
22464 2004-11-30  Martin Baulig  <martin@ximian.com>
22465
22466         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
22467
22468         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
22469         to `generic_class_cache'.
22470
22471         * metadata.c
22472         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
22473         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
22474         (mono_generic_inst_is_valuetype): Renamed to
22475         mono_generic_class_is_valuetype().
22476
22477         * class-internals.h
22478         (MonoGenericInst): Renamed to MonoGenericClass.
22479         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
22480         (MonoClass): Renamed `generic_inst' to `generic_class'.
22481         (MonoGenericContext): Renamed `ginst' to `gclass'.
22482
22483         * object-internals.h
22484         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
22485
22486         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
22487         mono_reflection_generic_class_initialize().
22488
22489         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
22490         now known as "System.Reflection.MonoGenericClass".
22491         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
22492
22493 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
22494
22495         * class-internals.h: Added a flag field to MonoClass to cache the
22496         declarative security attributes actions associated with the class.
22497         * domain-internals.h: Added booleans to MonoJitInfo to cache the
22498         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
22499         applicable to the JITted method.
22500         * reflection.c|h: Added functions to extract (as flags) which security
22501         actions are available (declaratively) for a method, class or assembly.
22502         * metadata.c|h: Added functions to search the declarative security
22503         table in the metadata.
22504         
22505 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
22506
22507         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
22508         EXPORTEDTYPES are already in the class name cache, so there is no
22509         need to add extra code here to look at them. Just removes a bit of
22510         cruft.
22511
22512         (ves_icall_System_Environment_get_TickCount): No need for #if
22513         WINDOWS. We already have the code in io-layer.
22514
22515 2004-11-28  Martin Baulig  <martin@ximian.com>
22516
22517         * loader.c
22518         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
22519         Fixes gen-112.cs.
22520
22521 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
22522
22523         * assembly.c (do_mono_assembly_open): Instead of having a
22524         conditional WITH_BUNDLE, incorporate support for bundles here, by
22525         having a global `bundles' variable holding a pointer to the actual
22526         bundles. 
22527
22528         (mono_register_bundled_assemblies): New API call used by the
22529         bundle code. 
22530
22531         See mkbundle.1 for details.
22532         
22533 2004-11-27  Martin Baulig  <martin@ximian.com>
22534
22535         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
22536         the vtable for generic methods.
22537
22538 2004-11-26  Martin Baulig  <martin@ximian.com>
22539
22540         * metadata.c
22541         (mono_metadata_generic_method_hash): New public function.
22542         (mono_metadata_generic_method_equal): Likewise.
22543
22544         * class-internals.h
22545         (MonoGenericContainer): Added `GHashTable *method_hash'.
22546
22547         * reflection.c (ReflectionMethodBuilder): Added
22548         `MonoGenericContainer *generic_container'.
22549         (reflection_methodbuilder_to_mono_method): Don't create a new
22550         MonoGenericContainer each time we're called.
22551         (mono_reflection_bind_generic_method_parameters): Use
22552         `container->method_hash' to cache the results so we don't create a
22553         different method if we're called several times with the same
22554         arguments.
22555
22556         * loader.c (method_from_methodspec): Use the new
22557         `container->method_hash' here, too.
22558
22559 2004-11-26  Martin Baulig  <martin@ximian.com>
22560
22561         * class.c (inflate_generic_signature): Correctly compute
22562         `res->has_type_parameters'.
22563         (mono_class_vtable): Use the `has_type_parameters' flag to
22564         determine whether we're a generic method.
22565
22566         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
22567
22568 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
22569
22570         * object.c (mono_runtime_run_main): Fix a small memory leak.
22571
22572 2004-11-25  Martin Baulig  <martin@ximian.com>
22573
22574         * class.c (set_generic_param_owner): Fixed the loop.
22575
22576 2004-11-25  Martin Baulig  <martin@ximian.com>
22577
22578         * object.c (mono_class_vtable): Don't create any JIT wrappers for
22579         generic methods.
22580
22581 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
22582
22583         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
22584         names. Fixes #69787.
22585
22586 2004-11-24  Martin Baulig  <martin@ximian.com>
22587
22588         * class.c (mono_class_create_generic_2): If we don't have a
22589         `ginst->parent', inflate `gklass->parent' to get our parent.
22590
22591 2004-11-24  Martin Baulig  <martin@ximian.com>
22592
22593         * reflection.c (compare_genericparam): Correctly sort the
22594         GenericParam table; fixes #69779.
22595
22596 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
22597
22598         * reflection.c: When writing a PE file, don't create a huge
22599         buffer in memory. Just write the arrays we have to the file.
22600         This reduces memory usage.
22601
22602         * metadata-internals.h: MonoDynamicStream pefile is no longer used
22603         globally.
22604
22605 2004-11-17  Martin Baulig  <martin@ximian.com>
22606
22607         * class.c (mono_class_init): Don't setup `class->parent' for
22608         dynamic instances; moved this to mono_class_generic_2().
22609         (mono_class_create_generic): Also set `klass->inited' for dynamic
22610         generic instances.
22611         (mono_class_create_generic_2): Don't do anything for dynamic
22612         generic instances.  Set `klass->parent' here and also call
22613         mono_class_setup_parent() here. 
22614
22615         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
22616         `MonoType *parent' argument; set `ginst->parent' before calling
22617         mono_class_create_generic_2(), so we set the correct parent.
22618
22619 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
22620
22621         * reflection.c: allow getting attributes from ModuleBuilder
22622         (used by ikvm).
22623
22624 2004-11-17  Martin Baulig  <martin@ximian.com>
22625
22626         * class.c (mono_class_create_from_typedef): If a type parameter is
22627         inherited from an outer class, set its owner to that class.
22628
22629 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
22630
22631         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
22632           for (int*) written size. This fixes bug #69592.
22633
22634 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
22635
22636         * icall.c: Added IsAuthenticodePresnet internal call.
22637         * image.c|h: New function that check a MonoImage for an Authenticode
22638         signature in the certificate PE data directory.
22639         * security.c|h: New internal call to ask the runtime if an 
22640         Authenticode signature seems referenced in the PE header.
22641
22642 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
22643
22644         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
22645
22646         * reflection.c (mono_image_create_pefile): Free the assembly streams
22647         after writing out the assembly file.
22648
22649         * object.c (mono_runtime_run_main): Fix small memory leak.
22650
22651         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
22652         property access modifiers. Fixes #69389.
22653
22654 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
22655
22656         * domain.c, object.c, object-internals.h, domain-internals.h,
22657         object.h, marshal.c: keep dynamic code info per domain.
22658
22659 2004-11-15  Martin Baulig  <martin@ximian.com>
22660
22661         * class.c (mono_type_get_name_recurse): Put type arguments in
22662         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
22663         see bug #68387.
22664
22665 2004-11-15  Martin Baulig  <martin@ximian.com>
22666
22667         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
22668         (mono_class_setup_vtable): When computing `the_cname' for a
22669         generic instance, don't include the namespace since we'd otherwise
22670         add it twice.
22671
22672 2004-11-15  Martin Baulig  <martin@ximian.com>
22673
22674         * class.c (mono_class_create_generic): Changed return type to void.
22675         (mono_class_create_generic_2): New public function; setup
22676         `class->method', `class->field' and `class->interfaces' here
22677         instead of in mono_class_init().
22678
22679         * class.h (mono_class_create_generic): Moved to class-internals.h.
22680
22681 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
22682
22683         * reflection.c (mono_image_create_pefile): take a file HANDLE.
22684         rather than writing to memory, write to this file. Right now,
22685         we are just writting into a buffer, and copying that. However
22686         we can avoid the buffer later.
22687
22688         (mono_dynamic_stream_reset): new function
22689
22690         * icall.c, object-internals.h: update for the above.
22691
22692 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
22693
22694         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
22695         have been using gc'd memory. First it is slower, unlikely
22696         the comment in the source code said, secondly, it increases
22697         our footprint to do it in the gc.
22698
22699         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
22700         the method so that it does not have to copy to managed code.
22701
22702 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
22703
22704         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
22705
22706 2004-11-12  Martin Baulig  <martin@localhost>
22707
22708         * reflection.c (mono_image_create_token): Allow generic method
22709         definitions here, since they may appear in an `.override'; see
22710         gen-98/gen-99 for an example.
22711
22712 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
22713
22714         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
22715         #69365.
22716
22717         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
22718         descriptive.
22719
22720 2004-11-11  Martin Baulig  <martin@ximian.com>
22721
22722         * class.c (mono_class_setup_vtable): In an explicit interface
22723         implementation, the method name now includes the arity.
22724
22725 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
22726
22727         * object.c (mono_array_full_copy): Fix warning.
22728
22729 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
22730
22731         * appdomain.c: Removed look_for_method_by_name(). Use the new method
22732         mono_class_get_method_from_name() instead.
22733         
22734         * class-internals.h: Added two new types of wrappers. 
22735         Added MonoRemotingTarget enum. Added new trampoline function type, which
22736         takes an additional MonoRemotingTarget value as parameter, so it is
22737         possible to request a trampoline for a specific target.
22738         
22739         * class.c: Added new mono_class_get_method_from_name() method.
22740         
22741         * class.h: In MonoRemoteClass, we can have now to vtables, one for
22742         general remoting sinks and one specific for cross domain calls.
22743         
22744         * debug-helpers.c: Added new wrapper names.
22745         
22746         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
22747         of a remote class.
22748         
22749         * image.c: Porperly delete value objects form the remoting invoke hashtable.
22750         
22751         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
22752         with several other methods (mono_marshal_get_xappdomain_dispatch,
22753         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
22754         and others) can generate a fast remoting wrapper for cross domain calls.
22755         More information can be found in docs/remoting.
22756         Other changes: Removed mono_find_method_by_name, and used
22757         mono_class_get_method_from_name instead.
22758         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
22759         is stored in the remoting invoke hashtable.
22760         
22761         * marshal.h: published the new method for getting the xdomain wrapper,
22762         and also added a method for getting the adequate wrapper for a given
22763         method and target.
22764         
22765         * object-internals.h, object.c: Added a couple of methods for capying and
22766         cloning arrays.
22767         Modified mono_install_remoting_trampoline, which takes the new remoting
22768         trampoline that has a remoting target as parameter.
22769         mono_class_proxy_vtable now also takes a remoting target as parameter, and
22770         will return the most suitable vtable for the target.
22771         Added mono_remote_class_vtable, which returns the vtable of a remote class
22772         (which can be the normal remoting vtable or the xdomain vtable).
22773         
22774         * threads.c: the xdomain invoke and dispatch wrappers must also be
22775         protected against interruptions.
22776
22777 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22778
22779         * icall.c: use memmove in BlockCopyInternal when the source and
22780         destination arrays are the same.
22781
22782 2004-11-09  Martin Baulig  <martin@ximian.com>
22783
22784         * class-internals.h (MonoGenericContainer): Removed `method' and
22785         `signature', replaced them with `is_method' and `is_signature'
22786         flags.  Added `context'.
22787
22788         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
22789         instead of a `MonoGenericContainer *'.
22790
22791         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
22792         for dynamic type parameters.
22793         (mono_metadata_load_generic_params): Setup `container->context'.
22794
22795         * reflection.c (mono_reflection_setup_generic_class): Setup
22796         `tb->generic_container->context'.
22797         (do_mono_reflection_bind_generic_parameters): Use
22798         mono_class_inflate_generic_type() to correctly inflate types,
22799         rather than using our own hack just for MONO_TYPE_VAR.
22800
22801 2004-11-09  Martin Baulig  <martin@ximian.com>
22802
22803         * class.c (mono_class_inflate_generic_method): Small fix; don't
22804         crash here.
22805
22806         * icall.c
22807         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
22808         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
22809         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
22810         (ves_icall_Type_BindGenericParameters): Likewise.
22811         (ves_icall_Type_get_IsGenericInstance): Likewise.
22812         (ves_icall_Type_GetGenericParameterPosition): Likewise.
22813         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
22814         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
22815         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
22816
22817 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
22818
22819         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
22820         assembly versions and public key tokens. Fixes #69113.
22821
22822 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
22823
22824         * metadata.c: fix bug introduced with the type cache changes
22825         on 2004-11-06.
22826
22827 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
22828
22829         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
22830         the MonoClass pointer instead of the token in exception clauses.
22831         * reflection.c: updates for the above and make the code not depend
22832         on the structure of MonoExceptionClause.
22833
22834 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
22835
22836         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
22837         Add support for dynamic assemblies. Fixes #69114.
22838
22839         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
22840
22841 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
22842
22843         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
22844         since most only those methods use it. the code member of
22845         MonoMethodPInvoke was dead, so that can be removed too. Also,
22846         remove inline_count (again, not used), and move slot so that it
22847         can share bits with some other flags. This saves 8 bytes in the
22848         structure and gives us about 50 kb back for mcs helloworld.cs
22849
22850         * *.[ch]: Do naming changes for the above.
22851
22852         * loader.c (mono_method_get_header): Lazily init the header
22853         on first access.
22854         (mono_get_method_from_token): don't init the header here
22855         (mono_free_method): the header may never be allocated
22856
22857         Overall, this saves 150 kb of unmanaged allocations
22858         for mcs helloworld.cs. That accounts for 10% of the unmanaged
22859         memory at runtime.
22860         
22861         * loader.c, loader.h (mono_method_get_header): new accessor.
22862
22863         * *.[ch]: use the above method. Prepares us to lazily load
22864         the header.
22865
22866         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
22867         three warnings, which are actual bugs (see 69206).
22868
22869         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
22870         unused. Saves a cool 4 bytes / method.
22871
22872 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
22873
22874         * metadata.c (builtin_types): Add types for System.Object here.
22875         (mono_metadata_parse_type_full): Cache MonoType*'s that are
22876         for a class or valuetype from klass->this_arg or klass->byval_arg.
22877
22878         On mcs for a hello world, this gets us down from 21836 MonoType's
22879         to 14560.
22880
22881         (mono_metadata_free_type): Account for the above change.
22882
22883 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
22884
22885         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
22886         exception instead of asserting if name is null.
22887         (ves_icall_System_AppDomain_GetData): Ditto.
22888
22889 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
22890
22891         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
22892         EnumBuilder.
22893
22894         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
22895         Return NULL when the domain does not have entry_assembly set.
22896
22897         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
22898         Add a 'resource_modules' argument.
22899         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
22900
22901         * reflection.c (mono_reflection_create_runtime_class): Move setting
22902         of wastypebuilder here, so mono_get_type_object () returns a MonoType
22903         for enums too.
22904
22905         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
22906         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
22907         Throw an ArgumentNullException if 'ptr' is null.
22908
22909         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
22910         assemblies here. Fixes #69020.
22911
22912 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
22913
22914         * reflection.c (build_compressed_metadata): Fix the previous patch for
22915         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
22916         the stack.
22917
22918 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
22919
22920         * assembly.c (mono_assembly_names_equal): Allow a match if one of
22921         the cultures is false. Fixes #69090.
22922
22923         * reflection.c (build_compressed_metadata): Fix invalid memory read 
22924         detected by valgrind.
22925         
22926         * reflection.c (mono_reflection_get_type): Avoid triggering a 
22927         TypeResolve multiple times for the same type. Fixes #65577.
22928
22929 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
22930
22931         * marshal.c: Avoid using ldftn to call managed functions. It is
22932         much slower than just a call.
22933
22934         * reflection.c (mono_module_get_object): free the basename we
22935         allocate here from glib.
22936         
22937         * reflection.c (ensure_runtime_vtable): make sure to free
22938         overrides.  Also, we were allocating an array of MonoMethod not an
22939         array of MonoMethod*.
22940
22941         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
22942
22943         * image.c (mono_image_close): free image->guid here.
22944
22945 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
22946
22947         * reflection.c: Fix some spec conformance issues with the PE file
22948         structures so mcs compiled apps run on the Net 2.0 beta.
22949
22950 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
22951
22952         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
22953         Implement this. Fixes #67264.
22954
22955         * debug-helpers.h debug-helpers.c marshal.c: Move 
22956         mono_find_method_by_name to debug-helpers.c.
22957
22958 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
22959
22960         * object.c (mono_release_type_locks): type_initialization_hash is
22961         a GHashTable.
22962
22963         * reflection.c object.c object-internals.h: Fix warnings.
22964
22965         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
22966         without accessors. Fixes #61561.
22967
22968         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
22969         application base from the root domain if not set. Fixes #65641.
22970         (mono_runtime_init): Fix warning.
22971
22972 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22973
22974         * appdomain.c: call mono_thread_pool_init.
22975         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
22976         of worker threads based on the number of CPUs and the environment
22977         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
22978         for non-windows (windows) systems.
22979
22980 2004-10-27  Chris Toshok  <toshok@ximian.com>
22981
22982         * mono-debug-debugger.c (write_class): don't call mono_class_init
22983         here, as even with the check for (!klass->init_pending), we get
22984         into a situation where we're hitting cycles in class
22985         initialization.  Fixes #68816.
22986
22987 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
22988
22989         * image.c: Avoid overwriting values in the loaded_images_hash when an
22990         assembly is loaded multiple times. Fixes #61152.
22991
22992         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
22993         so multiple satellite assemblies for the same name can be loaded.
22994         Fixes #68259.
22995
22996         * mono_domain_assembly_preload: Actually return the loaded assembly, 
22997         not NULL.
22998
22999         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
23000         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
23001
23002         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
23003         pending finalizers are not invoked after the appdomain has been 
23004         unloaded. Fixes #67862.
23005
23006 2004-10-22  Martin Baulig  <martin@ximian.com>
23007
23008         * mono-debug-debugger.c
23009         (mono_debugger_runtime_invoke): Don't box valuetypes.
23010
23011 2004-10-22  Chris Toshok  <toshok@ximian.com>
23012
23013         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
23014         don't hide private methods.
23015
23016 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
23017
23018         * icall.c: Allows the runtime to "share" (when known) the public key
23019         token of an assembly. This avoid the need to recalculate the token 
23020         (from the public key) in managed code.
23021
23022 2004-10-21  Chris Toshok  <toshok@ximian.com>
23023
23024         * debug-helpers.c (append_class_name): argh, revert last patch.
23025         
23026 2004-10-21  Chris Toshok  <toshok@ximian.com>
23027
23028         * debug-helpers.c (append_class_name): use '+' as the delimiter,
23029         not '/', so that it matches what the debugger uses to look up
23030         methods.
23031
23032 2004-10-21  Martin Baulig  <martin@ximian.com>
23033
23034         * mono-debug-debugger.c (mono_debugger_throw_exception): New
23035         public method; this is called each time an exception is thrown and
23036         allows the debugger to use exception catch points.
23037
23038 2004-10-21  Martin Baulig  <martin@ximian.com>
23039
23040         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
23041         the stack pointer and the exception object in some struct and pass
23042         that to the debugger.
23043
23044 2004-10-21  Chris Toshok  <toshok@ximian.com>
23045
23046         * mono-debug-debugger.c (do_write_class): add instance/static
23047         event support.  We don't expose "raise" or "other" yet.
23048         (event_is_static): new method.
23049
23050 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
23051
23052         * mono-debug-debugger.c
23053         (mono_debugger_handle_exception): Remove
23054         bogus return value for fussy compilers.
23055
23056 2004-10-20  Martin Baulig  <martin@ximian.com>
23057
23058         * mono-debug-debugger.c
23059         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
23060         (mono_debugger_handled_exception): Likewise.
23061
23062 2004-10-20  Martin Baulig  <martin@ximian.com>
23063
23064         * mono-debug-debugger.h (MonoDebuggerEvent): Added
23065         MONO_DEBUGGER_EVENT_EXCEPTION.
23066
23067         * mono-debug-debugger.c (mono_debugger_handle_exception): New
23068         public function to send the debugger a notification for an
23069         exception and inform it about a catch/finally clause.
23070
23071 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
23072
23073         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
23074         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
23075         fix 2.95 build. 
23076
23077         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
23078
23079 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
23080
23081         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
23082         marshalled as [In,Out]. Fixes #58325.
23083
23084 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
23085
23086         * reflection.c (mono_method_body_get_object): Implement some fields.
23087
23088 2004-10-12  Martin Baulig  <martin@ximian.com>
23089
23090         * reflection.c (mono_reflection_bind_generic_parameters): Small
23091         fix, correctly retrieve our parent from a generic instance.
23092
23093 2004-10-12  Martin Baulig  <martin@ximian.com>
23094
23095         * metadata.c (mono_metadata_generic_param_equal): We always have
23096         an owner.
23097
23098         * class.c
23099         (mono_class_from_generic_parameter): We need to have an owner.
23100         (my_mono_class_from_generic_parameter): Likewise.
23101
23102         * reflection.c (mono_reflection_setup_generic_class): Renamed to
23103         mono_reflection_create_generic_class() and added a new
23104         mono_reflection_setup_generic_class().  
23105         (mono_reflection_initialize_generic_param): If we're a nested
23106         generic type and inherited from the containing class, set our
23107         owner to the outer class.
23108
23109 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
23110
23111         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
23112
23113         * reflection.c (mono_method_body_get_object): New function to create
23114         a MethodBody object.
23115
23116         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
23117
23118 2004-10-11  Martin Baulig  <martin@ximian.com>
23119
23120         * metadata.c (_mono_metadata_type_equal): Renamed to
23121         do_mono_metadata_type_equal() and made static.
23122
23123 2004-10-11  Martin Baulig  <martin@ximian.com>
23124
23125         * appdomain.c: Bump corlib version number to 28.
23126
23127 2004-10-10  Martin Baulig  <martin@ximian.com>
23128
23129         * class-internals.h
23130         (MonoGenericInst): Added `MonoGenericContainer *container'.
23131         (MonoGenericMethod): Likewise.
23132         (MonoGenericContext): Likewise.
23133         (MonoGenericParam): Added `MonoGenericContainer *owner'.
23134
23135         * metadata.c
23136         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
23137         (do_mono_metadata_parse_generic_inst): Likewise.
23138         (mono_metadata_parse_type_full): New public method.  This is the actual
23139         mono_metadata_parse_type() implementation - with an additional
23140         `MonoGenericContainer *' argument.
23141         (mono_metadata_parse_array_full): Likewise.
23142         (mono_metadata_parse_signature_full): Likewise.
23143         (mono_metadata_parse_method_signature_full): Likewise.
23144         (mono_metadata_parse_mh_full): Likewise.
23145         (mono_type_create_from_typespec): Likewise.
23146         (mono_metadata_interfaces_from_typedef_full): New public method;
23147         this is similar to the other _full() methods, but we take a
23148         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
23149         (mono_metadata_parse_generic_param): Take an additional
23150         `MonoGenericContainer *' argument and lookup the MonoGenericParam
23151         from that container.
23152         (mono_metadata_generic_param_equal): New static method to compare
23153         two type parameters.
23154         (_mono_metadata_type_equal): New static method; takes an
23155         additional `gboolean signature_only' argument - if true, we don't
23156         compare the owners of generic parameters.
23157         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
23158         with a TRUE argument - do a signature-only comparision.
23159
23160         * loader.c: Use the new _full() methods and pass the
23161         MonoGenericContainer to them.
23162
23163         * object-internals.h (MonoReflectionTypeBuilder): Added
23164         `MonoGenericContainer *generic_container' field.
23165         (MonoReflectionMethodBuilder): Likewise.
23166
23167 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
23168
23169         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
23170         case initial images of dynamic assemblies.
23171
23172         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
23173
23174         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
23175
23176         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
23177         length of event->other array.
23178         (typebuilder_setup_events): Ditto.
23179
23180         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
23181         'assembly_by_name' and add an 'assemblies' list.
23182
23183         * assembly.h assembly.c: Add a new search hook for determining whenever
23184         an assembly is already loaded. Use this instead of searching in the
23185         loaded_assemblies list.
23186
23187         * domain.c appdomain.c: Implement the new search hook so loaded 
23188         assemblies are now scoped by appdomain. Fixes #67727.
23189
23190 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
23191
23192         * threads.c (mono_thread_attach): Initialize synch_lock field so
23193         mono_thread_detach works again.
23194
23195         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
23196         'lib' too. Fixes #63130.
23197
23198 2004-10-06  Jackson Harper  <jackson@ximian.com>
23199
23200         * culture-info-tables.h: regenerated.
23201
23202 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
23203
23204         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
23205         implemented by other interfaces in the result. Fixes #65764.
23206         
23207         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23208         Handle unloadable modules without crashing.
23209
23210         * image.c (load_modules): Revert the previous patch since modules must
23211         have a fixed index inside the array.
23212         
23213         * image.c (load_modules): Don't include native modules in the modules
23214         array.
23215
23216 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
23217
23218         * reflection.h: Add param_defaults field.
23219
23220         * reflection.c: Add support for parameter defaults in dynamic methods.
23221         Fixes #64595.
23222
23223         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
23224         an empty string when a type has no namespace. Fixes #64230.
23225
23226 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
23227
23228         * tabledefs.h: Added "internal" security actions to support non-CAS
23229         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
23230         Note: they do not seems to be used anymore in 2.0 (new metadata format)
23231
23232 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
23233
23234         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
23235         constructor of abstract class. Fixes #61689.
23236
23237 2004-10-04  Martin Baulig  <martin@ximian.com>
23238
23239         * class-internals.h (MonoGenericContainer): New type.
23240         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
23241         `MonoGenericContainer *generic_container'.
23242         (MonoClass): Replaced `gen_params' and `num_gen_params' with
23243         `MonoGenericContainer *generic_container'.
23244
23245         * metadata.c (mono_metadata_load_generic_params): Return a
23246         `MonoGenericContainer *' instead of a `MonoGenericParam *';
23247         removed the `num' argument.
23248
23249 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
23250
23251         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
23252         for dynamic images.
23253
23254         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
23255         machine fields.
23256
23257         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
23258
23259         * reflection.c: Save pe_kind and machine values into the generated
23260         image file.
23261
23262         * appdomain.c: Bump corlib version number.
23263
23264         * object-internals.h: Reorganize layout of LocalBuilder.
23265
23266         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
23267         New helper function.
23268
23269         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
23270         created MonoType for dynamic types. Fixes #66180.
23271
23272 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
23273
23274         * threadpool.c: the ares hashtable needs a critical section around it.
23275         this prevents some nasty segfaults
23276
23277 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
23278
23279         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
23280         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
23281         bug 67324).
23282         
23283 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
23284
23285         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
23286         
23287 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
23288
23289         * image.c: Always canonicalize image file names, to avoid loading
23290         the same assembly twice when referenced using a relative path.
23291
23292 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
23293
23294         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
23295
23296         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
23297
23298         * marshal.c: Fix warnings.
23299
23300 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
23301
23302         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
23303         attempting to marshal the delegate_trampoline as the method_addr.
23304         This patch has a static hashtable of marshalled delegates so that 
23305         we can map delegate_trampoline addresses back to delegates.  This
23306         allows a delegate passed to managed code to be passed back into native
23307         code.  Fixes #67039
23308
23309 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
23310
23311         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
23312
23313         * reflection.c (method_encode_code): Align method headers properly.
23314         Fixes #66025.
23315
23316 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
23317
23318         * marshal.c: In the runtime invoke wrapper, reset the abort
23319         exception if it is cached. This avoids the automatic rethrowal of 
23320         the exception after the catch of the wrapper. Also check for pending
23321         interruptions before calling the managed method. This is done using
23322         the new method emit_thread_force_interrupt_checkpoint, since the
23323         normal checkpoint method is ignored when running the invoke wrapper.
23324         * object.c: If the abort exception is rethrown, set the abort_exc
23325         field of the thread, so it will be rethrown aftere every catch.
23326         * threadpool.c: Only run an interruption checkpoint if what has been
23327         requested is a stop of the thread (aborts will be ignored).
23328         * threads.c: By default, a thread will now never be interrumped while
23329         running the runtime invoke wrapper (this ensures that runtime_invoke
23330         will always return to the caller if an exception pointer is provided).
23331         There is a new special method mono_thread_force_interruption_checkpoint()
23332         to force an interruption checkpoint even if running a protected
23333         wrapper, which is used by the same runtime invoke wrapper to do a check
23334         at a safe point.
23335
23336 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
23337
23338         * object.c, object-internals.h: Implemented mono_release_type_locks,
23339         which releases the cctor locks held by a thread.
23340         * threads.c, threads.h: In thread_cleanup, release cctor locks held
23341         by a thread. Added mono_thread_exit() method to be used to safely stop
23342         a thread.
23343
23344 2004-09-28  Raja R Harinath  <rharinath@novell.com>
23345
23346         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23347         Move null check before dereference.  Avoid indexing beyond the end
23348         of the 'modules' array.
23349
23350 2004-09-28  Raja R Harinath  <rharinath@novell.com>
23351
23352         * metadata-internals.h (MonoImage): Add module_count field.
23353         * image.c (load_modules): Set image->module_count.
23354         (mono_image_load_file_for_image): Use image->module_count.
23355         * reflection.c (mono_image_load_module): Append to image->modules array 
23356         of dynamic assembly.
23357         (mono_module_get_object): Fix loop to actually increment index.
23358         Use image->module_count.
23359         * assembly.c (mono_assembly_load_references): Use image->module_count.
23360         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
23361         Likewise.
23362
23363 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
23364
23365         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
23366         Avoid assert on generic types.
23367
23368 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
23369
23370         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
23371
23372         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
23373
23374         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
23375         function to convert a MarshalSpec structure to its managed counterpart.
23376
23377         * reflection.c: Fix warnings.
23378         
23379         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
23380         field.
23381
23382         * icall.c (mono_create_icall_signature): Fix build.
23383
23384 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
23385
23386         * icall.c: Add MakePointType icall.
23387
23388         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
23389         warnings.
23390
23391 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23392
23393         * threadpool.c: reuse allocated slots in the queue.
23394
23395 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
23396
23397         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
23398
23399         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
23400
23401         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
23402         previous change.
23403
23404         * tabledefs.h: Add constants for pinvoke attributes BestFit and
23405         ThrowOnUnmappableChar.
23406
23407         * icall.c (ves_icall_Type_GetPacking): New icall.
23408
23409 2004-09-24  Martin Baulig  <martin@ximian.com>
23410
23411         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
23412
23413 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23414
23415         * appdomain.c:
23416         (mono_domain_set): allow setting a domain that is being unloaded.
23417         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
23418         being unloaded.
23419
23420 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
23421
23422         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
23423         the GetCustomAttributes icall.
23424
23425 2004-09-23  Martin Baulig  <martin@ximian.com>
23426
23427         * object-internals.h (MonoReflectionGenericParam): Replaced
23428         'has_ctor_constraint', `has_reference_type' and `has_value_type'
23429         with `guint32 attrs'.
23430
23431 2004-09-23  Martin Baulig  <martin@ximian.com>
23432
23433         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
23434
23435 2004-09-23  Martin Baulig  <martin@ximian.com>
23436
23437         * object-internals.h (GenericParameterAttributes): New enum.
23438
23439 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
23440
23441         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
23442         
23443         * class.c (init_events): Fill out event->other field.
23444
23445         * class.c: Fix warnings.
23446
23447         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
23448
23449 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
23450
23451         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
23452         walk which doesn't supply the IL offset.
23453
23454 2004-09-22  Martin Baulig  <martin@ximian.com>
23455
23456         * reflection.c (mono_reflection_setup_internal_class): If we're
23457         System.ValueType, System.Object or System.Enum, set
23458         `klass->instance_size' and create the vtable.
23459         (mono_reflection_create_internal_class): If we're an enum type,
23460         get the base class from our current corlib.
23461
23462 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
23463
23464         * reflection.h (MonoResolveTokenError): New type.
23465
23466         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
23467         icall.
23468
23469         * icall.c: Add an 'error' argument to the ResolveToken icalls.
23470
23471 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
23472
23473         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
23474         Support also calling constructors, but only for already allocated objects.
23475
23476 2004-09-17  Geoff Norton <gnorton@customerdna.com>
23477
23478         * reflection.c (type_get_qualified_name): If the klass is null
23479         return the typename to avoid a NullRefEx.
23480         (encode_cattr_value): Get the qualified name of the boxed type,
23481         not the underlying enumtype.  Fixes #62984.
23482
23483 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
23484
23485         * marshal.c: Fix problems with previous checkin.
23486
23487 2004-09-21    <vargaz@freemail.hu>
23488
23489         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
23490         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
23491
23492         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
23493
23494 2004-09-21  Geoff Norton <gnorton@customerdna.com>
23495
23496         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
23497         should only return a type for pointers, arrays, and passbyref types.
23498         Fixes bug #63841.
23499
23500 2004-09-21  Martin Baulig  <martin@ximian.com>
23501
23502         * domain.c (mono_debugger_check_runtime_version): New public
23503         function.
23504
23505         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
23506
23507 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
23508
23509         * reflection.c: Added missing sort to the declarative security 
23510         attributes table. MS implementation stops seeing the attributes if the
23511         token number regress in the table (as shown by ildasm and permview).
23512
23513 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
23514
23515         * object-internals.h (MonoReflectionModule): Add 'token' field.
23516         
23517         * reflection.c (mono_reflection_get_token): Add support for Module
23518         and Assembly.
23519         (mono_module_get_object): Set 'token' field.
23520         (mono_module_file_get_object): Set 'token' field.
23521
23522         * icall.c: Add new Assembly and Module icalls.
23523
23524         * appdomain.c: Bump corlib version.
23525
23526 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
23527
23528         * loader.h loader.c class.h class.c: Add helper functions for obtaining
23529         tokens of metadata objects.
23530
23531         * reflection.h reflection.c (mono_reflection_get_token): New function
23532         to obtain the token of a metadata object.
23533
23534         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
23535
23536 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
23537
23538         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
23539         
23540         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
23541
23542 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
23543
23544         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
23545         * object-internals.h: Added 3 MonoArray* members to MonoReflection
23546         AssemblyBuilder to access the permissions set in the class lib.
23547         * reflection.c: Added security attributes encoding step in 
23548         mono_image_build_metadata.
23549         * tabledefs.h: Added new security actions defined in 2.0:
23550         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
23551
23552 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
23553
23554         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
23555         macro parameter.
23556
23557 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
23558  
23559         * locales.c: nullify the ICU_collator member of CompareInfo when it is
23560           finalized. There where random SIGSEVs at program termination, when
23561           an object being finalized was trying to do a string comparison and
23562           the current culture was already finalized.
23563  
23564 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23565
23566         * threads.c: call thread_cleanup before finishing the thread if we get
23567         there.
23568
23569 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
23570
23571         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
23572         assemblies from the parent. Fixes #65665.
23573
23574 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
23575
23576         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
23577         modifiers.
23578
23579 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
23580
23581         * reflection.h: add prototype for mono_get_dbnull_object
23582         * reflection.c: add prototypes for get_default_param_value_blobs 
23583         and mono_get_object_from_blob for fussier compilers
23584
23585 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
23586  
23587         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
23588         false deadlock checks in class initialization.
23589  
23590 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
23591
23592         * image.c (mono_image_addref): Fix comment.
23593
23594         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
23595         possible.
23596
23597 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
23598
23599         * reflection.c (mono_param_get_objects): Modified to return
23600         ParameterInfo.DefaultValue object.
23601
23602         (get_default_param_value_blobs):
23603         (mono_get_object_from_blob):
23604         (mono_get_dbnull_object): New helper routines. 
23605
23606         * object.c (mono_get_constant_value_from_blob): New helper routine
23607         carved out from get_default_field_value ()
23608
23609         * object-internals.h (mono_get_constant_value_from_blob): Added
23610         function declaration.
23611
23612 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
23613
23614         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
23615         referenced assemblies. Fixes #62135.
23616
23617         * exception.h exception.c (mono_get_exception_file_not_found2): New
23618         helper function.
23619
23620 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
23621
23622         * class.h class.c: Add mono_type_get_underlying_type ().
23623
23624 2004-09-09  Geoff Norton <gnorton@customerndna.com>
23625
23626         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
23627         Fix GetTypes() to support dynamically created assemblies.
23628
23629 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
23630
23631         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
23632         
23633         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
23634         previous patch.
23635
23636         * reflection.h reflection.c loader.c: Allow dynamic construction of
23637         pinvoke methods. Fixes #65571.
23638         
23639         * reflection.c (mono_reflection_get_type): Revert previous change since
23640         it causes regressions.
23641
23642 2004-09-08  Martin Baulig  <martin@ximian.com>
23643
23644         * class.c (class_compute_field_layout): Don't call
23645         mono_class_layout_fields() for open generic instances.
23646
23647 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
23648         * threads.c appdomain.c: fix typo in GC macro
23649
23650 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23651
23652         * threads.c: don't call mono_thread_detach() in start_wrapper(),
23653         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
23654
23655 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
23656
23657         * image.c (mono_image_close): Applied patch from 
23658         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
23659         assembly is loaded multiple times from data.
23660         
23661         * image.c (mono_image_open): Fix warning.
23662
23663 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23664
23665         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
23666         once. Fixes #58334.
23667         
23668         * reflection.c (mono_reflection_create_runtime_class): Initialize
23669         klass->nested_classes. Fixes #61224.
23670
23671 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
23672
23673         * threads.c: sched_yield() on exit, to allow threads to quit.
23674
23675 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23676
23677         * object.c (mono_unhandled_exception): Remove leftover debug code.
23678
23679 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
23680
23681         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
23682
23683 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23684
23685         * marshal.c (emit_marshal_array): Really null terminate string arrays.
23686         
23687         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
23688
23689 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23690
23691         * marshal.c (emit_marshal_array): Null terminate string arrays.
23692         
23693         * marshal.c (raise_auto_layout_exception): Fix warning.
23694
23695         * reflection.c (mono_param_get_objects): Initialize the default value
23696         with DBNull.Value, not null. Fixes #62123.
23697
23698 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
23699
23700         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
23701         throw an exception with a cute explanation.
23702
23703 2004-09-06  Dick Porter  <dick@ximian.com>
23704
23705         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
23706         Close the new process's thread handle, as we don't use it.  The
23707         handle stays around forever otherwise.
23708
23709 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23710
23711         * object.c (arith_overflow): Fix warning.
23712
23713         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
23714         calling conventions in method refs. Fixes #65352.
23715
23716         * reflection.c: Fix warnings.
23717
23718 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
23719
23720         * icall.c: Add a new icall for Array.Clear
23721
23722 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
23723
23724         * object.c: When allocating an array, we have to throw
23725         an overflow exception if any of the lengths are < 0.
23726
23727 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23728
23729         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
23730         properly. Also move implementation of string array marshalling to 
23731         managed code. Fixes #42316.
23732
23733 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23734
23735         * assembly.c: provide more information when loading an assembly fails.
23736
23737 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23738
23739         * filewatcher.c: don't expect the development fam package to be
23740         installed.
23741
23742 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
23743
23744         * marshal.c: Make a copy of the signature cookie since it will be
23745         freed by the caller.
23746         
23747         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
23748
23749         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
23750
23751         * metadata.c (mono_metadata_free_marshal_spec): New function to free
23752         marshal specs.
23753
23754         * marshal.c: More refactoring.
23755         
23756         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
23757         smaller functions.
23758
23759 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
23760
23761         * object.c: In mono_message_invoke, fill the output parameter array after
23762           calling the managed method (it was done before the call). This fixes
23763           bug #59299.
23764
23765 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
23766
23767         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
23768         as well.
23769
23770 2004-09-02  Martin Baulig  <martin@ximian.com>
23771
23772         * class.c (mono_class_instance_size): Don't allow generic type
23773         definitions or open generic instances.
23774         (mono_class_array_element_size): If we're a value type, call
23775         mono_class_instance_size() on the original class.
23776
23777         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
23778         handle generic instances.
23779
23780         * mono-debug-debugger.c (write_type): Handle generic instances
23781         like classes.
23782
23783 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
23784
23785         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
23786         the allocation request fails. Fixes #65089.
23787
23788         * object.c (mono_runtime_free_method): Do not call mono_free_method.
23789         
23790         * object.c (mono_runtime_free_method): New function to free a dynamic
23791         method.
23792
23793         * marshal.c (mono_delegate_free_ftnptr): New function to free the
23794         delegate trampoline.
23795
23796         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
23797         with hasthis as dynamic,
23798
23799         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
23800
23801         * domain.c (mono_jit_info_table_remove): New function to remove an
23802         entry from the jit info table.
23803
23804         * class-internals.h (MonoMethod): Add 'dynamic' field.
23805
23806         * loader.c: Fix warnings.
23807
23808 2004-09-01  Martin Baulig  <martin@ximian.com>
23809
23810         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
23811         instead of mono_debugger_lock() because the latter one is a no-op
23812         unless running in the debugger.
23813
23814 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
23815
23816         * class.c (class_compute_field_layout): Classes with auto-layout or
23817         reference fields are not blittable.
23818         
23819 2004-09-01  Dick Porter  <dick@ximian.com>
23820
23821         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
23822         mono_image_get_filename() to get the assembly location.
23823
23824         * icall.c:
23825         * metadata.h: Fix compile warnings
23826
23827 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
23828
23829         * class.c (class_compute_field_layout): System.Object is blittable.
23830
23831         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
23832         as in/out. Fixes #59909.
23833
23834 2004-09-01  Martin Baulig  <martin@ximian.com>
23835
23836         * metadata.h (MONO_TYPE_ISREFERENCE): Call
23837         mono_metadata_generic_inst_is_valuetype() if we're a generic
23838         instance to check whether our underlying type is a reference type.
23839
23840 2004-09-01  Martin Baulig  <martin@ximian.com>
23841
23842         * metadata.c (mono_type_size): If we're a generic instance, call
23843         mono_class_value_size() for value types.
23844
23845 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
23846
23847         * marshal.c: Implement more custom marshalling functionality. Fixes
23848         #64915.
23849
23850 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
23851
23852         * mono-debug.c, debug-mono-symfile.c: add some locking love.
23853
23854 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
23855
23856         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
23857
23858         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
23859
23860         * icall.c: Fix some warnings.
23861
23862         * threads.c (abort_appdomain_thread): Fix unref errors.
23863         (mono_thread_current): Fix THREAD_DEBUG define.
23864
23865 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
23866
23867         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
23868
23869         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
23870
23871 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
23872
23873         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
23874         string arrays.
23875
23876 2004-08-28  Martin Baulig  <martin@ximian.com>
23877
23878         * metadata.c
23879         (mono_metadata_generic_inst_is_valuetype): New public function.
23880
23881         * metadata.h (MONO_TYPE_ISSTRUCT): Call
23882         mono_metadata_generic_inst_is_valuetype() if we're a generic
23883         instance to check whether our underlying type is a valuetype.
23884
23885 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
23886
23887         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
23888         #63768.
23889
23890 2004-08-25  Martin Baulig  <martin@ximian.com>
23891
23892         * loader.c (mono_get_method_from_token): Abstract methods can also
23893         be generic and thus have type parameters.
23894
23895         * metadata-internals.h
23896         (MonoDynamicImage): Added `GPtrArray *gen_params'.
23897
23898         * reflection.c (mono_image_get_generic_param_info): Don't create a
23899         metadata row, just add an entry to the `gen_params' array.
23900         (build_compressed_metadata): Sort the `gen_params' array and then
23901         actually create the metadata.
23902
23903 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23904
23905         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
23906
23907 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
23908
23909         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
23910
23911 2004-08-24  Martin Baulig  <martin@ximian.com>
23912
23913         * class.cs (mono_class_is_subclass_of): Like an interface, a
23914         generic instance also derives from System.Object.
23915
23916 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
23917
23918         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
23919         custom modifiers to be in any order. Fixes #61990.
23920
23921 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
23922
23923         * object.c: Register mono_object_new_fast icall.
23924         
23925         * object.c (mono_class_get_allocation_ftn): Return to calling
23926         mono_object_new_fast, since it seems faster to compute the object 
23927         size in unmanaged code than passing it as a parameter.
23928
23929         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
23930
23931         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
23932         this function with Boehm as the oom handler, so we don't have to check
23933         the result of GC_malloc.
23934
23935         * object.c: Remove checks for oom.
23936
23937         * object.h object.c (mono_class_get_allocation_ftn): New function to
23938         return the icall which can be used to allocate an instance of a given
23939         class. 
23940
23941         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
23942
23943         * class-internals.h: Add 'enabled' field.
23944
23945 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
23946
23947         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
23948
23949 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
23950         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
23951         value 0x0010.
23952
23953 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
23954
23955         * appdomain.c: use the Tls function for appdomain too,
23956         at Zoltan's request. Actually return in mono_context_get
23957
23958         * appdomain.c, profiler.c, threads.c: use __thread
23959
23960 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
23961
23962         * appdomain.c threads.c: Call GC_CreateThread on windows.
23963
23964         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
23965         multiple libraries since this don't work on windows.
23966
23967 2004-08-18  Martin Baulig  <martin@ximian.com>
23968
23969         * class-internals.h
23970         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
23971         MonoMethodHeader.
23972
23973         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
23974         MonoMethodNormal since we also need it for abstract and interface
23975         methods.
23976
23977         * reflection.c
23978         (build_compressed_metadata): Sort the GenericParam table.
23979         (mono_image_create_token): Added `gboolean create_methodspec'
23980         argument; this is false when generating a MethodImpl token.
23981         (reflection_methodbuilder_to_mono_method): Abstract and interface
23982         methods may also have generic parameters.
23983
23984 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
23985
23986         * appdomain.c: thread local alloc
23987
23988 2004-08-17  Martin Baulig  <martin@ximian.com>
23989
23990         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
23991
23992         * icall.c
23993         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
23994         argument.
23995
23996         * class.c (mono_type_get_full_name): New public function.
23997         (mono_type_get_name): Don't include the type arguments.
23998
23999 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
24000
24001         * Makefile.am: Build static versions of libmetadata and libmonoruntime
24002         for inclusion into the mono executable.
24003
24004 2004-08-16  Martin Baulig  <martin@ximian.com>
24005
24006         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
24007         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
24008
24009 2004-08-14  Martin Baulig  <martin@ximian.com>
24010
24011         * class.c (dup_type): Also copy the `byref' field.
24012
24013 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
24014
24015         * reflection.c (create_dynamic_mono_image): Revert the last change 
24016         since it breaks bootstrap.
24017
24018 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
24019
24020         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
24021
24022         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
24023         not free them with g_free.
24024
24025 2004-08-11  Martin Baulig  <martin@ximian.com>
24026
24027         * reflection.c (mono_reflection_setup_internal_class): Also call
24028         mono_class_setup_mono_type() if we already have a `tb->type.type'.
24029
24030 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
24031
24032         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
24033         called during default (first) AppDomain creation. Keep track of
24034         Evidence when loading assemblies.
24035
24036 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
24037
24038         * opcodes.c, opcodes.h: reduce runtime relocations.
24039
24040 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
24041
24042         * culture-info.h, locales.c: fixes and chages to sue the new
24043         optimized format of the locale data.
24044         * culture-info-tables.h: regenerated.
24045
24046 2004-08-06  Geoff Norton <gnorton@customerdna.com>
24047         
24048         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
24049
24050 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
24051
24052         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
24053         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
24054         * domain-internals.h: icall declaration.
24055         * icall.c: icall registration.
24056         * object-internals.h: New fields in MonoAssembly for CAS.
24057
24058 2004-08-05  Duncan Mak  <duncan@ximian.com>
24059
24060         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
24061         CEE_LDELEM_ANY.
24062
24063 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
24064
24065         * reflection.c: fix to deal with object[] arrays in custom ctors
24066         (bug #62550).
24067
24068 2004-08-05  Martin Baulig  <martin@ximian.com>
24069
24070         * class.c (mono_class_array_element_size): Added support for
24071         generic instances and correctly handle "recursive" types.
24072
24073 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
24074
24075         * assembly.c: Fix warnings.
24076
24077 2004-08-04  Martin Baulig  <martin@ximian.com>
24078
24079         * class.c
24080         (mono_type_get_name_recurse): Added `gboolean include_arity'
24081         argument specifying whether or not we should include the generic
24082         arity in the type name.
24083         (_mono_type_get_name): New static function.
24084         (mono_class_setup_vtable): If we're a generic instance, don't
24085         include the generic arity in the names of explicit method
24086         implementations.        
24087
24088 2004-08-03  Martin Baulig  <martin@ximian.com>
24089
24090         * class.c (mono_type_get_name_recurse): Enclose the generic type
24091         arguments in `<', '>'.
24092
24093 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24094
24095         * gc.c: make GC warning messages use the trace API, they are just
24096         noise to most of the users.
24097
24098 2004-08-03  Martin Baulig  <martin@ximian.com>
24099
24100         * debug-mono-symfile.c (read_string): Correctly read the string.
24101
24102 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
24103
24104         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
24105         
24106         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
24107         icalls.
24108         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
24109
24110 2004-07-30  Martin Baulig  <martin@ximian.com>
24111
24112         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
24113         Reflect latest symbol writer changes.   
24114
24115 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24116
24117         * object.c: always create an object if null is passed
24118         to Invoke() where a valuetype is expected.
24119
24120 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
24121
24122         * marshal.c (mono_marshal_init): make managed
24123         signatures match native ones better for 64bits.
24124
24125 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24126
24127         * appdomain.c: hack to build correctly the private bin path on windows.
24128         Fixes bug #61991.
24129
24130 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
24131
24132         * assembly.c: Load mscorlib from the correct framework directory
24133           (mono/<version>/mscorlib.dll).
24134         * appdomain.h: Added prototypes for new functions.
24135         * internals.h: Added some prototypes.
24136         * domain.c: When initializing the runtime, get from the executable and
24137           the configuration files the runtime version that the app supports.
24138           Added support methods for reading app.exe.config. Added list of versions
24139           supported by the JIT. Added two new methods: mono_init_from_assembly,
24140           which initializes the runtime and determines the required version from
24141           the provided exe file, and mono_init_version, which initializes
24142           the runtime using the provided version.
24143         * icall.c: Get machine.config from version-specific directory.
24144         * reflection.c: When generating an image, embed the version number
24145           of the current runtime.
24146
24147 2004-07-28  Dick Porter  <dick@ximian.com>
24148
24149         * socket-io.c
24150         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
24151         returned sockaddr size before creating the remote address object.
24152         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
24153         61608.
24154
24155 2004-07-28  Dick Porter  <dick@ximian.com>
24156
24157         * locales.c (string_invariant_compare_char): Fix invariant char
24158         compares between upper and lower cases.  Fixes bug 61458.
24159
24160 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
24161         
24162         * marshal.c: actually cache stelem.ref wrappers.
24163         
24164 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
24165
24166         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
24167         sections and remove the mono_cli_rva_map () function.
24168
24169 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
24170
24171         * debug-mono-symfile.c: fix one more endianess issue, from a patch
24172         by Geoff Norton (<gnorton@customerdna.com>).
24173
24174 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24175
24176         * class.c: fix class loads for pointer types (typeof(int) !=
24177         typeof(int*)).
24178
24179 2004-07-27  Martin Baulig  <martin@ximian.com>
24180
24181         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
24182         reading the debugging information from an external ".mdb" file.
24183
24184 2004-07-24  Martin Baulig  <martin@ximian.com>
24185
24186         * reflection.c (mono_image_get_type_info): Only write a class
24187         layout entry if we actually have a size or a packing size.
24188
24189 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
24190
24191         * reflection.c (type_get_fully_qualified_name): 
24192         insert cast to get type checking of ?: with non-gcc compilers
24193
24194 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
24195
24196         * rand.c: use g_getenv for both lookups of
24197         MONO_EGD_SOCKET
24198
24199 2004-07-17  Martin Baulig  <martin@ximian.com>
24200
24201         * reflection.c (mono_reflection_bind_generic_method_parameters):
24202         Set `gmethod->reflection_info'.
24203
24204 2004-07-17  Martin Baulig  <martin@ximian.com>
24205
24206         * class.c (mono_class_create_from_typedef): Insert the newly
24207         created class into the hash table before computing the interfaces
24208         since we could be called recursively.
24209
24210 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
24211
24212         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
24213         function to implement stelem.ref in managed code
24214         * class-internals.h, debug-helpers.c: a new wrapper type
24215         for the above.
24216
24217 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24218
24219         * gc.c: allow GC handles to work even when no GC is compiled in.
24220         Fix part of bug #61134 (GetAddrOfPinnedObject).
24221
24222 2004-07-13  Peter Williams  <peter@newton.cx>
24223  
24224         * process.c (complete_path): Make sure we don't attempt to execute
24225         directories.
24226  
24227 2004-07-12  Geoff Norton <gnorton@customerdna.com>
24228
24229         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
24230           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
24231           and will add/subtract the hour if needed
24232
24233 2004-07-12  Martin Baulig  <martin@ximian.com>
24234
24235         * reflection.c (mono_field_get_object): If we have
24236         `field->generic_info', take the attributes from
24237         `field->generic_info->generic_type'.    
24238
24239 2004-07-12  Martin Baulig  <martin@ximian.com>
24240
24241         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
24242         This function must be called before initializing the runtime.
24243         (mono_debug_init_1): New function; call this after initializing
24244         the runtime, but before loading the assembly.  It tells the
24245         debugger to load corlib and the builtin types.
24246
24247         * mono-debug-debugger.c: Did some larger changes in the debugging
24248         code; support recursive class declarations, make sure we actually
24249         add all classes.
24250
24251 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24252
24253         * debug-helpers.c: undo my previous patch and fixed the real issue in
24254         ../mini/exceptions-x86.c
24255
24256 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24257
24258         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
24259         when no HOME env. variable was set and a NullRef was thrown in a .cctor
24260         called from other .cctors.
24261
24262 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
24263
24264         * loader.c: Removed the mono_loader_wine_init hack now that we are
24265         doing a managed version of Windows.Forms.
24266
24267 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
24268
24269         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
24270         threadpool.c, threads.c: remove static data from rootset.
24271
24272 2004-07-09  Dick Porter  <dick@ximian.com>
24273
24274         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
24275         Don't do any more processing if the matched length was 0.  It was
24276         increasing the size of the string before.  Fixes bug 61167.
24277
24278 2004-07-09  Dick Porter  <dick@ximian.com>
24279
24280         * socket-io.h:
24281         * socket-io.c
24282         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
24283         Add support for SO_PEERCRED if its available.
24284
24285 2004-07-09  Peter Bartok <pbartok@novell.com>
24286         * loader.c: winelib.exe.so error message is now only displayed if
24287         MONO_DEBUG is set. To help us avoid questions when people are trying
24288         out the new Managed.Windows.Forms.
24289
24290 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
24291
24292         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
24293         for isinst and castclass wrappers.
24294
24295         * class-internals.h icall.c: Move registration and lookup of JIT icalls
24296         to libmetadata from the JIT, so they could be used by the marshalling
24297         code and the interpreter.
24298
24299         * marshal.c: Register marshalling related JIT icalls here instead of
24300         in mini.c. Use CEE_MONO_ICALL instead of the family of 
24301         CEE_MONO_PROC<x> opcodes to call marshalling functions.
24302
24303         * metadata.h: Remove unneeded marshalling conversions.
24304
24305         * opcodes.c: Update for new opcodes.
24306         
24307 2004-07-08  Martin Baulig  <martin@ximian.com>
24308
24309         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
24310         (mono_debug_get_domain_data): Make this function static.
24311
24312 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
24313
24314         * gc.c, object.h: add nice GC handle API for embedders.
24315
24316 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
24317
24318         * reflection.c: more changes for the new api
24319
24320         * object.c: When we reflect on a field w/ a constant value, it
24321         will not have a memory location, so we must access metadata. Also,
24322         allow easier reading of strings so that we can read them from
24323         the constant data.
24324
24325         * class.c (mono_class_layout_fields): no need for literal fields here.
24326
24327         * class-internals.h: api changes for const fields
24328
24329         * icall.c (ves_icall_get_enum_info): use new apis for const fields
24330
24331 2004-07-06  Martin Baulig  <martin@ximian.com>
24332
24333         * mono-debug.h: Increment version number to 44.
24334
24335         * mono-debug.c (mono_debug_add_wrapper): The second argument is
24336         now a gpointer, rewrote this whole method.
24337
24338         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
24339         function.  Add information about the wrapper in a new "misc table".
24340
24341         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
24342         for the new misc table.
24343
24344 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
24345
24346         * metadata-internals.h image.c: Add a cache for helper signatures.
24347
24348         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
24349
24350 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
24351
24352         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
24353         delegates from a delegate. Fixes #61033.
24354         
24355         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
24356         marshalling of stringbuilder arrays. Fixes #59900.
24357
24358 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
24359
24360         * icall.c: Add EnumBuilder:setup_enum_type icall.
24361
24362 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
24363
24364         * icall.c: Added a new icall for the property version of
24365         OffsetOfStringData.
24366
24367 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
24368
24369         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
24370         it has a constant size across platforms.
24371
24372         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
24373         stack trace.
24374
24375 2004-06-29  Martin Baulig  <martin@ximian.com>
24376
24377         * mono-debug.c (mono_debug_add_method): Protect the whole function
24378         in mono_debugger_lock(), not just parts of it.
24379
24380 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
24381
24382         * reflection.c: make sure padding bytes in heaps are zeroed.
24383
24384 2004-06-24  David Waite  <mass@akuma.org>
24385
24386         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
24387         image.c, loader.c, locales.c, marshal.c, metadata.c,
24388         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
24389         string-icalls.c, threads.c: change to C90-style comments from C99 /
24390         C++ -style
24391
24392 2004-06-24  Dick Porter  <dick@ximian.com>
24393
24394         * threads.c
24395         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
24396         return createdNew.  Fixes bug 60412.
24397
24398         * threads-types.h: 
24399         * icall.c: Add createdNew parameter to CreateMutex icall
24400
24401 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
24402
24403         * reflection.c, object-internals.h: save default value in params.
24404
24405 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24406
24407         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
24408         no need to build a new path combining that with the application base.
24409         Fixes bug #60442.
24410
24411 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
24412
24413         * reflection.c: fixed minor standard compliance issues.
24414
24415 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
24416
24417         * reflection.c: fixed issue with encoding some custom attributes
24418         (arrays in properties and fields, bug #60411).
24419
24420 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24421
24422         * reflection.c: fix start address when copying the public key token.
24423
24424 2004-06-23  Martin Baulig  <martin@ximian.com>
24425
24426         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
24427         the `exc' object in a static object to put it into the GC's root set.
24428
24429 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
24430
24431         * reflection.c: make mono_reflection_setup_internal_class ()
24432         callable a second time to setup a new parent class.
24433
24434 2004-06-23  Dick Porter  <dick@ximian.com>
24435
24436         * threads.c: Check for WAIT_IO_COMPLETION return values.
24437
24438 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
24439
24440         * appdomain.c: Removed the g_free on the public key token. Now copy 
24441         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
24442         * assembly.c: Added public key token string value when loading 
24443         assemblies. Fix bug #60439.
24444         * icall.c: Added missing informations (like public key) in 
24445         GetReferencedAssemblies. Fix #60519.
24446         * image.h: Changed definition for public key token from const char*
24447         public_tok_value to guchar public_key_token [17];
24448         * reflection.c: Updated for changes to public key token.
24449
24450 2004-06-22  Lluis Sanchez Gual
24451
24452         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
24453         for the field in base classes.
24454
24455 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
24456
24457         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
24458         mark headers as not supported, they are installed only for use by the
24459         debugger.
24460
24461 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
24462
24463         * *.c, *.h: avoid namespace pollution in public headers.
24464
24465 2004-06-21  Martin Baulig  <martin@ximian.com>
24466
24467         * exception.c (mono_get_exception_security): It's in
24468         "System.Security", not in "System".
24469
24470         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
24471         the exception classes.
24472
24473 2004-06-21  Martin Baulig  <martin@ximian.com>
24474
24475         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
24476         Protect the exception object from being finalized.
24477
24478 2004-06-21  Martin Baulig  <martin@ximian.com>
24479
24480         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
24481         public function.
24482
24483 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
24484
24485         * reflection.c: Load the assembly in mono_reflection_type_from_name,
24486         if it was not loaded before. Fix parts of #60439.
24487
24488 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
24489
24490         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
24491         code that was broken since Ben's change: wrappers are now
24492         dependent on the method signature only again.
24493
24494 2004-06-21  Martin Baulig  <martin@ximian.com>
24495
24496         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
24497         added interface support.
24498
24499 2004-06-21  Martin Baulig  <martin@ximian.com>
24500
24501         * class.c (mono_vtable_get_static_field_data): New public method.
24502
24503 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
24504
24505         * filewatcher.c : Windows build fix to be compliant with API changes.
24506
24507 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
24508
24509         * class.h, class.c: more accessors.
24510         * metadata.h, metadata.c: prepare for hiding MonoType and
24511         MonoMethodSignature: people should use the accessors from now on
24512         outside of the tree.
24513
24514 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
24515
24516         * *.c, *.h: more API cleanups.
24517
24518 2004-06-18  Jackson Harper  <jackson@ximian.com>
24519
24520         * assembly.c: Trace loading assemblies.
24521         * loader.c: Trace loading native libraries.
24522         * mono-config.c: Trace loading config files.
24523         
24524 2004-06-18  Dick Porter  <dick@ximian.com>
24525
24526         * locales.c: Tell ICU the lengths of strings, it can cope with
24527         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
24528
24529 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
24530
24531         * image.c: swapped name/filename;
24532
24533 2004-06-18  Martin Baulig  <martin@ximian.com>
24534
24535         * mono-debug-debugger.c (write_class): Write the parent class at
24536         the end of the header.
24537
24538 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
24539
24540         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
24541
24542 2004-06-17  Raja R Harinath  <rharinath@novell.com>
24543
24544         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
24545         (bundle_obj): New conditional define.
24546         (BUILT_SOURCES): Remove.
24547         ($(bundle_srcs)): Make parallel-make safe.
24548         (libmonoruntime_la_LIBADD): Make unconditional.
24549         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
24550         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
24551
24552 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
24553
24554         * culture-info-tables.h: It was inconsistent with the latest
24555           supp info files.
24556
24557 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
24558
24559         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
24560         be loaded.
24561
24562         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
24563         with gcc 2.95.
24564
24565 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
24566
24567         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
24568         cleaned up public header threads.h.
24569
24570 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
24571
24572         * Makefile.am, *.c, *.h: more API cleanups.
24573
24574 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
24575
24576         * Makefile.am: removed monosn from compilation.
24577         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
24578         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
24579         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
24580         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
24581         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
24582         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
24583
24584 2004-06-15  Jackson Harper  <jackson@ximian.com>
24585
24586         * assembly.c: Make locales lower case when searching the GAC for
24587         assemblies. gacutil will always make locales lowercase when
24588         installing so this effectively makes them case insensitive.
24589         
24590 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
24591
24592         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
24593         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
24594           parameter which allows to choose whether the wait can be interrupted or 
24595           not. Also added the method mono_monitor_enter(), which locks the monitor
24596           using an infinite wait and without allowing interruption.
24597           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
24598           interrupted.
24599         * object.h: Added new fields in MonoThread. suspend_event holds the event
24600           used to susped/resume the thread. synch_lock is the lock object to use for
24601           modifying the thread state.
24602         * threads.c: Use the new synch_lock object for locking, instead of "this",
24603           which can generate deadlocks.
24604           Moved thread state change in Thread.Sleep and Thread.Join from managed
24605           to unmanaged code. This avoids a deadlock when the thread was suspended
24606           just after acquiring the thread lock.
24607           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
24608           Implemented Thread.Suspend using an event instead of ThreadSuspend,
24609           which is not fully implemented in the io-layer.
24610         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
24611
24612 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
24613
24614         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
24615         threads-types.h: more API cleanups.
24616
24617 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
24618
24619         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
24620         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
24621         threadpool.c, threads.c: first pass at the exported API cleanup.
24622
24623 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
24624
24625         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
24626
24627 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24628
24629         * icall.c: added internalGetHome.
24630
24631 2004-06-14  Dick Porter  <dick@ximian.com>
24632
24633         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
24634         possible to return successfully when '.' or '..' were the only
24635         entries in a directory, but were skipped.  The MonoIOStat was not
24636         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
24637         Fixes bug 59574.
24638
24639 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
24640
24641         * reflection.c: make binaries run on .Net 1.1 by default.
24642
24643 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
24644
24645         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
24646
24647 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
24648
24649         * marshal.c: keep track of struct size with explicit layout
24650         (bug #59979).
24651
24652 2004-06-12  Martin Baulig  <martin@ximian.com>
24653
24654         * mono-debug-debugger.c: Comment out a debugging g_message().
24655
24656 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
24657
24658         * reflection.c, reflection.h: do not free custom attrs that are cached.
24659         * icall.c: use braces to make code clearer.
24660
24661 2004-06-11  Martin Baulig  <martin@ximian.com>
24662
24663         * class.h (MonoInflatedField): New type.
24664         (MonoClassField): Replaced `MonoType *generic_type' with
24665         `MonoInflatedField *generic_info'.
24666
24667         * icall.c
24668         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
24669
24670 2004-06-11  Martin Baulig  <martin@ximian.com>
24671
24672         * reflection.c (mono_image_create_method_token): Correctly encode
24673         varargs methods.
24674
24675 2004-06-11  Martin Baulig  <martin@ximian.com>
24676
24677         * metadata.c (mono_metadata_parse_method_signature): When parsing
24678         a MethodDef which has VarArgs, also set sentinelpos if we don't
24679         have any parameters.
24680
24681 2004-06-11  Martin Baulig  <martin@ximian.com>
24682
24683         * verify.c (mono_method_verify): In CEE_CALL, use
24684         mono_method_get_signature() to get the method's signature, unless
24685         we're a PInvoke method.
24686
24687 2004-06-10  Jackson Harper  <jackson@ximian.com>
24688
24689         * assembly.c: Use <path>/lib/mono/gac for the extra paths
24690         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
24691         logical name as the supplied path is just a prefix to the gac not
24692         the direct path to it.
24693         
24694 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
24695
24696         * reflection.c: make the token for a created method match
24697         the token of the MethodBuilder it was created from
24698         (IKVM requires this behaviour now).
24699
24700 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
24701
24702         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
24703         reflection.c, socket-io.c: leak fixes.
24704
24705 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
24706
24707         * icall.c: handle sentinel pos in vararg methods in position different
24708         from 0.
24709
24710 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24711
24712         * culture-info-tables.h: freshly generated.
24713
24714 2004-06-09  Martin Baulig  <martin@ximian.com>
24715
24716         * loader.c (mono_get_method_constrained): Call `mono_class_init
24717         (constrained_class)'.   
24718
24719 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
24720
24721         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
24722         any methods. Fixes #59629.
24723
24724 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24725
24726         * culture-info-tables.h: reflecting locale-builder updates.
24727
24728 2004-06-08  Dick Porter  <dick@ximian.com>
24729
24730         * object.h:
24731         * locales.c: Fixed compile warnings, including a real bug in
24732         CompareInfo_internal_compare.
24733         
24734 2004-06-08  Dick Porter  <dick@ximian.com>
24735
24736         * locales.c
24737         (ves_icall_System_Globalization_CompareInfo_internal_index):
24738         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
24739         Double-check the resuls of usearches, because ICU currently
24740         ignores most of the collator settings here.  Fixes bug 59720.
24741         
24742 2004-06-08  Dick Porter  <dick@ximian.com>
24743
24744         * locales.c
24745         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
24746         Fix memory leak and segfault-causing typo.  No idea how this one
24747         lasted so long without being noticed.
24748
24749 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
24750
24751         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
24752         any methods. Fixes #59629.
24753
24754 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24755
24756         * assembly.c:
24757         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
24758         own the critical section before). Removed dead code (that's done
24759         in the preload hook).
24760
24761         (mono_assembly_load_with_partial_name): call the preload hook.
24762
24763 2004-06-08  Martin Baulig  <martin@ximian.com>
24764
24765         * metadata.c (mono_metadata_signature_alloc): Default
24766         `sentinelpos' to -1.
24767
24768         * reflection.c (mono_image_get_array_token): Likewise.
24769
24770 2004-06-08  Martin Baulig  <martin@ximian.com>
24771
24772         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
24773
24774         * metadata.c (mono_metadata_parse_method_signature): When parsing
24775         a MethodDef which has VarArgs, set sentinelpos.
24776
24777         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
24778         `gint16' since we're using -1 for non-varargs methods.
24779
24780         * reflection.c
24781         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
24782         (method_encode_signature): Added varargs support.
24783         (method_builder_encode_signature): Likewise.
24784         (mono_image_get_varargs_method_token): New static method.
24785         (mono_image_create_method_token): New public method; this is
24786         called via an icall instead of mono_image_create_token() when
24787         calling a varargs method.       
24788
24789 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
24790
24791         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
24792
24793 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24794
24795         * culture-info-tables.h : Reflecting the latest locale-builder that
24796           fixed empty array representation ({} to {0}).
24797
24798 2004-06-07  Jackson Harper  <jackson@ximian.com>
24799
24800         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
24801         looking up extra gac paths. This allows MONO_GAC_PATH to act
24802         exactly like a prefix.
24803         
24804 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
24805
24806         * reflection.c (mono_reflection_type_from_name): Make a copy of the
24807         type name before modifying it. Fixes #59405.
24808
24809 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24810
24811         * culture-info.h: added fields for "all datetime patterns".
24812         * locales.c: (  ves_icall_System_Globalization_CultureInfo
24813           _construct_datetime_format ()): fill xxx_patterns fields.
24814         * object.h: added fields for "all datetime patterns" to
24815           MonoDateTimeFormatInfo.
24816         * culture-info-tables.h: reflecting locale-builder updates.
24817
24818 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
24819
24820         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
24821         the event has no add and remove methods. Fixes #59629.
24822
24823 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
24824
24825         * object.c: Fixed possible integer overflow when allocating large
24826         strings.
24827
24828 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
24829
24830         * culture-info-tables.h: reflecting locale-builder updates.
24831
24832 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
24833
24834         * culture-info-tables.h: reflecting locale-builder updates.
24835
24836 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
24837
24838         * culture-info-tables.h: reflecting locale-builder updates.
24839
24840 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
24841
24842         * threads.c: Made Thread.Sleep abortable.
24843
24844 2004-06-02  Martin Baulig  <martin@ximian.com>
24845
24846         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
24847
24848         * debug-mono-symfile.h: Bumped symbol file version number to 37.
24849
24850 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
24851
24852         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
24853
24854 2004-05-30  Jackson Harper  <jackson@ximian.com>
24855
24856         * reflection.c: Do not hardcode assembly versions or public key
24857         tokens anymore. All of this except the corlib section was dead
24858         code anyways.
24859         
24860 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
24861
24862         * object.c (mono_runtime_invoke_array): Automatically create boxed
24863         objects for byref valuetypes if needed. Fixes #59300.
24864         
24865         * object.c (mono_method_return_message_restore): Handle 
24866         MONO_TYPE_OBJECT as well.
24867
24868 2004-05-28  Jackson Harper  <jackson@ximian.com>
24869
24870         * reflection.c: The modified type encoding was causing build
24871         problems. Reverted for now.
24872         
24873 2004-05-28  Jackson Harper  <jackson@ximian.com>
24874
24875         * reflection.c/h: Take an assembly ref so that we dont create
24876         fully qualified names when encoding types in the same assembly as
24877         the custom attribute being emitted.
24878         * appdomain.c: Increment version number.
24879         
24880 2004-05-26  Duncan Mak  <duncan@ximian.com>
24881
24882         * icall.c
24883         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
24884         Set the full version number (major, minor, build, revision).
24885
24886 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
24887
24888         * marshal.c (emit_struct_conv): increment src/dst after blit
24889         (mono_marshal_get_managed_wrapper,
24890         mono_marshal_get_native_wrapper): make sure we have marshalling
24891         info before marshalling params (info computation affects
24892         blittable)
24893
24894         * class.c (class_compute_field_layout): correctly deal with
24895         blittable
24896         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
24897         value types (as per what windows dows by default)
24898         (mono_class_setup_mono_type): System.ValueType is blittable
24899         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
24900         blittable
24901
24902         * marshal.c (mono_marshal_load_type_info): flag types  as
24903         non-blittable if the native layout doesn't match the managed
24904         layout
24905
24906 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24907
24908         * appdomain.c: don't add stuff in the private search path that is
24909         above the application base. If application base is not set, there's
24910         no private search path.
24911
24912 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
24913
24914         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
24915         byref struct arguments in native->managed marshalling.
24916
24917 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
24918
24919         * marshal.c (mono_marshal_get_runtime_invoke): correctly
24920         cache methods using signature (special case for methods
24921         that are value type or string class)
24922         
24923         * image.c (mono_image_close): clean up allocated GSList's
24924         in runtime_invoke_cache.
24925
24926 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24927
24928         * mono-config.c: set the correct path for mono_cfg_dir on windows when
24929         there's no MONO_CFG_DIR environment variable defined.
24930
24931 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24932
24933         * threads.c: windows version must be >= 0x0500 to include OpenThread.
24934
24935 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
24936
24937         * threadpool.c: Really wait for 500ms after the async call, even if the wait
24938           is interrumped.
24939         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
24940           before waiting for it, and call CloseHandle after the wait to unref it.
24941           This will make sure that handles are not disposed too early.
24942
24943 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24944
24945         * appdomain.c:
24946         * appdomain.h:
24947         * icall.c: removed
24948         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
24949         needed now.
24950
24951         * object.c: se the application_base only for the domain that runs
24952         Main. Fixes bug #59216,
24953
24954 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24955
24956         * appdomain.c:
24957         * object.c: only the domain in which Main is run have
24958         SetupInformation.ConfigurationFile set, so moved a few lines from
24959         appdomain.c to object.c.
24960
24961 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24962
24963         * appdomain.c: we tried to load [name].(dll|exe), but according
24964         to bug #57710, we must also try [culture]/[name].(dll|exe) and
24965         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
24966         There's a test case attached to bug #58922.
24967
24968 2004-05-27  Dick Porter  <dick@ximian.com>
24969
24970         * icall.c:
24971         * file-io.c: Implemented icalls for locking and unlocking regions
24972         in a file.
24973         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
24974         FALSE on error (fixes both compiler warning and real bug.)
24975
24976 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
24977
24978         * culture-info-tables.h: reflecting locale-builder updates.
24979
24980           (Added missing ChangeLog entry for 05/26)
24981
24982 2004-05-27  Jackson Harper  <jackson@ximian.com>
24983
24984         * locales.c: Fix some cut and paste errors.
24985         
24986 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24987
24988         * mono-config.c: set the correct path for config. directory on windows.
24989
24990 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
24991
24992         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
24993           on win32.
24994
24995 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
24996
24997         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
24998         from pinvoke functions.
24999         
25000         * marshal.c (mono_ftnptr_to_delegate): Implement this.
25001
25002 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
25003
25004         * culture-info-tables.h: reflecting locale-builder updates.
25005
25006 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
25007
25008         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
25009         #59086.
25010
25011 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
25012
25013         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
25014         * icall.c: Modified icalls for RNG.
25015         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
25016         Windows (CryptoAPI).
25017
25018 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25019
25020         * locales.c: Fix build.
25021
25022 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
25023
25024         * culture-info-tables.h: reflecting locale-builder updates.
25025
25026 2004-05-25  Jackson Harper  <jackson@ximian.com>
25027
25028         * locales.c: When creating the current culture use the $LANGs
25029         specific culture. So DateTimeFormat and NumberFormat entries are created.
25030         
25031 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25032
25033         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
25034         a char array as parameter.
25035
25036 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
25037
25038         * image.c: In mono_image_open(), always use an absolute path name to
25039           look for already loaded images.
25040
25041 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
25042
25043         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
25044         missing in the windows build (like older cygwin include files).
25045
25046 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
25047
25048         * icall.c: Fixed check for possible integer overflow in Buffer_
25049         BlockCopy icall. Replaced comments style // by /* */.
25050
25051 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
25052
25053         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
25054         
25055         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
25056         check after MONO_VTADDR. Fixes pinvoke2.exe.
25057
25058         * marshal.h marshal.c metadata.h: Add beginnings of support for
25059         ftnptr -> delegate marshalling.
25060
25061 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
25062
25063         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
25064         * threads.c: Fix warnings.
25065
25066 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
25067
25068         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
25069         * icall.c: Registered icalls for Suspend and Resume.
25070         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
25071           Thread.Abort.
25072         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
25073         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
25074         * process.c: Use WaitForSingleObjectEx.
25075         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
25076           checkpoints.
25077         * threads.c, threads.h: Make use of new Ex wait methods. Improved
25078           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
25079           for Suspend and Resume. Added new mono_thread_stop, used for stoping
25080           background threads. Added basic support for Abort in Windows.
25081           Start new threads using a managed delegate invoke wrapper. This wrapper
25082           has an interruption checkpoint that is needed since an interruption
25083           can be requested before the thread leaves the unmanaged code that starts 
25084           the thread.
25085         * marshal.c: Added interruption checkpoint after every native call, and
25086           also before managed calls for wrappers called from unmanaged code to
25087           go into managed code.
25088         * object.h: Added new field in MonoThread to keep track of interruption
25089           requests.
25090
25091 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
25092
25093         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
25094         calls.
25095
25096 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25097
25098         * appdomain.c:
25099         * assembly.c:
25100         * gc.c:
25101         * locales.c:
25102         * mono-config.c:
25103         * rand.c: getenv -> g_getenv (windows!)
25104
25105         * process.c: complete_path is also used on non-windows platforms.
25106
25107 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25108
25109         * icall.c: new signature for Process_Start.
25110
25111         * process.[ch]: new signature for Process_Start. If we're on windows
25112         and UseShellExecute is false, we have to search for the program by
25113         ourselves if we don't get a full path.
25114
25115 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
25116
25117         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
25118         marshalling and call CleanUpNativeData if needed. Fixes #58646.
25119
25120 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25121
25122         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
25123         Fixes bug #58373.
25124
25125 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25126
25127         * process.c: use double quotes to quote program name and arguments on
25128         windows. Fixes bug #58575.
25129
25130 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25131
25132         * file-io.c: don't return "." and ".." when using windows Find*File.
25133
25134 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
25135
25136         * marshal.c: Don't pass wrappers to message init because method 
25137         addressed used to lookup metadata. part of remoting[2|3] fix.
25138
25139 2004-05-15  Jackson Harper  <jackson@ximian.com>
25140
25141         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
25142         path is essentially the same as MONO_PATH except that it points to
25143         GACs instead of lib directories.
25144         * loader.h: The user gac is gone so we dont need function to
25145         enable/disable it.
25146         * mono-config.c: user gac option is now gone.
25147         
25148 2004-05-15  Jackson Harper  <jackson@ximian.com>
25149
25150         * culture-info.h: Make defines more consistent, add calendar data
25151         to the culture info table.
25152         * culture-info-tables.h: Add basic calendar data. Basically
25153         everyone gets default gregorian until all the data is
25154         updated.
25155         * locales.c: Use the new consistent defines. Set calendar data for
25156         culture info objects.
25157         * object.h: add a field for calendar data to CultureInfo
25158         
25159 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
25160
25161         * image.c: image->runtime_invoke_cache is keyed on signatures now.
25162         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
25163         a signature.
25164         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
25165         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
25166         an extra param that is the pointer of the method to invoke. The IL for
25167         the invoke method is no longer specific to the method, but to the
25168         signature of the method. Thus, we can share the same code for multiple
25169         methods. This reduces the number of methods that have to be compiled.
25170
25171 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
25172
25173         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
25174
25175         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
25176
25177         * icall.c: Optimize Buffer.BlockCopy.
25178
25179 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25180
25181         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
25182         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
25183         quote). Changed them to "MMMM yyyy".
25184
25185 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
25186
25187         * rand.c
25188         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
25189
25190 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
25191
25192         * reflection.h: Updated after changes to managed structures.
25193
25194         * appdomain.c: Bump corlib version.
25195
25196 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25197
25198         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
25199         windows.
25200
25201 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25202
25203         * Makefile.am: link to ../os/libmonoos.la on windows.
25204
25205         * assembly.c:
25206                 -If MONO_DEBUG, warn about non-existing directories in
25207                 MONO_PATH.
25208                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
25209                 compile time variable.
25210                 -Removed init_default_path and call mono_set_rootdir from
25211                 libmonoos.a instead (windows only).
25212
25213         * assembly.h: declare mono_assembly_getrootdir().
25214
25215         * domain.c:
25216         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
25217
25218         * loader.c: s/getenv/g_getenv/
25219
25220 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
25221
25222         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
25223
25224         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
25225
25226         * metadata.h: Add new marshalling conversions.
25227
25228         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
25229         function.
25230
25231         * reflection.c (mono_reflection_get_type): Lookup the type in all
25232         modules of a multi-module assembly. Fixes #58291.
25233
25234 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
25235
25236         * threads.c: Before aborting a background, set the StopRequested
25237         state.  This avoids throwing the Abort exception.
25238         In mono_thread_manage, don't continue with the shutdown until all
25239         aborted threads have actually stopped.
25240
25241 2004-05-10  Jackson Harper  <jackson@ximian.com>
25242
25243         * locales.c: Remove the modifier from culture names.
25244         
25245 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25246
25247         * Makefile.am: monosn is not installed any more. It has been deprecated
25248         in favor of sn.
25249
25250 2004-05-07  Jackson Harper  <jackson@ximian.com>
25251
25252         * locales.c
25253         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
25254         Fix array construction, add bailout if the length is 0.
25255
25256 2004-05-07  Dick Porter  <dick@ximian.com>
25257
25258         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
25259         machine doesn't have a DNS entry.  Patch by Urs Muff
25260         (umuff@quark.com), fixes bug 57928.
25261
25262 2004-05-06  Jackson Harper  <jackson@ximian.com>
25263
25264         * reflection.c: Handle null PublicTokens properly. alloc mem for
25265         assembly names culture so we dont crash when freeing it.
25266         
25267 2004-05-06  Jackson Harper  <jackson@ximian.com>
25268
25269         * assembly.c: Check the usergac when loading with partial names.
25270         
25271 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
25272
25273         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
25274         does nothing for now (not required for Linux/Windows) but the class
25275         library can call it (and a newer or modified runtime could need it).
25276         * icall.c: Registred icall.
25277
25278 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25279
25280         * loader.c: prints a message on module loading error we set MONO_DEBUG
25281         environment variable.
25282
25283 2004-05-05  Jackson Harper  <jackson@ximian.com>
25284
25285         * appdomain.c: Handle PublicKeyToken=null properly.
25286         
25287 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
25288
25289         * environment.c|h: Added icall ves_icall_System_Environment_
25290         GetOSVersionString to get the current OS version as a string.
25291         * icall.c: Registred icall.
25292
25293 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
25294
25295         * object.c: in mono_object_get_virtual_method(), take into account that
25296         non-virtual methods don't have a slot in the vtable. Check needed when
25297         the object is a proxy.
25298
25299 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
25300
25301         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
25302         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
25303
25304         * object.c (mono_class_compute_gc_descriptor): Fix warning.
25305
25306         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
25307         passed when a valuetype is expected.
25308
25309         * object.c (mono_unhandled_exception): Only set the exit code if the
25310         exception happens in the main thread. Fixes thread5.exe.
25311
25312         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
25313         invalid names. Fixes #58047.
25314
25315 2004-05-03  Jackson Harper  <jackson@ximian.com>
25316
25317         * assembly.c: This line was committed accidently and is unneeded.
25318         
25319 2004-05-03  Jackson Harper  <jackson@ximian.com>
25320
25321         * icall.c: Add new icall for Assembly::LoadWithPartialName
25322         * assembly.c/.h: new function that probes the GAC to load partial
25323         assembly names by Paolo Molaro.
25324         
25325 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25326
25327         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
25328         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
25329         (type_get_fully_qualified_name): Added PublicKeyToken when building a
25330         full type name.
25331
25332 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25333
25334         * appdomain.c: fixed check for 'neutral' culture and removed warning.
25335         * reflection.c: fix bug when parsing a full type name and Version is not
25336         the last thing in the string.
25337
25338 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
25339
25340         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
25341         crashes when it is freed.
25342
25343 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25344
25345         * assembly.c: print the compat warning to stderr.
25346
25347 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
25348
25349         * assembly.c (mono_assembly_load_references): Add a compatibility
25350         hack to run old applications that might be still referencing the
25351         3300-based assemblies, only do this for System.xxx.
25352
25353 2004-05-01  Jackson Harper  <jackson@ximian.com>
25354
25355         * appdomain.c: If the culture is neutral we set it to "".
25356         
25357 2004-04-29  Jackson Harper  <jackson@ximian.com>
25358
25359         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
25360
25361 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
25362  
25363         * string-icalls.c: added low overhead function for copying chars
25364         * icall.c: added needed icall for the above function
25365  
25366 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25367
25368         * icall.c: fix return value of get_global_assembly_cache.  Implemented
25369         Environment.GetLogicalDrives.
25370
25371 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
25372
25373         * rand.c: try and talk to egd or prngd
25374         for random bytes if opening devices fail.
25375
25376 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
25377
25378         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
25379         alignment for the type using the native alignment of its members 
25380         instead of using klass->min_align.
25381
25382         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
25383
25384 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25385
25386         * file-io.c:
25387         * socket-io.c: added check for sys/aio.h.
25388
25389 2004-04-28  Dick Porter  <dick@ximian.com>
25390
25391         * threads.c: Don't abort a thread thats already aborting, when
25392         terminating everything.
25393
25394 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25395
25396         * icall.c: added 2 new async calls for Socket.
25397
25398         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
25399         IO on *nix systems.
25400
25401         * threadpool.c: removed unused variable.
25402
25403 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
25404
25405         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
25406
25407 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25408
25409         * locales.c: put back string_invariant_tolower () and
25410         string_invariant_toupper ().
25411
25412 2004-04-26 David Waite <mass@akuma.org>
25413
25414         * file-io.h:
25415         * socket-io.h:
25416         * threads.h:
25417         * unicode.h: remove comma from end of enumeration declarations
25418
25419 2004-04-26 David Waite <mass@akuma.org>
25420
25421         * debug-mono-symfile.h:
25422         * decimal.c:
25423         * mono_debug.h:
25424         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
25425
25426
25427 2004-04-26  Jackson Harper  <jackson@ximian.com>
25428
25429         * appdomain.c: Increment version number.
25430         
25431 2004-04-26  Jackson Harper  <jackson@ximian.com>
25432
25433         * appdomain.c: Set assembly references public token value when
25434         PublicKeyToken is specified, not the hash_value. Free public token
25435         values when free assembly name data. Previously the public key
25436         token was hex decoded, however we are using hex encoded public key
25437         tokens, so this is not neccasary.
25438         * assembly.c: Lookup assemblies in the gac if their public token
25439         value is set. Add function to allow enabling user gac
25440         lookups. Specify whether or not the assembly was loaded from the
25441         GAC. Compare full assembly names when checking the cache for
25442         assemblies (Temporarily disabled see comment in code). Remove
25443         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
25444         specifies trace-loader they get extra info to stdout on the
25445         loading of assemblies.
25446         * image.h: Add a field for an assembly references public token
25447         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
25448         whether an assembly has been loaded from the GAC.
25449         * image.c: Remove a corlib -> mscorlib name mapping.
25450         * loader.h: Add function to enable/disable the user gac.
25451         * mono-config.c: Check if the usergac is enabled in the config
25452         file.
25453         * icall.c: New icall to determine whether or not an assembly has
25454         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
25455         * tabldefs.h: Add constant for assemblyref flag that specifies a
25456         full public key is used instead of a public token.
25457         * reflection.c: Remove mscorlib -> corlib mappings. Set
25458         PublicTokenValue instead of hash value. This value is a hex
25459         string so it does not need to be expanded.
25460
25461 2004-04-26  Martin Baulig  <martin@ximian.com>
25462
25463         * mono-debug-debugger.c (mono_debugger_initialize): Set
25464         `mono_debugger_initialized' before calling mono_debug_lock().
25465
25466 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
25467
25468         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
25469           InternalToUpper/InternalToLower.
25470         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
25471           removed invariant culture shortcut.  This is now done in managed code.
25472         * locales.c: (string_invariant_toupper/tolower) removed.
25473
25474 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25475
25476         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
25477         Added Poll internal call.
25478
25479         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
25480         call for Poll. Select was too heavy for polling a single socket.
25481
25482         * threadpool.[ch]: added mono_threadpool_cleanup.
25483         * threads.c: use it. Don't use Thread_Abort on windows.
25484
25485 2004-04-23  Martin Baulig  <martin@ximian.com>
25486
25487         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
25488
25489 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
25490
25491         * icall.c: Registred new icalls for key pair protection and added an
25492         icall for Environment.GetFolderPath on Windows.
25493         * security.c|h: Added new icalls for key pair protection.
25494
25495 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25496
25497         * socket-io.c: don't display the non-supported family warning for known
25498         families. Now this is not displayed on windows when checking support
25499         for IPv4/IPv6.
25500
25501 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25502
25503         * class.c: don't display the layout warning for static fields.
25504
25505 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
25506
25507         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
25508         * locales.c, locales.h: Added new icalls for culture-specific
25509         Char.ToLower and Char.ToUpper.
25510
25511 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25512
25513         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
25514         by David Waite.
25515
25516 2004-04-20  Martin Baulig  <martin@ximian.com>
25517
25518         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
25519         of the type name before passing it to mono_reflection_type_from_name().
25520
25521 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
25522
25523         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
25524         encodings here. Fixes #56965.
25525
25526 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
25527
25528         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
25529         fix test on strstr result not that I can see anything that
25530         relies on the result.
25531
25532 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
25533
25534         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
25535         Fixes #57081.
25536
25537         * marshal.c (mono_marshal_get_string_encoding): New helper function.
25538
25539         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
25540         function to determine which marshalling to use for strings. Fixes
25541         #56965.
25542
25543         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
25544
25545         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
25546
25547 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
25548
25549         * icall.c: #include mono-config.h
25550
25551 2004-04-15  Jackson Harper  <jackson@ximian.com>
25552
25553         * culture-info-tables.h: Fix date formats for en-US culture.
25554         
25555 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
25556
25557         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
25558         ThreadPool.SetMinThreads.
25559         * threadpool.c: Implemented ThreadPool.GetMinThreads and
25560         ThreadPool.SetMinThreads.
25561
25562 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
25563
25564         * mono-config.c: also load the .config file in the directory
25565         where the assembly was found.
25566
25567 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
25568
25569         * assembly.c: load per-assembly config files.
25570         * icall.c: decrapified code to get the config dir and moved to
25571         mono-config.c.
25572         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
25573         per-assembly config files. When doing a dll map lookup give precedence
25574         to the per-assembly data.
25575
25576 2004-04-14  Martin Baulig  <martin@ximian.com>
25577
25578         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
25579         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
25580         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
25581
25582         * mono-debugger-debugger.c: While the debugger is locked, remember
25583         whether the symbol tables have changes and send one single
25584         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
25585
25586 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
25587
25588         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
25589
25590         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
25591         function.
25592
25593         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
25594         account when marshalling string arrays. Fixes #56965.
25595
25596 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
25597
25598         * icall.c: Add new icalls mapping for security.
25599         * security.c|h: Add internal calls for WindowsIdentity,
25600         WindowsImpersonationContext and WindowsPrincipal.
25601
25602 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
25603
25604         * class.c: Added comment to ensure the System.MonoDummy class
25605         is removed when no longer necessary
25606
25607 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
25608
25609         * appdomain.c: Pass arguments to the bootstraping exceptions to
25610         minimize JITed methods at boot
25611
25612         * metadata.c (mono_exception_from_name_two_strings): Allow for the
25613         second string to be null.
25614
25615         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
25616         Change the protocol to minimize the JIT methods at startup.  Now
25617         it Returns the internal codepage, if the value of "int_code_page"
25618         is 1 at entry, and we can not compute a suitable code page
25619         number, returns the code page as a string.
25620
25621 2004-04-13  Jackson Harper  <jackson@ximian.com>
25622
25623         * culture-info-tables.h: Fix number of decimal digits for all
25624         english locales.
25625
25626 2004-04-13  Jackson Harper  <jackson@ximian.com>
25627
25628         * icall.c: Clairfy out of sync error message. It is not always
25629         your corlib that is out of sync.
25630
25631 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
25632
25633         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
25634         properties when only the set accessor is overriden. Fixes #55874.
25635
25636 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
25637
25638         * assembly.c (mono_assembly_load_references): Make this thread safe.
25639         Fixes #56327.
25640
25641 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
25642
25643         * monosn.c: Add missing initialization calls.
25644
25645 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
25646
25647         * locales.c:
25648         ves_icall_System_Globalization_CultureInfo_construct_number_format
25649         Fix g_assert so it compiles on fussier compilers re int/ptr
25650         mismatch
25651
25652 2004-04-08  Dick Porter  <dick@ximian.com>
25653
25654         * socket-io.h:
25655         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
25656         53992.  Also rearrange the code so that the internal calls return
25657         an error value and exceptions are thrown from managed code.
25658
25659         * icall.c: Add type info to the socket icalls.
25660
25661 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25662
25663         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
25664         owes me a beer.
25665
25666 2004-04-07  Martin Baulig  <martin@ximian.com>
25667
25668         * class.c (mono_class_from_generic_parameter): Don't default
25669         `klass->parent' to `mono_defaults.object_type'.
25670
25671 2004-04-07  Martin Baulig  <martin@ximian.com>
25672
25673         * reflection.c (mono_reflection_initialize_generic_parameter): Set
25674         `param->pklass->reflection_info'.       
25675
25676 2004-04-07  Jackson Harper  <jackson@ximian.com>
25677
25678         * culture-info-tables.h: Fix date separator symbol.
25679         
25680 2004-04-07  Martin Baulig  <martin@ximian.com>
25681
25682         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
25683         from System.Type to System.MonoType.
25684
25685 2004-04-07  Martin Baulig  <martin@ximian.com>
25686
25687         * reflection.h
25688         (MonoReflectionGenericParam): Added `has_reference_type' and
25689         `has_value_type' fields.
25690
25691         * reflection.c (mono_image_get_generic_param_info): Encode the
25692         correct flags if we have the `class' or `struct' constraint.
25693
25694 2004-04-07  Martin Baulig  <martin@ximian.com>
25695
25696         * reflection.h
25697         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
25698
25699 2004-04-07  Jackson Harper  <jackson@ximian.com>
25700
25701         * appdomain.c: Revert extra patches, just wanted to bump the
25702         version number.
25703         
25704 2004-04-07  Jackson Harper  <jackson@ximian.com>
25705
25706         * Makefile.am: Add culture-info private headers.
25707         * icall.c: Add new icalls for contructing locales.
25708         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
25709         * locales.h: Declare new culture info construction methods.
25710         * object.h: Add new fields used to avoid the CultureMap to
25711         MonoCultureInfo.
25712         * culture-info.h: Definition of structs used in the culture info
25713         tables.
25714         * culture-info-tables.h: Autogenerated tables that contain culture
25715         info data. This file was generated with the locale-builder tool.
25716         * appdomain.c: Incement corlib version number.
25717         
25718 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
25719
25720         * appdomain.c: (mono_runtime_init) move mono_thread_init
25721         to before mono_object_new calls so critical sections
25722         are initialized before use.
25723
25724 2004-04-07  Martin Baulig  <martin@ximian.com>
25725
25726         * icall.c
25727         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
25728         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
25729         (ves_icall_MonoGenericParam_initialize): Removed.
25730         (monogenericparam_icalls): Removed.
25731         (generictypeparambuilder_icalls): Added new table for
25732         System.Reflection.Emit.GenericTypeParameterBuilder.
25733
25734         * reflection.c
25735         (mono_reflection_define_generic_parameter): Removed.
25736         (mono_reflection_initialize_generic_parameter): This is now called
25737         from GenericTypeParameterBuilder's .ctor.
25738
25739 2004-04-06  Martin Baulig  <martin@ximian.com>
25740
25741         * class.c (mono_class_init): Don't inflate nested classes in a
25742         generic instance.
25743         (mono_type_get_name_recurse): Include the generic arguments for
25744         generic instances and generic type declarations.
25745         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
25746         (_mono_class_get_instantiation_name): Removed.
25747         (mono_class_create_generic): Always use `gklass->name' as our name.
25748
25749         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
25750
25751         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
25752         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
25753         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
25754         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
25755         closed generic methods here.
25756
25757         * reflection.c
25758         (mono_reflection_generic_inst_get_nested_types): Removed.
25759         (inflate_mono_method): Copy the generic parameters from the
25760         MonoMethodHeader into out MonoGenericMethod.
25761
25762 2004-04-06  Martin Baulig  <martin@ximian.com>
25763
25764         * row-indexes.h
25765         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
25766
25767         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
25768
25769         * reflection.c (build_compressed_metadata): If we have any entries
25770         in the GenericParam, MethodSpec or GenericParamConstraint tables,
25771         set the header version to 1.1.
25772
25773 2004-04-06  Martin Baulig  <martin@ximian.com>
25774
25775         * class.c (mono_class_init): If we're a generic instance,
25776         initialize our nested classes, too.
25777         (_mono_class_get_instantiation_name): Deal with the new `!%d'
25778         suffix. 
25779
25780 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25781
25782         * process.c: quote the argument passed to the shell on windows.
25783
25784 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
25785
25786         * threads.c (mono_alloc_special_static_data): Allow this to be
25787         called during startup.
25788
25789 2004-04-02  Martin Baulig  <martin@ximian.com>
25790
25791         * icall.c
25792         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
25793
25794 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
25795
25796         * icall.c: Fix build.
25797
25798 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
25799
25800         * Makefile.am: Added security.c|h.
25801         * icall.c: Added icall for get_UserName;
25802         * security.c: New file for security related icalls. Added function
25803         get_UserName for System.Environment (fix #56144).
25804         * security.h: New. Header file for security.c
25805
25806 2004-04-02  Dick Porter  <dick@ximian.com>
25807
25808         * icall.c: Deleted the icalls that were obsoleted some time ago
25809         by the ICU string code, and which were mixed into the icall
25810         rearranging.  Fixes bug 55969.
25811
25812         * string-icalls.h: 
25813         * string-icalls.c: Deleted the code that those icalls reference.
25814
25815 2004-04-01  Martin Baulig  <martin@ximian.com>
25816
25817         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
25818
25819         * class.c (mono_class_from_generic_parameter): Don't set 
25820         TYPE_ATTRIBUTE_INTERFACE.
25821         (my_mono_class_from_generic_parameter): Likewise.
25822
25823 2004-04-01  Martin Baulig  <martin@ximian.com>
25824
25825         * loader.c (find_method): Added an optional `MonoClass *ic'
25826         argument to search in a specific interface.
25827         (mono_get_method_constrained): New public function.
25828
25829 2004-04-01  Martin Baulig  <martin@ximian.com>
25830
25831         * reflection.c (mono_image_get_generic_field_token): Use the
25832         `handleref' cache here.
25833
25834 2004-04-01  Martin Baulig  <martin@ximian.com>
25835
25836         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
25837
25838         * reflection.c (create_generic_typespec): Use the `typespec' hash
25839         here, not the `typeref' one.    
25840
25841 2004-04-01  Martin Baulig  <martin@ximian.com>
25842
25843         * class.c (mono_class_inflate_generic_type): Moved the
25844         functionality into a new static inflate_generic_type() which
25845         returns NULL if it didn't do anything.  Only increment the
25846         `mono_stats.inflated_type_count' if we actually inflated
25847         something.
25848         (mono_class_get_full): Check the classes type to see whether we
25849         need to inflate it; also inflate MONO_TYPE_(M)VAR.
25850
25851 2004-04-01  Jackson Harper  <jackson@ximian.com>
25852
25853         * reflection.c: Set culture for assembly references.
25854         
25855 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
25856
25857         * reflection.[ch], icall.[ch], Fix support for pinning variables.
25858
25859 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25860
25861         * assembly.c:
25862         (do_mono_assembly_open): the critical section also covers
25863         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
25864
25865 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25866
25867         * threads.c:
25868         (mono_manage_threads): abort the background threads when finishing.
25869         Fixes bug #47232.
25870
25871 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25872
25873         * gc.c: only close the done_event handle if there was no timeout.
25874         C-ified comments.
25875
25876 2004-03-30  Martin Baulig  <martin@ximian.com>
25877
25878         * icall.c (icall_entries): It's called "System.Activator", not
25879         "System.Activation".    
25880
25881 2004-03-30  Martin Baulig  <martin@ximian.com>
25882
25883         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
25884         (mono_class_create_from_typespec): Likewise.
25885
25886 2004-03-30  Martin Baulig  <martin@ximian.com>
25887
25888         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
25889         `has_ctor_constraint' and `initialized'.
25890
25891 2004-03-30  Martin Baulig  <martin@ximian.com>
25892
25893         * reflection.c (encode_new_constraint): New static function to add
25894         the constructor constraint attribute to a type parameter.
25895         (encode_constraints): Call encode_new_constraint() if necessary.
25896
25897         * reflection.h
25898         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
25899
25900         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
25901         
25902 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
25903
25904         * reflection.c, icall.c: add support for pinning variables. 
25905
25906 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
25907
25908         * marshal.c (mono_marshal_get_managed_wrapper):
25909         init bool local with zero rather than null.
25910
25911 2004-03-29  Martin Baulig  <martin@ximian.com>
25912
25913         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
25914         the "official" behavior here.
25915         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
25916
25917 2004-03-29  Martin Baulig  <martin@ximian.com>
25918
25919         * icall.c: Reflect latest API changes.
25920
25921 2004-03-29  Martin Baulig  <martin@ximian.com>
25922
25923         * loader.c (mono_get_method_from_token): Also call
25924         mono_metadata_load_generic_params () for abstract and interface
25925         methods; replace the type arguments in the method signature with
25926         the ones which are loaded from the metadata.
25927
25928 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
25929
25930         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
25931         of the lock is not the current thread. MS.NET don't do it, in spite of
25932         what the documentation says. See bug #56157.
25933
25934 2004-03-28  Martin Baulig  <martin@ximian.com>
25935
25936         * class.c (mono_class_init): Don't call init_properties() and
25937         init_events() for generic instances; set `prop->parent' when
25938         inflating properties.
25939
25940         * reflection.c (mono_generic_inst_get_object): Call
25941         `mono_class_init (ginst->klass)'.
25942         (mono_type_get_object): Only create a MonoGenericInst if your
25943         generic type is a TypeBuilder.
25944         (do_mono_reflection_bind_generic_parameters): Only set
25945         `ginst->is_dynamic' if our generic type is a TypeBuilder.
25946
25947 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
25948
25949         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
25950         Fixes #56091.
25951
25952 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25953
25954         * icall.c: added Kill_internal icall.
25955         * process.[ch]: added Kill_internal icall.
25956
25957 2004-03-25  Martin Baulig  <martin@ximian.com>
25958
25959         * class.h (MonoStats): Added `generic_instance_count',
25960         `inflated_method_count', `inflated_type_count' and
25961         `generics_metadata_size'.       
25962
25963 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25964
25965         * reflection.c: no warnings now.
25966
25967 2004-03-25  Martin Baulig  <martin@ximian.com>
25968
25969         * class.c (mono_class_get_full): New public function; does a
25970         mono_class_get(), but also takes a `MonoGenericContext *'.
25971
25972         * loader.c (mono_field_from_memberref): Renamed to
25973         `field_from_memberref', made static and added `MonoGenericContext *'
25974         argument.
25975         (mono_field_from_token): Added `MonoGenericInst *' argument.
25976         (method_from_memberef): Likewise.
25977         (mono_get_method_from_token): Likewise.
25978         (mono_get_method_full): New public function; does a
25979         mono_get_method(), but also takes a `MonoGenericContext *'.
25980
25981         * verify.c (mono_method_verify): Get the method's generic context
25982         and pass it to mono_field_from_token(), mono_get_method_full() and
25983         mono_class_get_full().
25984
25985 2004-03-25  Martin Baulig  <martin@ximian.com>
25986
25987         * class.c (mono_class_inflate_generic_type): Take a
25988         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
25989         `MonoGenericMethod *'.
25990
25991 2004-03-25  Martin Baulig  <martin@ximian.com>
25992
25993         * loader.h (MonoMethodInflated): Store the MonoGenericContext
25994         instead of the MonoGenericMethod here.
25995
25996 2004-03-25  Martin Baulig  <martin@ximian.com>
25997
25998         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
25999         each time we create a new MonoGenericInst, we also create a new
26000         context which points back to us.
26001
26002         * class.c (inflate_method): Use `ginst->context' instead of
26003         creating a new context.
26004
26005         * loader.c (method_from_memberref): Use
26006         `klass->generic_inst->context' instead of creating a new context.
26007
26008 2004-03-25  Martin Baulig  <martin@ximian.com>
26009
26010         * class.h (MonoGenericContext): New struct.
26011         (MonoGenericMethod): Removed `generic_inst'.
26012
26013         * class.c (mono_class_inflate_generic_method): Take a
26014         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
26015
26016 2004-03-25  Martin Baulig  <martin@ximian.com>
26017
26018         * loader.h (MonoMethodInflated): New typedef.
26019
26020         * metadata.h (MonoMethodSignature): Removed `gen_method', make
26021         `generic_param_count' consume just 30 bits, added `is_inflated'
26022         and `has_type_parameters' flags (one bit each).
26023
26024         * class.c (mono_class_inflate_generic_method): Create a
26025         MonoMethodInflated instead of a MonoMethodNormal and set
26026         `is_inflated' in the method signature.
26027
26028         * class.h (MonoGenericMethod): Removed `generic_method'.
26029
26030 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
26031
26032         * image.c: Make sure the name of a MonoImage is always an absolute path.
26033           This fixes bug #54415.
26034
26035 2004-03-24  Martin Baulig  <martin@ximian.com>
26036
26037         * class.c (mono_class_setup_vtable): If we're a generic instance,
26038         use our generic type's vtable size.
26039
26040 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
26041
26042         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
26043         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
26044         problems.
26045
26046 2004-03-23  Martin Baulig  <martin@ximian.com>
26047
26048         * class.h (MonoDynamicGenericInst): Added `int count_events' and
26049         `MonoEvent *events'.
26050
26051         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
26052         (typebuilder_icalls): Added "get_event_info"; calls
26053         mono_reflection_event_builder_get_event_info(). 
26054
26055         * reflection.c (mono_reflection_generic_inst_initialize): Added
26056         `MonoArray *events'.
26057         (mono_reflection_event_builder_get_event_info): New function.
26058
26059 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
26060
26061         * object.h: add mono_type_initialization_init
26062
26063         * object.c (mono_runtime_class_init): 
26064         implement class constructor synchronization rules
26065         to cope with threading issues.  
26066         add mono_type_initialization_init
26067
26068         * appdomain.c (mono_runtime_init): call 
26069         mono_type_initialization_init
26070
26071         * class.h: removing initializing field from MonoVTable
26072
26073 2004-03-23  Martin Baulig  <martin@ximian.com>
26074
26075         * class.c (my_mono_class_from_generic_parameter): Use
26076         `param->name' if it's not NULL. 
26077
26078 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
26079
26080         * class.c: do not insert non-virtual methods in the vtable.
26081         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
26082         that means the method is non-virtual. This never would have
26083         happened before.
26084
26085 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
26086
26087         * profiler.c: Added lock for accessing coverage_hash.
26088
26089 2004-03-22  Martin Baulig  <martin@ximian.com>
26090
26091         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
26092         `method->method->signature->generic_param_count != 0' to make it
26093         work for interface methods.
26094
26095 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26096
26097         * process.c: quote the string passed to the shell using g_shell_quote.
26098
26099 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26100
26101         * threads.c:
26102         (mono_threads_manage): don't remove the finalizer thread and self
26103         from the threads hash table so that mono_thread_manage can be called
26104         more than once.
26105
26106 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26107
26108         * process.c: quote the arguments when UseShellExecute is true. Fixes
26109         bug #55790.
26110
26111 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26112
26113         * threads.c: set mono_thread_detach as a cleanup routine for every
26114         thread. This way it's always executed upon thread termination, either
26115         aborted or finished normally. No more xsp hangs!
26116
26117 2004-03-17  Martin Baulig  <martin@ximian.com>
26118
26119         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
26120         `int count_nested' and a `MonoType **nested'.
26121
26122         * reflection.c (mono_reflection_bind_generic_parameters): Moved
26123         most of the functionality into a new static
26124         do_mono_reflection_bind_generic_parameters() and don't take a
26125         `MonoType *nested_in' argument any more.  Don't compute nested
26126         types here.
26127         (mono_reflection_generic_inst_get_nested_types): New public method
26128         to get nested types.
26129
26130         * class.c (mono_class_create_generic): Set `klass->nested_in' if
26131         we're a nested class.
26132
26133         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
26134         mono_reflection_generic_inst_get_nested_types() to compute the
26135         nested types.
26136
26137 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26138
26139         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
26140         descriptive error message under windows.
26141         
26142 2004-03-17  Martin Baulig  <martin@ximian.com>
26143
26144         * class.c (dup_type): Added `const MonoType *original' argument;
26145         copy the attrs from the original type.
26146
26147 2004-03-17  Martin Baulig  <martin@ximian.com>
26148
26149         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
26150         `m->generic_inst_cache' here.
26151
26152 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26153
26154         * exception.h exception.c: Add stack_overflow_exception.
26155
26156 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26157
26158         * threadpool.c:
26159         (overlapped_callback): call SetEvent *after* invoking the callback.
26160         No need to call CloseHandle.
26161
26162 2004-03-16  Martin Baulig  <martin@ximian.com>
26163
26164         * reflection.c (mono_image_get_fieldref_token): Take a
26165         `MonoReflectionField *' instead of a `MonoClassField *' and a
26166         `MonoClass *'; store the `MonoReflectionField *' in the hash.
26167
26168 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26169
26170         * appdomain.c: don't add the culture to the filename we're looking for
26171         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
26172
26173 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26174
26175         * locales.c: don't ignore symbols when doing case insensitive compares.
26176         Thanks Dick! Fixes bug #54046.
26177
26178         * threads.c: surround 'threads' usage with enter/leave in
26179         mono_thread_manage.
26180
26181 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
26182
26183         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
26184         implicitly marshalled as [Out]. Fixes #55450.
26185
26186         (mono_marshal_get_runtime_invoke): Zero out the result if there is
26187         an exception.
26188
26189 2004-03-16  Martin Baulig  <martin@ximian.com>
26190
26191         * class.c (mono_class_from_generic_parameter): Use the actual
26192         parameter name. 
26193
26194 2004-03-16  Martin Baulig  <martin@ximian.com>
26195
26196         * reflection.c (type_get_signature_size): New static function.
26197         Compues the size of the type in a method signature.
26198         (method_get_signature_size): New static function; calls
26199         type_get_signature_size() to compute the actual size of the
26200         method's signature.
26201         (method_encode_signature): Use method_get_signature_size() to get
26202         the signature's size rather than using `nparams * 10'.
26203
26204 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26205
26206         * file-io.h: define here WapiOverlapped on windows. I don't want the
26207         regular OVERLAPPED one.
26208
26209         * file-io.c:
26210         * threadpool.c: somehow, BindIoCompletionCallback is not found.
26211         Disabling AIO on windows.
26212
26213 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26214
26215         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
26216         bug #55385.
26217
26218 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26219
26220         * appdomain.c: upgraded corlib version.
26221
26222         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
26223         and BeginWrite. Allow opening files for asynchrnous operations.
26224
26225         * file-io.h: new struct that maps FileStreamAsyncResult.
26226         * icall.c: added new icalls.
26227         * process.[ch]: support setting child process environment variables
26228         and use the SHELL or COMSPEC when UseShellExecute is true.
26229
26230         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
26231         callback for async. IO is here and also BindHandle.
26232
26233         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
26234         from here.
26235
26236 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
26237
26238         * reflection.c (create_custom_attr): Allow len == 0.
26239
26240         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
26241         computation on big-endian machines.
26242
26243 2004-03-13  Martin Baulig  <martin@ximian.com>
26244
26245         * class.h (MonoGenericInst): Added `int count_ifaces'.
26246
26247         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
26248         `ginst->count_ifaces' instead `klass->interface_count' since we
26249         may get called before the vtable is created.
26250
26251         * loader.c (mono_method_get_param_names): If we're a generic
26252         instance, return and don't initialize the class.
26253
26254         * reflection.c (mono_reflection_setup_generic_class): Don't call
26255         ensure_runtime_vtable().
26256         (mono_reflection_bind_generic_parameters): Set
26257         `ginst->count_ifaces'.
26258
26259 2004-03-11  Jackson Harper <jackson@ximian.com>
26260
26261         * icall.c:
26262         * unicode.c:
26263         * unicode.h: Remove unused System.Char icalls.
26264         
26265 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
26266
26267         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
26268         code when we P/Invoke the first library in Windows.Forms, instead
26269         of when we first open the assembly.
26270
26271         * assembly.c: Drop the lookup from here.
26272
26273 2004-03-10  Martin Baulig  <martin@ximian.com>
26274
26275         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
26276         class for properties, fields and events.  Finally fixes #54945.
26277
26278 2004-03-10  Martin Baulig  <martin@ximian.com>
26279
26280         * metadata.c (mono_metadata_class_equal): New static function;
26281         checks whether two generic instances or two generic parameters are
26282         equal.
26283         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
26284         compare classes.        
26285
26286 2004-03-10  Martin Baulig  <martin@ximian.com>
26287
26288         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
26289
26290         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
26291         argument and write it into the `reflection_info' field.
26292
26293         * icall.c
26294         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
26295         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
26296
26297 2004-03-09  Jackson Harper  <jackson@ximian.com>
26298
26299         * char-conversions.h: use 8 bits for numeric data its all we need
26300         * icall.c: numeric data is only 8 bits now.
26301
26302 2004-03-09  Martin Baulig  <martin@ximian.com>
26303
26304         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
26305
26306         * class.c (init_properties, init_events): Initialize the new
26307         `parent' field.
26308
26309         * reflection.c (typebuilder_setup_properties): Likewise.
26310         (typebuilder_setup_events): Likewise.
26311
26312         * reflection.h (MonoEventInfo): Replaced `parent with
26313         `declaring_type' and `reflected_type'.
26314
26315         * icall.c (ves_icall_get_property_info): Distinguish between
26316         declaring and reflected type.
26317         (ves_icall_get_event_info): Likewise.
26318
26319 2004-03-09  Martin Baulig  <martin@ximian.com>
26320
26321         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
26322         (ves_icall_Type_GetField): Correctly set field->klass.
26323
26324 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
26325
26326         * loader.h: Fix warning.
26327
26328 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
26329
26330         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
26331         library routine if present.  Notice that it will still continue
26332         executing even if its missing, for those working on the Gtk#
26333         edition of Windows.Forms.
26334
26335         * assembly.c (do_mono_assembly_open): If loading the
26336         System.Windows.Forms call mono_loader_wini_init.
26337
26338 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
26339
26340         * class.h: Added MonoRemoteClass struct.
26341         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
26342         function for MonoStrings.
26343         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
26344         Added internal call for getting the proxy type.
26345         * marshal.c: Get the type of transparent proxies from its remote_class.
26346         Added methods that generate the IL for type checks and casts:
26347         mono_marshal_get_isinst, mono_marshal_get_castclass, 
26348         mono_marshal_get_proxy_cancast.
26349         * marshal.h: Declaration of the previous new methods.
26350         * object.c: Added new moethods for creating and updating MonoRemoteClass
26351         instances: mono_remote_class, mono_upgrade_remote_class, 
26352         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
26353         * verify.c: FIx transparent_proxy_fields layout.
26354         * appdomain.c: Bump corlib version.
26355
26356 2004-03-04  Jackson Harper  <jackson@ximian.com>
26357
26358         * icall.c: Add icall to access char conversion tables.
26359         * char-conversions.h: Character conversion tables.
26360         * Makefile.am: Add char-conversions.h private header file.
26361         
26362 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
26363
26364         * appdomain.c (unload_thread_main): Increase unloading timeout to
26365         10 sec as a temporary workaround for Nant problems.
26366
26367 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
26368
26369         * gc.c: Add checks for GC_enable and GC_disable.
26370
26371         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
26372         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
26373         (bug #54988).
26374         
26375 2004-02-27  Martin Baulig  <martin@ximian.com>
26376
26377         * reflection.c (mono_reflection_bind_generic_parameters): Take a
26378         `MonoReflectionType *' instead of a `MonoType *'.
26379
26380 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
26381
26382         * gc.c (run_finalize): Avoid finalizing the object representing the
26383         finalizer thread.
26384         (finalizer_thread): Fix warning.
26385
26386 2004-02-25  Martin Baulig  <martin@ximian.com>
26387
26388         * class.c (_mono_class_get_instantiation_name): Added `int offset'
26389         argument for nested types.
26390         (mono_class_create_generic): Added support for nested generictypes.
26391
26392         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
26393         `GList *nested'.
26394
26395         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
26396
26397         * reflection.c (method_encode_signature): Increase the minimum
26398         value of `size' from 10 to 11.
26399         (mono_reflection_bind_generic_parameters): Take `int type_argc'
26400         and `MonoType **types' arguments instead of the `MonoArray
26401         *types'; added `MonoType *nested_in'.  Recursively instantiate
26402         nested classes. 
26403
26404 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
26405
26406         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
26407         stack_overflow_ex members which are used by exception handling.
26408
26409         * appdomain.c (mono_runtime_init): Initialize the new members.
26410
26411         * gc.c (mono_gc_enable): New helper function.
26412         * gc.c (mono_gc_disable): New helper function.
26413
26414 2004-02-23  Martin Baulig  <martin@ximian.com>
26415
26416         * icall.c: I must have been really stupid - make it actually work
26417         this time ;-)
26418
26419 2004-02-23  Martin Baulig  <martin@ximian.com>
26420
26421         * loader.c (method_from_memberref): Only inflate the method if
26422         it's in another klass.
26423
26424 2004-02-23  Martin Baulig  <martin@ximian.com>
26425
26426         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
26427         (mono_class_init): If we're a generic instance and an interface,
26428         compute `class->interface_id'; also create `class->interfaces'
26429         here and inflate them.
26430
26431         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
26432         `ginst->is_open'.
26433         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
26434
26435         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
26436
26437 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
26438
26439         * reflection.c (method_encode_code): Improved the error message
26440         generated by the exception.
26441
26442 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26443
26444         * icall.c: Martin did not do what he said in the ChangeLog for
26445         2004-02-18, but put back the changes for properties and events.
26446         Commenting those changes out again and adding comment to bug #54518.
26447         
26448         * process.c: removed warning.
26449
26450 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
26451
26452         * marshal.c (emit_struct_conv): Print an error message instead of
26453         asserting when a type does not have the StructLayout attribute.
26454
26455 2004-02-20  Martin Baulig  <martin@ximian.com>
26456
26457         * reflection.c (mono_type_get_object): Also use the cache for
26458         generic instances.
26459         (mono_reflection_bind_generic_parameters): Always compute
26460         `ginst->ifaces'.        
26461
26462 2004-02-20  Martin Baulig  <martin@ximian.com>
26463
26464         * class.h (MonoGenericMethod): Removed `klass'.
26465
26466         * class.c (mono_class_inflate_generic_method): Added `MonoClass
26467         *klass' argument.
26468
26469 2004-02-20  Martin Baulig  <martin@ximian.com>
26470
26471         * reflection.c (method_encode_methodspec): Actually use the
26472         uninflated signature for the memberref.
26473
26474 2004-02-20  Martin Baulig  <martin@ximian.com>
26475
26476         * class.h (MonoGenericMethod): Removed `declaring'.
26477
26478         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
26479         is NULL, compute it here.
26480
26481 2004-02-20  Martin Baulig  <martin@ximian.com>
26482
26483         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
26484
26485         * metadata.c (mono_metadata_generic_inst_hash): New method.
26486         (mono_metadata_generic_inst_equal): New method.
26487
26488         * reflection.c (mono_reflection_bind_generic_parameters): Use the
26489         `klass->image->generic_inst_cache' cache to avoid creating
26490         duplicate MonoGenericInst's.
26491
26492         * class.c (mono_class_inflate_generic_type): Use the cache.
26493
26494 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
26495
26496         * object.c: fixed gc descriptor calculation for embedded valuetypes.
26497
26498 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26499
26500         * icall.c: added Socket.WSAIoctl icall.
26501
26502         * socket-io.[ch]: implemented
26503         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
26504
26505 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
26506
26507         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
26508
26509 2004-02-18  Urs C Muff  <umuff@quark.com>
26510
26511         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
26512         this work on PPC and other big-endian architectures.
26513
26514         * debug-mono-symfile.h: Prepended the names of all the `guint32'
26515         fields with an underscore to make sure they're only accessed by
26516         the read32() macro.
26517
26518 2004-02-18  Martin Baulig  <martin@ximian.com>
26519
26520         * icall.c: Put the klass->refclass changes back for methods and
26521         fields, but not for properties and events.  We're currently not
26522         distinguishing between DeclaringType and ReflectedType for
26523         properties and events, that's what caused the regressions.
26524
26525 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26526
26527         * object.c:
26528         (mono_async_result_new): the handle can be NULL.
26529
26530         * threadpool.c: Use an event instead of a semaphore, don't initialize
26531         it until needed. This saves quite a few semaphores from being created
26532         when using the threadpool.
26533
26534 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
26535
26536         * object.c (mono_string_is_interned_lookup): Fix interning of long
26537         strings. Fixes #54473.
26538
26539         * domain.c (ldstr_equal): Optimize if the two strings are equal.
26540
26541         * icall.c: Revert the klass->refclass changes since they introduce
26542         regressions (bug #54518).
26543
26544 2004-02-18  Martin Baulig  <martin@ximian.com>
26545
26546         * class.c (mono_class_init): If we're a generic instance and don't
26547         come from a TypeBuilder, inflate our members here.
26548         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
26549         (mono_class_create_generic): New public method.
26550         (mono_class_initialize_generic): Removed.
26551         (get_instantiation_name): Renamed to
26552         _mono_class_get_instantiation_name() and made it public.
26553
26554 2004-02-18  Martin Baulig  <martin@ximian.com>
26555
26556         * class.c (mono_class_inflate_generic_type): Clear the new
26557         instance's `nginst->klass' when inflating a generic instance.
26558         (mono_class_is_subclass_of): Added (basic) support for generic
26559         instances.
26560
26561 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
26562
26563         * appdomain.h, domain.c: use a MonoCodeManager instead of a
26564         MonoMempool to hold compiled native code.
26565
26566 2004-02-17  Martin Baulig  <martin@ximian.com>
26567
26568         * class.h (MonoDynamicGenericInst): Added `count_properties' and
26569         `properties'.
26570
26571         * reflection.c (mono_reflection_generic_inst_initialize): Added
26572         `MonoArray *properties' argument.
26573
26574         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
26575
26576 2004-02-17  Martin Baulig  <martin@ximian.com>
26577
26578         * icall.c (ves_icall_Type_GetFields): Renamed to
26579         ves_icall_Type_GetFields_internal() and added a
26580         `MonoReflectionType *rtype' argument; pass it to
26581         mono_field_get_object() to set the field's "reflected" type.
26582         (ves_icall_Type_GetConstructors): Likewise.
26583         (ves_icall_Type_GetEvents): Likewise.
26584         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
26585         argument; pass it to mono_method_get_object() to set the method's
26586         "reflected" type.       
26587
26588 2004-02-17  Martin Baulig  <martin@ximian.com>
26589
26590         * class.h (MonoDynamicGenericInst): New type.
26591         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
26592
26593         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
26594         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
26595         (ves_icall_MonoGenericInst_GetFields): New interncall.
26596
26597         * class.c (mono_class_from_generic): Don't call
26598         mono_class_initialize_generic() if this is a dynamic instance;
26599         ie. it's being created from a TypeBuilder.
26600         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
26601         `class->byval_arg.type'.
26602
26603         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
26604         to `inflate_method' and made static.
26605         (mono_reflection_inflate_field): Removed.
26606         (mono_reflection_generic_inst_initialize): New public method.
26607
26608         * reflection.h (MonoReflectionGenericInst): Removed `methods',
26609         `ctors' and `fields'; added `initialized'.
26610
26611 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
26612
26613         * debug-helpers.c (mono_method_full_name): Fix output for empty
26614         namespaces.
26615
26616 2004-02-12  Martin Baulig  <martin@ximian.com>
26617
26618         * class.h (MonoClassField): Added `MonoType *generic_type'.
26619
26620         * reflection.c (mono_image_get_fieldref_token): Added support for
26621         instantiated generic types.
26622         (field_encode_inflated_field): Removed.
26623         (mono_image_get_inflated_field_token): Removed.
26624         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
26625
26626         * reflection.h (MonoReflectionInflatedField): Removed.
26627
26628 2004-02-12  Martin Baulig  <martin@ximian.com>
26629
26630         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
26631         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
26632
26633         * reflection.c (mono_image_get_methodspec_token): Take a
26634         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
26635         (mono_image_create_token): Check whether we have a
26636         `method->signature->gen_method' and call
26637         mono_image_get_methodspec_token() if appropriate.
26638         (inflated_method_get_object): Removed.
26639         (mono_reflection_bind_generic_method_parameters): Return a
26640         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
26641         (mono_reflection_inflate_method_or_ctor): Likewise.
26642
26643         * reflection.h (MonoReflectionInflatedMethod): Removed.
26644
26645 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
26646
26647         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
26648         for custom valuetype marshalling.
26649
26650         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
26651
26652 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26653
26654         * icall.c: fixed WSAGetLastError_internal name.
26655
26656 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
26657
26658         * threads.c (mono_thread_attach): Allow this to be called multiple
26659         times for a thread.
26660         
26661         * threads.c (build_wait_tids): Do not wait for ourselves.
26662
26663         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
26664         appdomain list is empty.
26665
26666         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
26667         memory returned by mono_string_builder_to_utf16, since it points into
26668         managed memory. Thanks to Bernie Solomon for noticing this.
26669
26670         * icall.c: Add AppDomainSetup icalls.
26671
26672         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
26673
26674         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
26675         types.
26676
26677         * reflection.c (reflection_methodbuilder_to_mono_method): Save
26678         custom attributes to the method_aux struct. Also fix array indexes etc.
26679
26680         * loader.c (mono_method_get_param_names): Make dynamic case work again.
26681         
26682 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
26683
26684         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
26685         (both static and runtime) and reduce startup time.
26686
26687 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
26688
26689         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
26690         AsAny marshalling conversion instead of crashing.
26691
26692         * marshal.c: Fix warnings.
26693
26694 2004-02-09  Martin Baulig  <martin@ximian.com>
26695
26696         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
26697
26698         * reflection.h (MonoReflectionInflatedMethod): Removed the
26699         `declaring' field, it's now in the unmanaged MonoGenericMethod.
26700
26701         * reflection.c (method_encode_methodspec): Removed the `method'
26702         argument; we get it from `gmethod->declaring'.
26703         (inflated_method_get_object): Removed the `declaring' argument.
26704
26705 2004-02-09  Martin Baulig  <martin@ximian.com>
26706
26707         * class.h (MonoGenericMethod): New type.
26708         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
26709         `generic_method'.
26710
26711         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
26712         a `MonoGenericMethod *gen_method' one.
26713
26714         * class.c (mono_class_inflate_generic_type): Take an additional
26715         `MonoGenericMethod * argument.  This is only non-NULL if we're
26716         inflating types for a generic method.   
26717         (mono_class_inflate_generic_signature): Renamed to
26718         inflate_generic_signature() and made static; take a
26719         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
26720         (inflate_generic_header): Take a `MonoGenericMethod *' argument
26721         instead of a `MonoGenericInst *' one.
26722         (mono_class_inflate_generic_method): Likewise.
26723
26724         * reflection.c (encode_generic_method_sig): Take a
26725         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
26726         (method_encode_methodspec): Likewise.
26727         (inflated_method_get_object): Likewise. 
26728
26729         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
26730         field with a `MonoGenericMethod *gmethod' one.  
26731
26732 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
26733
26734         * class.h (mono_class_has_parent): add parens to expansion
26735         so you can ! this.
26736
26737 2004-02-08  Martin Baulig  <martin@ximian.com>
26738
26739         * image.h (MonoImage): Removed `generics_cache'.
26740
26741         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
26742         instead of a `MonoType *' argument; removed the `inflate_methods'
26743         argument.  Don't inflate methods here.
26744
26745         * loader.c (find_method): If it's a generic instance, call
26746         mono_class_init() on the `sclass->generic_inst->generic_type'.
26747
26748         * metadata.c (mono_type_size): Make this work on uninitialized
26749         generic instances; call it on the `ginst->generic_type's class.
26750
26751         * reflection.c (mono_reflection_bind_generic_parameters): Call
26752         mono_class_from_generic() to create the `ginst->klass'.
26753
26754 2004-02-08  Martin Baulig  <martin@ximian.com>
26755
26756         * class.h (MonoClass): Changed type of `generic_inst' from
26757         `MonoType *' to `MonoGenericInst *'.
26758
26759 2004-02-08  Martin Baulig  <martin@ximian.com>
26760
26761         * icall.c (ves_icall_Type_BindGenericParameters): Just call
26762         mono_type_get_object(), this is now creating a `MonoGenericInst'
26763         for MONO_TYPE_GENERICINST.
26764         (ves_icall_MonoGenericInst_GetParentType): Likewise.
26765         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
26766
26767         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
26768         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
26769         (inflated_method_get_object): Added `MonoClass *refclass' argument.
26770         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
26771         and reflected type.
26772
26773         * reflection.h (MonoReflectionInflatedMethod): Removed
26774         `declaring_type' and `reflected_type'.
26775
26776 2004-02-08  Martin Baulig  <martin@ximian.com>
26777
26778         * class.h (MonoGenericInst): Added `MonoType *parent' and
26779         `MonoType **ifaces'.
26780
26781         * reflection.h (MonoReflectionGenericInst): Removed `klass',
26782         `parent' and `interfaces'.
26783
26784         * reflection.c (mono_reflection_bind_generic_parameters): Take a
26785         `MonoType *' argument and return a `MonoType *'.
26786
26787         * icall.c
26788         (ves_icall_MonoGenericInst_GetParentType): New interncall.
26789         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
26790
26791 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
26792
26793         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
26794         valuetype marshalling.
26795
26796 2004-02-06  Martin Baulig  <martin@ximian.com>
26797
26798         * class.c
26799         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
26800         (my_mono_class_from_generic_parameter): Likewise.
26801
26802 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
26803
26804         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
26805         contents of the symbol files lazily.
26806
26807         * object.h (MonoThread): Add 'name' and 'name_len' fields.
26808
26809         * threads.h threads.c icall.c: New icalls for getting and setting the
26810         threads name.
26811
26812 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
26813
26814         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
26815         Raise an exception when the domain is not found.
26816
26817 2004-02-03  Martin Baulig  <martin@ximian.com>
26818
26819         * reflection.c (mono_image_get_methodspec_token): Use the
26820         uninflated signature; fixes gen-33.
26821
26822 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
26823
26824         * gc.c threads.c: Make the finalizer thread a normal managed thread so
26825         the finalizer code can use thread functionality.
26826
26827         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
26828         the finalizer thread.
26829
26830         * threads.c: Make some functions more robust.
26831
26832         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
26833
26834         * metadata.h: Add new marshalling conventions.
26835
26836         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
26837         stringbuilder marshalling. Fixes #53700.
26838
26839         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
26840
26841         * reflection.c (mono_image_get_type_info): Save declarative security
26842         info.
26843
26844         * reflection.c (mono_image_get_field_info): Handle uninitialized 
26845         unmanaged fields as well.
26846
26847         * appdomain.c: Bump corlib version.
26848
26849 2004-02-01  Martin Baulig  <martin@ximian.com>
26850
26851         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
26852         method type arguments.  
26853
26854 2004-01-30  Duncan Mak  <duncan@ximian.com>
26855
26856         * marshal.h: Add prototype for
26857         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
26858         and
26859         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
26860         fix the build.
26861
26862 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
26863
26864         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
26865         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
26866
26867 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
26868
26869         * marshal.c (mono_marshal_get_native_wrapper): Add support for
26870         custom marshalling of valuetypes.
26871
26872         * marshal.c: Fix some warnings.
26873
26874 2004-01-29  Martin Baulig  <martin@ximian.com>
26875
26876         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
26877         for generic method parameters.
26878
26879         * reflection.c (method_encode_methodspec): Write the uninflated
26880         signature into the methodspec table.
26881         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
26882         is always the uninflated method.
26883         (reflection_methodbuilder_to_mono_method): Copy the generic
26884         parameters from the MethodBuilder into `header->gen_params'.
26885
26886 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
26887
26888         * class.c (mono_class_from_generic_parameter): Fix warning.
26889
26890 2004-01-27  Martin Baulig  <martin@ximian.com>
26891
26892         * class.c (mono_class_from_generic_parameter): Don't create
26893         `klass->methods' here.  
26894
26895 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
26896
26897         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
26898         extension since it does not work with libraries named lib<FOO>.dll.so.
26899
26900 2004-01-25  Martin Baulig  <martin@ximian.com>
26901
26902         * class.c (mono_class_inflate_generic_type): Added support for
26903         MONO_TYPE_GENERICINST.
26904
26905         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
26906         inflate methods on open constructed types.      
26907
26908 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26909
26910         * object.c: fire ProcessExit event in the root AppDomain after running
26911         Main. Fixes bug #53299.
26912
26913 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
26914
26915         * socket-io.c: include the new socket-wrappers.h header.
26916         Use the wrappers instead of the unix socket functions to make the code
26917         more clear.
26918
26919 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
26920
26921         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
26922
26923         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
26924         Fixes #22532.
26925
26926 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
26927
26928         * reflection.c (mono_image_create_pefile): Handle the case when the
26929         entry point is not a MethodBuilder.
26930
26931         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
26932         field to ReflectionMethod since it is not allways a builder.
26933
26934         * reflection.c (type_get_fully_qualified_name): New helper function to
26935         return the fully qualified name of a type.
26936
26937         * reflection.c (encode_marshal_blob): Always emit the fully qualified
26938         type name for custom marshallers.
26939
26940         * reflection.c (mono_marshal_spec_from_builder): Ditto.
26941
26942         * class.c (mono_class_setup_vtable): If a parent class already 
26943         implements an interface, use the implementing methods from that class.
26944         Fixes #53148.
26945
26946 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26947
26948         * threadpool.c: just return instead of ExitThread to allow for thread
26949         clean up earlier.
26950
26951 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
26952
26953         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
26954         when closing resource modules.
26955
26956         * reflection.c (mono_image_create_pefile): Handle the case when the
26957         entry point is not a MethodBuilder.
26958
26959         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
26960         field to ReflectionMethod since it is not allways a builder.
26961
26962 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
26963
26964         * marshal.c (mono_marshal_get_managed_wrapper): 
26965         mono_marshal_alloc takes native int so CONV_I
26966         the arg for 64bits.
26967
26968 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
26969
26970         * reflection.c (fixup_cattrs): New function to fixup the methoddef
26971         tokens in the cattr table. Fixes #53108.
26972
26973 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26974
26975         * loader.c: don't trim ".dll" before looking up in the config file.
26976         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
26977
26978 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
26979
26980         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
26981         Return the module which contains the resource as well.
26982         (ves_icall_System_Reflection_Module_Close): New icall.
26983
26984         * appdomain.c: Bump corlib version number.
26985
26986         * image.c (mono_image_addref): New public function.
26987
26988         * assembly.c: Call mono_image_addref.
26989
26990         * reflection.c (mono_module_get_object): Increase reference count of 
26991         the image.
26992
26993         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
26994         Fixes #22532.
26995
26996         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
26997         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
26998         proper exceptions on DllImport problems.
26999
27000 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
27001
27002         * class.c, metadata.c: eliminate CSIZE macro.
27003
27004 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
27005
27006         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
27007         * object.h: Added async_callback field in MonoAsyncResult.
27008         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
27009         * verify.c: Added async_callback in MonoAsyncResult layout.
27010
27011 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
27012
27013         * reflection.c (mono_reflection_get_custom_attrs): Add support
27014         for Modules.
27015
27016 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27017
27018         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
27019         marshalling.
27020         (mono_marshal_method_from_wrapper): Add null pointer check.
27021
27022 2004-01-16  Martin Baulig  <martin@ximian.com>
27023
27024         * debug-mono-symfile.h: Set version number to 36 and reflect
27025         latest symbol writer changes.
27026
27027 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27028
27029         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
27030         multi-dimensional arrays.
27031         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
27032         (mono_class_from_mono_type): Use bounded_array_class_get.
27033         
27034         * class.c (mono_bounded_array_class_get): New function which takes
27035         a 'bounded' bool argument to distinguish vectors from one dimensional
27036         arrays.
27037
27038         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
27039         bounded_array_class_get if the array has bounds.
27040
27041         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27042         Search modules loaded using AssemblyBuilder:AddModule as well.
27043
27044 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27045
27046         * appdomain.c: increased corlib version.
27047         * filewatcher.c: removed g_print.
27048         * icall.c:
27049         (get_property_info): only allocate what is actually requested.
27050         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
27051
27052 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27053
27054         * Makefile.am: added filewatcher.[ch]
27055         * filewatcher.[ch]: FileSystemWatcher runtime support.
27056         * icall.c: added new FSW icalls.
27057
27058 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
27059
27060         * string-icalls.c: fix stringbuilder regression as suggested by
27061         Iain McCoy <iain@mccoy.id.au>.
27062
27063 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
27064
27065         * process.c (process_read_stringtable_block): Recognize '007f' as
27066         a language neutral stringtable block.
27067
27068 2004-01-12  Patrik Torstensson
27069
27070         * object.h (MonoStringBuilder) : Changed layout to support our
27071         new stringbuilder class.
27072         * marshal.c: Change marshalling to support the new layout of 
27073         string builder.
27074         * appdomain.c: increased version number because new layout of
27075         string builder.
27076
27077 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
27078
27079         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
27080         assembly name as an string instead of an AssemblyName, since it is
27081         easier to extract info from it.
27082
27083         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
27084         the culture subdirectories too. Fixes #52231.
27085
27086 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27087
27088         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
27089         It takes 2 new parameters with an optional name for the method to look
27090         for and case ignoring info.
27091
27092         * threadpool.c: removed unused variable.
27093
27094 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27095
27096         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
27097         It takes 2 new parameters with an optional name for the property to look
27098         for and case ignoring info.
27099         Fixes bug #52753.
27100
27101 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
27102
27103         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
27104         Fix #52451.
27105
27106 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27107
27108         * appdomain.c:
27109         * assembly.c: escape the uri before passing it to g_filename_from_uri.
27110         Fixes bug #52630.
27111
27112 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
27113
27114         * reflection.c: Add support for more than one unmanaged resource.
27115
27116         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
27117         in field->def_value, as done in all other cases.
27118
27119         * reflection.c (mono_reflection_get_custom_attrs): Add support for
27120         TypeBuilders.
27121
27122         * reflection.c (mono_reflection_create_runtime_class): Remove 
27123         errorneous assignment to klass->element_class, since it is already
27124         done in mono_reflection_setup_internal_class.
27125
27126 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27127
27128         * gc.c: added missing LeaveCriticalSection.
27129         * icall.c: indented a couple of lines.
27130         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
27131         if we call EndInvoke inside a callback. Fixes bug #52601.
27132
27133 2004-01-07  Martin Baulig  <martin@ximian.com>
27134
27135         * mono-debug-debugger.h
27136         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
27137
27138 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
27139
27140         * appdomain.c: Use messages in NotImplementedException.
27141
27142         * exception.c (mono_get_exception_not_implemented): Now this takes
27143         a message argument.
27144
27145         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
27146         exception instead of g_asserting an aborting when something is not
27147         implemented.
27148
27149         Add some inline docs.
27150
27151 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
27152
27153         * reflection.h: Update after changes to object layout.
27154
27155         * reflection.c: Implement saving of unmanaged aka win32 resources.
27156
27157         * appdomain.c: Bump version number.
27158
27159         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
27160         Handle missing domains gracefully.
27161
27162 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
27163
27164         * file-io.c : On Windows, there are much more invalid_path_chars.
27165
27166 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
27167
27168         * class.h, object.c: prepare for GetType () speedup.
27169
27170 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
27171
27172         * profiler.c: workaround for --profile null reference exception on
27173           cygwin. Patch by Patrik Torstensson.
27174
27175 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
27176
27177         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
27178         make work for unaligned access.
27179
27180 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
27181
27182         * class.c: small cleanup (class->fields [i] -> field).
27183         * image.c: check address of metadata is valid.
27184
27185 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
27186
27187         * assembly.h assembly.c (mono_assembly_loaded): New public function to
27188         search the list of loaded assemblies.
27189
27190         * reflection.c (mono_reflection_type_from_name): Use 
27191         mono_assembly_loaded instead of mono_image_loaded.
27192
27193         * reflection.c: Fix warnings.
27194
27195 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
27196
27197         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
27198         is dynamic. This is needed since an assembly can contain both dynamic and
27199         non-dynamic images.
27200
27201         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
27202         assembly->dynamic.
27203
27204         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
27205
27206         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
27207         to store modules loaded using AddModule.
27208
27209         * reflection.c (mono_image_fill_file_table): Generalize this so it works
27210         on Modules.
27211
27212         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
27213
27214         * reflection.c (mono_image_fill_export_table_from_module): New function to
27215         fill out the EXPORTEDTYPES table from a module.
27216
27217         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
27218         into a separate function. Also handle loaded non-dynamic modules.
27219
27220         * reflection.c (mono_image_basic_init): Fix memory allocation.
27221
27222         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27223
27224         * assembly.c (mono_assembly_load_references): Make this public.
27225
27226 2003-12-19  Martin Baulig  <martin@ximian.com>
27227
27228         * class.c (mono_class_initialize_generic): Made this static, take
27229         a `MonoGenericInst *' instead of a `MonoClass *'.
27230         (mono_class_from_generic): Call mono_class_initialize_generic()
27231         unless we're already initialized or being called from
27232         do_mono_metadata_parse_generic_inst().
27233
27234         * class.h (MonoGenericInst): Added `initialized' and
27235         `init_pending' flags.
27236
27237         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
27238         `mono_class_init (gklass)' or mono_class_initialize_generic()
27239         here; set `generic_inst->init_pending' while parsing the
27240         `type_argv'.
27241
27242 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
27243
27244         * locales.c: include string.h for memxxx prototypes
27245
27246 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
27247
27248         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
27249         constructor when accessing literal fields.
27250
27251 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
27252
27253         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27254
27255         * reflection.c (assembly_add_resource_manifest): New function to fill
27256         the MANIFESTRESOURCE table.
27257
27258         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
27259
27260         * reflection.h: Update to changes in class layout.
27261
27262         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
27263         Reenable call to mono_runtime_is_shutting_down ().
27264
27265         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
27266         determine if the runtime is shutting down.
27267
27268 2003-12-16  Jackson Harper <jackson@ximian.com>
27269
27270         * icall.c: comment out call to mono_runtime_is_shutting_down to
27271         fix build.
27272         
27273 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
27274
27275         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
27276         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
27277
27278 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
27279
27280         * reflection.c: move definition of swap_with_size
27281         to before its first call
27282
27283 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
27284
27285         * appdomain.c (mono_runtime_is_shutting_down): New public function.
27286
27287         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
27288         icall.
27289
27290         * object.c: Fix warnings.
27291
27292         * icall.c (ves_icall_Type_Get...): Only consider inherited static
27293         members if FlattenHierarchy is set.
27294
27295         * reflection.c (mono_image_add_decl_security): New function to emit
27296         declarative security.
27297
27298         * reflection.h reflection.c: Add support for declarative security.
27299
27300         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
27301         
27302 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
27303
27304         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
27305         
27306         * appdomain.c verify.c: Moved corlib version checking into its own
27307         function in appdomain.c since it needs to create vtables etc.
27308
27309 2003-12-13  Patrik Torstensson <p@rxc.se>
27310
27311         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
27312         instead of unwrapped server.
27313
27314 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
27315
27316         * verify.c (check_corlib): Fix field index.
27317
27318 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
27319
27320         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
27321         GetGacPath icall.
27322
27323 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
27324
27325         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
27326         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
27327         cope with sizeof(size_t) != sizeof(guint32).
27328
27329 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27330
27331         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
27332         in case of failure.
27333
27334 2003-12-10  Mark Crichton <crichton@gimp.org>
27335
27336         * icall.c: removed the GetNonZeroBytes.  We now handle this case
27337         in managed code.
27338
27339         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
27340
27341 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
27342
27343         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
27344         marked as deleted.
27345
27346 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
27347
27348         * verify.c (check_corlib): Handle the case when the version field is 
27349         initialized by a static constructor.
27350
27351 2003-12-08  Patrik Torstensson  <p@rxc.se>
27352
27353     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
27354
27355 2003-12-08  Martin Baulig  <martin@ximian.com>
27356
27357         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
27358         a MonoReflectionGenericParameter, also take the parameter index
27359         and name as arguments.
27360         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
27361         (ves_icall_MonoGenericParam_initialize): New interncall.
27362         (ves_icall_Type_make_byref_type): New interncall.
27363
27364         * reflection.h (MonoReflectionGenericParam): Derive from
27365         MonoReflectionType, not just from MonoObject.  Added `refobj' and
27366         `index' fields.
27367
27368         * reflection.c (mono_reflection_define_generic_parameter): Create
27369         and return a new MonoReflectionGenericParam; don't initialize the
27370         constraints here.
27371         (mono_reflection_initialize_generic_parameter): New public method;
27372         initializes the constraints and creates the `param->pklass'.
27373
27374 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
27375
27376         * reflection.h reflection.c: Use the new fields 'num_types', 
27377         'num_fields' and 'num_methods' to track the number of types etc.
27378
27379         * verify.c (check_corlib): Check corlib version number.
27380
27381 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
27382
27383         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
27384         function works on all methods.
27385
27386 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
27387
27388         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
27389         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
27390         the custom_type_info flag of the transparent proxy.
27391         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
27392         objects that supports IRemotingTypeInfo.
27393         * object.h: Added custom_type_info field in transparent proxy.
27394
27395 2003-12-06  Martin Baulig  <martin@ximian.com>
27396
27397         * class.c (mono_class_create_from_generic): Removed.
27398         (mono_class_from_generic): Check `ginst->klass' before doing
27399         anything else.  This is important to fully support "recursive"
27400         generic types.
27401
27402         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
27403         empty `generic_inst->klass' before doing anything else.
27404
27405 2003-12-06  Dick Porter  <dick@ximian.com>
27406
27407         * verify.c: 
27408         * object.h:
27409         * icall.c:
27410         * locales.c: Use C structs to access class fields.  Don't do a
27411         conversion between MonoString and UChar because both are
27412         platform-endian UTF-16.  Compare now takes startindex and count
27413         parameters.  Add a char overload for IndexOf.  Speed up the
27414         invariant string IndexOf.
27415
27416 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
27417
27418         * Makefile.am (monosn_LDADD): Fix parallel build.
27419
27420 2003-12-04  Martin Baulig  <martin@ximian.com>
27421
27422         * icall.c
27423         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
27424         (ves_icall_Type_make_array_type): New interncall.       
27425
27426 2003-12-04  Martin Baulig  <martin@ximian.com>
27427
27428         * locales.c: also change it in the !HAVE_ICU case.
27429
27430 2003-12-04  Dick Porter  <dick@ximian.com>
27431
27432         * icall.c:
27433         * locales.c: construct_compareinfo is now in CompareInfo, not
27434         CultureInfo.
27435
27436 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
27437
27438         * image.c (mono_image_load_file_for_image): Cache loaded images in the
27439         image->files array.
27440
27441         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
27442         table as well.
27443
27444         * assembly.c (mono_assembly_load_references): Only load references
27445         once.
27446
27447         * class.c (mono_class_from_name): Avoid linear search of the 
27448         EXPORTEDTYPE table.
27449
27450         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
27451
27452 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
27453
27454         * image.h (MonoImage): Add 'field_cache' field.
27455
27456         * loader.c (mono_field_from_token): Cache field lookups.
27457         
27458         * reflection.c (mono_module_get_object): Fix name property.
27459
27460         * icall.c (ves_icall_get_enum_info): Update after changes to 
27461         mono_metadata_get_constant_index ().
27462
27463         * icall.c: Get rid of get_type_info icall, use a separate icall for
27464         each type property to avoid needless memory allocations. Fixes #51514.
27465
27466         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
27467         to avoid needless binary searches.
27468
27469         * class.c (class_compute_field_layout): Move the initialization of
27470         field->def_value to mono_class_vtable ().
27471
27472         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
27473         non-corlib types.
27474
27475         * object.c (mono_object_allocate): Make it inline.
27476
27477         * object.c (mono_object_allocate_spec): Make it inline.
27478         
27479 2003-12-02  Dick Porter  <dick@ximian.com>
27480
27481         * locales.c (create_NumberFormat): NumberFormatInfo construction.
27482         Patch by Mohammad DAMT (mdamt@cdl2000.com).
27483
27484 2003-12-01  Dick Porter  <dick@ximian.com>
27485
27486         * threads.c: Fix signature and call in CreateMutex and
27487         CreateEvent.
27488
27489 2003-12-01  Dick Porter  <dick@ximian.com>
27490
27491         * icall.c: 
27492         * locales.c: Implement string compares and searching
27493
27494         * object.h: Add extra Thread field
27495
27496 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
27497
27498         * reflection.c (fixup_method): Add support for MonoCMethod.
27499
27500 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
27501
27502         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
27503
27504         * reflection.c (assembly_name_to_aname): Allow extra characters in
27505         assembly names. Fixes #51468.
27506
27507 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
27508
27509         * exception.c (mono_exception_from_name_domain): New helper function.
27510
27511         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
27512         exception object in the correct domain.
27513
27514         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
27515         formatting + make a copy a the input data.
27516
27517         * loader.c (mono_get_method_from_token): Methods which contain
27518         native code do not have entries in the ImplMap.
27519
27520         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
27521         Thanks to Gonzalo for spotting this.
27522         
27523         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
27524         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
27525
27526         * assembly.h (mono_assembly_load_from): Split the second part of 
27527         assembly loading into a new public function.
27528
27529         * exception.h (mono_get_exception_bad_image_format): New function.
27530
27531 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
27532
27533         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27534         Enumerate all modules inside a dynamic assembly. Fixes #51293.
27535         
27536         * icall.c: Add new icall for creating dynamic methods.
27537
27538         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
27539
27540         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
27541
27542         * reflection.c (mono_reflection_create_dynamic_method): New icall to
27543         create a dynamic method.
27544
27545         * reflection.c (resolve_object): New helper function.
27546
27547         * reflection.c: Generalize ReflectionMethodBuilder and the functions
27548         which manipulate it so they can also work on dynamic methods.
27549
27550         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
27551         creating the MonoReflectionMethodAux structure if it is not needed.
27552         
27553         * reflection.h verify.c: Update after changes to object layout.
27554
27555         * reflection.c (method_builder_encode_signature): Fix compilation on
27556         gcc 2.95.x.
27557
27558 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
27559
27560         * appdomain.h: Added support for context static fields. Added static_data
27561           field to MonoAppContext and renamed thread_static_fields to a more
27562           generic special_static_fields in MonoAppDomain, since it can now contain
27563           context static fields.
27564         * domain.c: Updated hashtable name.
27565         * object.c: Replaced field_is_thread_static() for a more generic
27566           field_is_special_static() which also checks for context static attribute.
27567           In mono_class_vtable(), added support for static context fields.
27568         * threads.c: Changed methods that manage thread static fields to more
27569           generic methods so they can be reused both for thread and context static
27570           data.
27571         * threads.h: Declared some new methods.
27572
27573 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
27574
27575         * reflection.h: Update after changes to the managed types.
27576
27577         * reflection.c (encode_custom_modifiers): New helper function.
27578
27579         * reflection.c (method_encode_signature): Emit custom modifiers.
27580
27581         * reflection.c (field_encode_signature): Emit custom modifiers.
27582
27583 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
27584
27585         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
27586
27587         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
27588         implementation.
27589
27590         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
27591         icall.
27592
27593         * object.c (mono_field_get_value_object): New function.
27594
27595         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
27596         specific.
27597
27598 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
27599
27600         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
27601         return a preallocated out-of-memory exception instance.
27602
27603         * object.c (out_of_memory): Use the new function.
27604
27605         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
27606         flag is before the custom modifiers. Fixes #49802.
27607
27608 2003-11-16  Martin Baulig  <martin@ximian.com>
27609
27610         * class.c (mono_class_is_open_constructed_type): Implemented the
27611         MONO_TYPE_GENERICINST case.
27612
27613 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
27614
27615         * assembly.c (mono_assembly_fill_assembly_name): New function to
27616         fill out the MonoAssemblyName structure.
27617         (mono_assembly_open): Use the new function.
27618
27619         * icall.c (fill_reflection_assembly_name): New helper function.
27620
27621         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
27622         new function.
27623
27624         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
27625
27626 2003-11-15  Martin Baulig  <martin@ximian.com>
27627
27628         * class.c (mono_class_is_open_constructed_type): New public
27629         function; checks whether a type is an open constructed type,
27630         ie. whether it still contains type parameters.
27631         (mono_class_inflate_generic_type): If we're a type parameter and
27632         the inflated type is also a MONO_TYPE_(M)VAR, return the original
27633         type.
27634
27635         * class.h (MonoGenericInst): Added `guint32 is_open'.
27636
27637         * loader.c (method_from_methodspec): Check whether we're an open
27638         or closed constructed type and set `ginst->is_open'.
27639
27640         * reflection.c (mono_reflection_bind_generic_parameters): Check
27641         whether we're an open or closed constructed type and set
27642         `ginst->is_open'.
27643         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
27644         from open constructed types.
27645
27646 2003-11-15  Martin Baulig  <martin@ximian.com>
27647
27648         * reflection.c (mono_reflection_bind_generic_parameters): If we're
27649         a generic instance (instead of a generic type declaration) with
27650         unbound generic parameters, bind them to our actual types.
27651
27652 2003-11-14  Martin Baulig  <martin@ximian.com>
27653
27654         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
27655
27656         * reflection.c (mono_reflection_bind_generic_parameters): If we're
27657         an interface type, populate `res->interfaces' with instantiated
27658         versions of all the interfaces we inherit.
27659
27660 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
27661
27662         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
27663         when MONO_PATH is set but doesn't contain the install dir.
27664
27665 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27666
27667         * icall.c:
27668         (ves_icall_Type_GetInterfaces): don't return an interface twice when
27669         it's also implemented in base classes. Fixes bug #50927.
27670
27671 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
27672
27673         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
27674         if this method is called from a finalizer. Fixes #50913.
27675
27676 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
27677
27678         * threads.c: Implement VolatileRead/VolatileWrite
27679
27680         * icall.c: Add new icalls for VolatileRead/VolatileWrite
27681
27682 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27683
27684         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
27685         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
27686         2.95.3.
27687
27688         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
27689         from Peter Ross (pro@missioncriticalit.com).
27690         
27691 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
27692
27693         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
27694
27695 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27696
27697         * assembly.c (mono_assembly_load_references): Disable check because it
27698         triggers on older corlibs which lots of people have.
27699
27700 2003-11-12  Jackson Harper  <jackson@ximian.com>
27701
27702         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
27703         load corlib.dll if mscorlib.dll is not found.
27704         * assembly.h: Remove corlib name define.
27705         * class.c:
27706         * domain.c:
27707         * image.c: Change corlib name to mscorlib.
27708         
27709 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27710
27711         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
27712
27713 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
27714
27715         * appdomain.h: Added loader_optimization here to sync with the C#
27716         code, and add disallow_binding_redirects field.
27717
27718 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
27719
27720         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
27721
27722         * reflection.c (mono_image_build_metadata): Fix crash on modules
27723         with no types.
27724
27725         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
27726
27727         * icall.c (ves_icall_get_method_info): Return callingConvention as
27728         well.
27729
27730         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
27731         namespaces from the EXPORTEDTYPE table as well.
27732
27733         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
27734         from all modules inside the assembly.
27735         
27736 2003-11-11  Martin Baulig  <martin@ximian.com>
27737
27738         * reflection.c (mono_reflection_bind_generic_parameters): Make
27739         this work for interfaces.
27740
27741 2003-11-11  Martin Baulig  <martin@ximian.com>
27742
27743         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
27744
27745 2003-11-11  Martin Baulig  <martin@ximian.com>
27746
27747         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
27748         "MonoInflatedMethod" and "MonoInflatedCtor".
27749
27750 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
27751
27752         * reflection.c (resolution_scope_from_image): Use the assembly table
27753         from the manifest module, since other modules don't have it.
27754
27755         * debug-helpers.c (mono_type_full_name): New helper function.
27756
27757         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
27758
27759         * image.c (mono_image_load_file_for_image): New public function which
27760         is a replacement for the load_file_for_image in class.c.
27761
27762         * assembly.c (mono_assembly_load_module): A wrapper for the function
27763         above which does assembly association and reference loading too.
27764
27765         * class.c (mono_class_from_name): Call mono_assembly_load_module.
27766
27767 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27768
27769         * appdomain.c: not all of the attributes for the full assembly name
27770         are required and the order doesn't matter. Fixes bug #50787.
27771
27772 2003-11-10  Dick Porter  <dick@ximian.com>
27773
27774         * locales.c: Use platform-endian UTF16
27775
27776 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
27777
27778         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
27779         
27780 2003-11-10  Martin Baulig  <martin@ximian.com>
27781
27782         * metadata.c
27783         (mono_metadata_load_generic_params): Make this actually work.
27784
27785         * reflection.c (mono_reflection_bind_generic_parameters): If our
27786         parent is a generic instance, pass all the `types' to it, no
27787         matter whether it has the same number of type parameters or not.
27788
27789 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
27790
27791         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
27792
27793         * assembly.c (mono_assembly_load_references): Move the image<->assembly
27794         assignment code to this function so it gets called recursively for all
27795         modules.
27796
27797         * image.c (load_modules): Remove the assembly assignment since it is
27798         now done by mono_assembly_load_references.
27799         
27800         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27801         Add 'module' argument.
27802         (mono_module_get_types): New helper function.
27803         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
27804
27805 2003-11-08  Martin Baulig  <martin@ximian.com>
27806
27807         * class.c (mono_class_inflate_generic_method): Interface method
27808         don't have a header.
27809
27810         * reflection.c (mono_image_get_methodspec_token): Take an
27811         additional `MonoGenericInst *' argument instead of reading it from
27812         the header; this is necessary to support interfaces.
27813         (mono_image_create_token): Pass the `MonoGenericInst *' from the
27814         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
27815         (inflated_method_get_object): Take an additional `MonoGenericInst *'
27816         argument.
27817
27818         * reflection.h (MonoReflectionInflatedMethod): Added
27819         `MonoGenericInst *ginst'.
27820
27821 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
27822
27823         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
27824
27825 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
27826
27827         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
27828
27829 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
27830
27831         * reflection.c 
27832         (reflection_methodbuilder_from_method_builder):
27833         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
27834         initialize a ReflectionMethodBuilder structure.
27835         (mono_image_get_methodbuilder_token):
27836         (mono_image_get_ctorbuilder_token): New functions to emit memberref
27837         tokens which point to types in another module inside the same assembly.
27838
27839         * reflection.c: Use the new helper functions.
27840         
27841         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
27842
27843         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
27844         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
27845
27846         * reflection.c (resolution_scope_from_image): Emit a moduleref if
27847         neccesary.
27848
27849         * reflection.c (mono_image_build_metadata): Emit metadata only for the
27850         current module. Emit the manifest only for the main module.
27851
27852         * reflection.c (mono_image_create_token): Add assertion when a 
27853         memberref needs to be created.
27854
27855         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
27856
27857         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
27858         larger buffer for the custom attribute blob. Fixes #50637.
27859         
27860 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27861
27862         * threadpool.c: notify listener on async processing handles after
27863         invoking the async callback. Thanks to Zoltan.
27864
27865 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27866
27867         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
27868         avoid code duplication.
27869
27870         * reflection.h (MonoDynamicImage): New type which is currently unused,
27871         but will be used through the ref.emit code in place of 
27872         MonoDynamicAssembly.
27873
27874         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
27875         object layout.
27876
27877         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
27878         a MonoDynamicImage instead of just a MonoImage.
27879         
27880         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
27881         icalls to ModuleBuilder but keep their semantics, so they will work
27882         with moduleb->assemblyb. This will change later.
27883         
27884 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27885
27886         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
27887         object layout.
27888
27889         * reflection.c (mono_image_build_metadata): Avoid creation of a default
27890         main module, since it is now done by the managed code.
27891
27892 2003-11-03  Martin Baulig  <martin@ximian.com>
27893
27894         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
27895         `ginst->klass' here.
27896         (method_encode_methodspec): Don't use the `ginst->generic_method's
27897         klass if it's a generic instance, use `ginst->klass' in this case.
27898
27899 2003-11-03  Martin Baulig  <martin@ximian.com>
27900
27901         * reflection.c (mono_image_get_generic_method_param_info):
27902         Removed, use mono_image_get_generic_param_info() instead.
27903         (mono_image_get_type_info): Write the GenericParam table before
27904         the Method table.  This is neccessary because in the GenericParam
27905         table, type parameters of the class (ie. '!0' etc.) must come
27906         before the ones from its generic methods (ie. '!!0' etc).
27907
27908 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27909
27910         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
27911
27912 2003-11-02  Martin Baulig  <martin@ximian.com>
27913
27914         * reflection.c (create_generic_typespec): Take a
27915         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
27916         the generic parameters from it.
27917
27918 2003-11-02  Martin Baulig  <martin@ximian.com>
27919
27920         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
27921         instead of a `MonoClassField *' since we just need the type.
27922         (create_generic_typespec): New static function.  Creates a
27923         TypeSpec token for a generic type declaration.
27924         (mono_image_get_generic_field_token): New static function.
27925         (mono_image_create_token): If we're a FieldBuilder in a generic
27926         type declaration, call mono_image_get_generic_field_token() to get
27927         the token.
27928
27929 2003-11-02  Martin Baulig  <martin@ximian.com>
27930
27931         * reflection.h
27932         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
27933         `MonoReflectionGenericInst *declaring_type' and
27934         `MonoReflectionGenericInst *reflected_type' fields.
27935
27936         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
27937         `MonoReflectionGenericInst *declaring_type' and a
27938         `MonoReflectionGenericInst *reflected_type' argument instead of a
27939         single `MonoReflectionGenericInst *type' one.  Set
27940         `res->declaring_type' and `res->reflected_type' from them.
27941         (mono_reflection_inflate_field): Likewise.      
27942
27943 2003-11-02  Martin Baulig  <martin@ximian.com>
27944
27945         * class.c (mono_class_setup_vtable): Don't store generic methods
27946         in the vtable.  
27947
27948 2003-11-02  Martin Baulig  <martin@ximian.com>
27949
27950         * reflection.h (MonoReflectionGenericInst): Added
27951         `MonoReflectionType *declaring_type'.
27952
27953         * reflection.c (mono_reflection_bind_generic_parameters): Use
27954         `if (tb->parent)' instead of `klass->parent'.
27955
27956 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
27957
27958         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
27959         with an empty ASSEMBLY table.
27960
27961         * reflection.c (mono_image_build_metadata): Avoid using the same loop
27962         variable in the inner and outer loops.
27963
27964 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
27965
27966         * metadata.h (mono_metadata_make_token): Put parentheses around macro
27967         argument.
27968
27969         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
27970         
27971         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
27972         icalls. Instead, do everything in managed code. This is needed since
27973         it is hard to restore the original domain etc. in unmanaged code in the
27974         presence of undeniable exceptions.
27975
27976         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
27977         New icalls to push and pop appdomain refs.
27978
27979 2003-10-31  Martin Baulig  <martin@ximian.com>
27980
27981         * class.c (inflate_generic_type): Renamed to
27982         mono_class_inflate_generic_type() and made it public.
27983
27984         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
27985         New interncall.
27986
27987         * loader.c (mono_field_from_memberref): Also set the retklass for
27988         typespecs.
27989
27990         * fielder.c (mono_image_get_inflated_field_token): New static
27991         method; creates a metadata token for an inflated field.
27992         (mono_image_create_token, fixup_method): Added support for
27993         "MonoInflatedField".
27994         (fieldbuilder_to_mono_class_field): New static function.
27995         (mono_reflection_inflate_field): New public function.
27996
27997         * reflection.h
27998         (MonoReflectionGenericInst): Added `MonoArray *fields'.
27999         (MonoReflectionInflatedField): New typedef.     
28000
28001 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
28002
28003         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
28004         for Solaris and other platforms without s6_addr16
28005
28006 2003-10-30  Martin Baulig  <martin@ximian.com>
28007
28008         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
28009         argument instead of two.
28010         (mono_class_inflate_generic_signature): Likewise.
28011         (inflate_generic_header): Likewise.
28012         (mono_class_inflate_generic_method): Likewise.  In addition, if
28013         `ginst->klass' is set, it becomes the new `method->klass'.
28014
28015         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
28016         field.
28017
28018         * reflection.c (encode_generic_method_sig): Write a 0xa as the
28019         first byte. [FIXME]
28020         (method_encode_methodspec): If we have generic parameters, create
28021         a MethodSpec instead of a MethodRef.
28022         (fixup_method): Added support for "MonoInflatedMethod" and
28023         "MonoInflatedCtor".
28024         (mono_image_create_token): Added support for "MonoInflatedMethod"
28025         and "MonoInflatedCtor".
28026         (inflated_method_get_object): New static function; returns a
28027         managed "System.Reflection.MonoInflatedMethod" object.
28028         (mono_reflection_bind_generic_method_parameters): Return a
28029         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
28030         (mono_reflection_inflate_method_or_ctor): Likewise.
28031         (mono_image_get_generic_method_param_info): Initialize unused
28032         fields to zero.
28033         (mono_image_get_generic_param_info): Likewise.
28034
28035         * reflection.h (MonoReflectionInflatedMethod): New public
28036         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
28037         "S.R.MonoInflatedCtor" classes.
28038
28039         * loader.c (method_from_memberref): If we're a TypeSpec and it
28040         resolves to a generic instance, inflate the method.
28041
28042 2003-10-28  Dick Porter  <dick@ximian.com>
28043
28044         * object.c (mono_runtime_run_main): Convert command-line arguments
28045         into utf8, falling back to the user's locale encoding to do so.
28046
28047 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
28048
28049         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
28050         at this time.
28051
28052         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
28053
28054         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
28055         up icalls at method definition time. Partially fixes #33569.
28056
28057 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
28058
28059         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
28060         marshalling of arrays. Fixes #50116.
28061
28062         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
28063
28064         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
28065         points to a vtable in the dying appdomain.
28066
28067         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
28068         listeners into unmanaged code inside the lock.
28069
28070         * object.c (mono_class_vtable): Turn off typed allocation in non-root
28071         domains and add some comments.
28072
28073 2003-10-25  Martin Baulig  <martin@ximian.com>
28074
28075         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
28076
28077         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
28078
28079         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
28080         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
28081         currently parsing.  Create the generic class and store it in
28082         `generic_inst->klass' before parsing the type arguments.  This is
28083         required to support "recursive" definitions; see mcs/tests/gen-23.cs
28084         for an example.
28085         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
28086         to support recursive typespec entries.
28087
28088         * class.c (mono_class_setup_parent): If our parent is a generic
28089         instance, we may get called before it has its name set.
28090         (mono_class_from_generic): Splitted into
28091         mono_class_create_from_generic() and mono_class_initialize_generic().
28092
28093 2003-10-25  Martin Baulig  <martin@ximian.com>
28094
28095         * icall.c (ves_icall_Type_BindGenericParameters): Return a
28096         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
28097         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
28098         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
28099
28100         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
28101         (create_typespec): Likewise.
28102         (mono_reflection_bind_generic_parameters): Return a
28103         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
28104         (mono_reflection_inflate_method_or_ctor): New public function.
28105
28106         * reflection.h (MonoReflectionGenericInst): New typedef.        
28107
28108 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
28109
28110         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
28111         inside the domain lock. Fixes #49993.
28112         
28113         * object.c (mono_class_vtable): When typed allocation is used, 
28114         allocate vtables in the GC heap instead of in the mempool, since the
28115         vtables contain GC descriptors which are used by the collector even
28116         after the domain owning the mempool is unloaded.
28117
28118         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
28119
28120         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
28121         reflect what it does. Also invalidate mempools instead of freeing
28122         them if a define is set.
28123
28124         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
28125         of the appdomain.
28126         
28127         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
28128         hold the finalizable objects in this domain.
28129
28130         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
28131         appdomain.
28132
28133         * appdomain.c (mono_domain_set): New function to set the current
28134         appdomain, but only if it is not being unloaded.
28135
28136         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
28137         appdomain which is being unloaded.
28138         
28139         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
28140         unloading of the root appdomain.
28141
28142         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
28143         icall to execute a method in another appdomain. Intended as a 
28144         replacement for InternalSetDomain, which can confuse the code 
28145         generation in the JIT.
28146
28147         * appdomain.c (mono_domain_is_unloading): New function to determine
28148         whenever an appdomain is unloading.
28149
28150         * appdomain.c (mono_domain_unload): New function to correctly unload
28151         an appdomain.
28152
28153         * assembly.c (mono_assembly_load_references): Check that an assembly
28154         does not references itself.
28155
28156         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
28157         domain manually, it asks the finalizer thread to do it, then waits for
28158         the result. Also added a timeout.
28159
28160         * icall.c: Register the new icalls.
28161
28162         * threads.h threads.c: Export the mono_gc_stop_world and 
28163         mono_gc_start_world functions.
28164         
28165         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
28166         function to fill out the mempool with 0x2a.
28167
28168 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
28169
28170         * reflection.h (MonoReflectionMethodAux): New structure to store
28171         information which is rarely used, thus is not in the MonoMethod
28172         structure.
28173
28174         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
28175         store the aux info.
28176
28177         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
28178         and marshalling info into the aux structure.
28179
28180         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
28181         from the aux structure.
28182
28183         * loader.c (mono_method_get_param_names): Retrieve the param names from
28184         the aux structure.
28185         
28186 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
28187
28188         * exception.h exception.c: Add AppDomainUnloadedException && fix 
28189         warning.
28190
28191 2003-10-21  Dick Porter  <dick@ximian.com>
28192
28193         * socket-io.c
28194         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
28195         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
28196
28197 2003-10-21  Martin Baulig  <martin@ximian.com>
28198
28199         * reflection.c (mono_reflection_bind_generic_parameters):
28200         `klass->parent' is NULL for interfaces.
28201
28202 2003-10-21  Martin Baulig  <martin@ximian.com>
28203
28204         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28205
28206 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
28207
28208         * exception.c (mono_exception_from_name_msg): New helper function for
28209         creating exceptions and initializing their message field.
28210
28211         * exception.c: Simplify functions using the new helper.
28212
28213         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
28214         New function.
28215
28216         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
28217         mono_raise_exception, since otherwise gcc doesn't generate the function
28218         epilog for raise_exception, confusing the stack unwinding in the JIT.
28219         Fixes #45043.
28220
28221         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
28222         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
28223         Fixes #49499.
28224
28225 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28226
28227         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
28228         utf8.
28229
28230 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
28231
28232         * icall.c: Removed GetUninitializedObject method because
28233           AllocateUninitializedClassInstance does the same.
28234
28235 2003-10-18  Martin Baulig  <martin@ximian.com>
28236
28237         * class.c (inflate_generic_signature): Renamed to
28238         mono_class_inflate_generic_signature() and made it public.
28239         (my_mono_class_from_generic_parameter): New static function; if we
28240         don't already have the generic parameter's MonoClass, create a
28241         very simple one which is just used internally in the runtime and
28242         not passed back to managed code.
28243
28244         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
28245
28246         * metadata.h (MonoMethodSignature): Moved the
28247         `MonoGenericParam *gen_params' to the MonoMethodHeader.
28248         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
28249
28250         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
28251         ves_icall_MonoMethod_GetGenericArguments(); this is now an
28252         interncall on the MonoMethod class, not on MethodInfo.
28253         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
28254         calling mono_reflection_bind_generic_method_parameters() directly.
28255
28256         * loader.c (mono_method_get_signature): If this is a MethodSpec;
28257         return the already computed `method->signature'.
28258         (method_from_methodspec): New static function to load a method
28259         from a MethodSpec entry.
28260         (mono_get_method_from_token): Call the new method_from_methodspec()
28261         for MethodSpec tokens.  
28262         (mono_get_method_from_token): If we're a generic method, load the
28263         type parameters.
28264
28265         * reflection.c (mono_image_get_memberref_token): Allow
28266         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
28267         table.
28268         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
28269         (mono_image_create_token): First check whether it's a generic
28270         method (so we'd need to create a MethodSpec), then do the other
28271         two alternatives.
28272         (mono_reflection_bind_generic_method_parameters): Return a
28273         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
28274         called directly from the interncall.
28275
28276 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
28277
28278         * reflection.c (load_public_key): Move loading of the public key
28279         into managed code.
28280
28281         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
28282
28283         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
28284         fields.
28285
28286         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
28287         culture, hash_alg and public_key. Fixes #49555.
28288
28289 2003-10-17  Martin Baulig  <martin@ximian.com>
28290
28291         * class.h (MonoGenericInst): Moved this declaration here and added
28292         `MonoMethod *generic_method'.
28293
28294         * icall.c
28295         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
28296         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
28297
28298         * metadata.c (mono_metadata_type_equal): Two types of
28299         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
28300         index; ie. don't compare the address of the `MonoGenericParam'
28301         structure.
28302         (mono_metadata_load_generic_params): Removed the `MonoMethod
28303         *method' argument.
28304
28305         * metadata.h (MonoGenericInst): Moved declaration to class.h.
28306         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
28307
28308         * reflection.c (method_encode_signature): Encode the number of
28309         generic parameters.
28310         (encode_generic_method_sig): New static function.
28311         (method_encode_methodspec): New static function; creates an entry
28312         in the MethodSpec table for a generic method.
28313         (mono_image_get_methodspec_token): New static function.
28314         (mono_image_create_token): Call mono_image_get_methodspec_token()
28315         for generic methods.
28316         (mono_reflection_bind_generic_method_parameters): New public
28317         function.  Instantiates a generic method.
28318
28319 2003-10-16  Martin Baulig  <martin@ximian.com>
28320
28321         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
28322         *gen_params' here from MonoMethodHeader.
28323
28324         * metadata.c (mono_metadata_parse_method_signature): If we have
28325         generic parameters, initialize `method->gen_params' and then set
28326         the correct `type->data.generic_param' in all the parameters.
28327
28328 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
28329
28330         * threads.c (mono_threads_get_default_stacksize): New function to 
28331         return the default stacksize.
28332
28333         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
28334         termination of the finalizer thread, since the previous method had
28335         race conditions. Fixes #49628.
28336
28337         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
28338         as for the other managed threads.
28339
28340 2003-10-16  Martin Baulig  <martin@ximian.com>
28341
28342         * class.c (inflate_generic_signature): Copy `generic_param_count'
28343         and `gen_params'.
28344
28345         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
28346         New interncall.
28347
28348         * metadata.c (mono_metadata_parse_method_signature): Actually set
28349         the `method->generic_param_count' here.
28350         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
28351
28352 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
28353
28354         * object.h: Add a new field to TypedRef to simplify the implementation
28355         of the REFANY opcodes in the JIT.
28356
28357         * icall.c: Make use of the new field.
28358
28359         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
28360         dynamically.
28361
28362 2003-10-15  Martin Baulig  <martin@ximian.com>
28363
28364         * class.c (mono_class_from_gen_param): Renamed to
28365         mono_class_from_generic_parameter() and moved most of the
28366         functionality from mono_reflection_define_generic_parameter()
28367         here; ie. we create a "real" class here.
28368         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
28369         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
28370         previously been called.
28371
28372         * class.h (MonoGenericParam): Moved the declaration of this struct
28373         here from metadata.h and added `MonoMethod *method'.
28374
28375         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
28376         interncall.
28377
28378         * loader.c (mono_get_method_from_token): If we have any generic
28379         parameters, call mono_metadata_load_generic_params() to read them
28380         from the MONO_TABLE_GENERICPAR.
28381
28382         * metadata.c (mono_metadata_load_generic_params): Added
28383         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
28384
28385         * metadata.h (MonoMethodSignature): Replaced
28386         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
28387         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
28388
28389         * reflection.c (mono_reflection_define_generic_parameter): Moved
28390         most of the functionality into the new
28391         mono_class_from_generic_parameter(); set the `method' field if
28392         we're a method parameter.       
28393
28394 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
28395
28396         * marshal.c (emit_struct_conv): if native size is 0
28397         emit no code.
28398
28399 2003-10-14  Martin Baulig  <martin@ximian.com>
28400
28401         * icall.c: The generics API has changed in the spec since it was
28402         added to System.Type; these modifications make it match the spec
28403         again.
28404         (ves_icall_Type_GetGenericParameters): Renamed to
28405         `ves_icall_Type_GetGenericArguments'.
28406         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
28407         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
28408         `ves_icall_MonoType_get_HasGenericArguments'.
28409         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
28410         `ves_icall_MonoType_get_IsGenericParameter'.
28411         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
28412         this is no interncall anymore.
28413         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
28414         `ves_icall_TypeBuilder_get_IsGenericParameter'.
28415
28416 2003-10-14  Martin Baulig  <martin@ximian.com>
28417
28418         * reflection.c (mono_reflection_bind_generic_parameters): Also
28419         inflate generic methods if we're reading the class from IL.
28420
28421 2003-10-13  Martin Baulig  <martin@ximian.com>
28422
28423         * reflection.c (mono_reflection_define_generic_parameter): This
28424         method isn't called directly from the icall anymore; take a
28425         `MonoReflectionAssemblyBuilder *' so we can use this for type and
28426         method generic parameters.
28427         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
28428         (method_builder_encode_signature): Encode generic parameters.
28429         (mono_image_get_method_info): Write generic params to the
28430         MONO_TABLE_GENERICPARAM table.
28431
28432         * reflection.h (MonoReflectionMethodBuilder): Added
28433         `MonoArray *generic_params'.
28434
28435         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
28436
28437         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
28438         wrapper for mono_reflection_define_generic_parameter().
28439         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
28440
28441 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
28442
28443         * marshal.h: Add missing function to fix build.
28444
28445         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
28446         the SetLastError pinvoke attribute.
28447
28448         * marshal.c (mono_marshal_set_last_error): New helper function called
28449         by the generated code.
28450         
28451         * marshal.c (mono_mb_emit_branch): New helper function.
28452
28453         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
28454
28455         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
28456         classes as parameters and return values of delegates. Fixes #29256. 
28457
28458 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
28459
28460         * locales.c: use gint32 in non HAVE_ICU case
28461
28462 2003-10-11  Martin Baulig  <martin@ximian.com>
28463
28464         * mono-debug.c (mono_debug_add_method): Added a workaround for
28465         bug #48591.
28466
28467 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
28468
28469         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
28470         delegates passed to native code must use the STDCALL calling 
28471         convention. Fixes #35987.
28472
28473 2003-10-10  Martin Baulig  <martin@ximian.com>
28474
28475         * class.c (inflate_generic_type): If we're inflating for a generic
28476         type instance (and not for a generic method), return
28477         MONO_TYPE_MVAR unchanged.
28478
28479 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28480
28481         * string-icalls.c: Join ignores null strings in the source array.
28482         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
28483         * threads.c: GetAvailableTheads is slightly more accurate.
28484
28485 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
28486
28487         * threads.h threads.c : add mono_threads_set_default_stacksize
28488         and pass default to CreateThread calls.
28489
28490 2003-10-09  Dick Porter  <dick@ximian.com>
28491
28492         * icall.c:
28493         * locales.h:
28494         * locales.c: Internal calls for constructing CultureInfo and
28495         related objects from libicu (if its available.)
28496
28497 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
28498
28499         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
28500
28501 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28502
28503         * threadpool.c: added an argument to async_invoke_thread that is the
28504         item to process, pass the MonoAsyncResult to the thread start function
28505         when creating a new thread. This way we don't need to acquire any lock
28506         when we're creating a new thread. Readded a semaphore for faster
28507         response times (instead of that Sleep i added).
28508
28509 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
28510
28511         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
28512         get daylight change dates better on Windows, fix handling
28513         of platforms without tm_gmtoff.
28514
28515 2003-10-06  Martin Baulig  <martin@ximian.com>
28516
28517         * class.c (inflate_generic_method): Renamed to
28518         mono_class_inflate_generic_method() and made public.
28519         (mono_class_init): Don't inflate the generic methods here.
28520         (mono_class_from_generic): Added `gboolean inflate_methods'
28521         argument.  Inflate the methods here.
28522
28523         * loader.c (mono_method_get_param_names): Ignore instances of
28524         generic types for the moment.
28525
28526         * reflection.c (fixup_method): Added support for inflated methods.
28527         (mono_image_create_token): Use mono_image_get_methodref_token()
28528         for inflated methods.
28529         (mono_custom_attrs_from_param): Ignore instances of generic types
28530         for the moment.
28531         (mono_reflection_bind_generic_parameters): New public function.
28532         Moved all the functionality from
28533         ves_icall_Type_BindGenericParameters() here and added support for
28534         dynamic types.
28535         (mono_reflection_define_generic_parameter): Initialize
28536         `klass->methods' here.
28537
28538         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
28539         functionality into mono_reflection_define_generic_parameter().
28540         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
28541         TypeBuilder, return that TypeBuilder.
28542
28543 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28544
28545         * appdomain.c: removed mono_delegate_semaphore.
28546
28547         * threadpool.c:
28548         (mono_thread_pool_add): moved hash table creation inside and the thread 
28549         creation outside of the critical region.
28550         (mono_thread_pool_finish): removed obsolete code.
28551         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
28552         continue or exit the thread depending on the queue.
28553
28554 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
28555
28556         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
28557         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
28558         handle more bool marshalling options
28559
28560 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
28561
28562         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
28563         arrays of structs. Also add a more descriptive error message when
28564         a structure member is marshalled as LPArray.
28565
28566 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
28567
28568         * marshal.c (mono_marshal_get_native_wrapper): Add support for
28569         marshalling arrays of complex types. Fixes #29098. Also remove an
28570         usused and incomplete function.
28571
28572 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
28573
28574         * gc.c: report heap_size - free_bytes as total memory allocated
28575         (bug#49362).
28576
28577 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
28578
28579         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
28580         fix timezone handling problems on Windows.
28581         
28582         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
28583         asserts when the year is outside the range handled by ms the functions.
28584
28585         * class.c (setup_interface_offsets): If the class is an interface,
28586         fill out its interface_offsets slot.
28587
28588 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28589
28590         * threadpool.c: mark threadpool threads as background.
28591
28592 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
28593
28594         * decimal.c - define DECINLINE to nothing if not using GCC
28595
28596 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
28597
28598         * assembly.c: More refcount fixes.
28599
28600 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28601
28602         * string-icalls.c: if we're not trimming, return the same string.
28603         When not splitting, don't create a new string.
28604
28605 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28606
28607         * image.c:
28608         (mono_image_open): increment the ref_count inside the critical section.
28609
28610 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
28611
28612         * image.c (mono_image_open): Fix reference counting bug.
28613
28614 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
28615
28616         * marshal.c (mono_marshal_type_size) struct alignment changed for 
28617         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
28618         64bits. Avoid leak in mono_marshal_get_native_wrapper when
28619         mono_lookup_pinvoke_call throws.        
28620
28621 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
28622
28623         * reflection.c (mono_reflection_parse_type): Fix #49114.
28624
28625         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
28626         temporary workaround for cygwin header problem.
28627
28628         * object.c (mono_object_isinst): Synchronize this with the code
28629         generated by the JIT for casts.
28630
28631 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
28632
28633         * reflection.c (encode_type): Fix #38332.
28634
28635 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
28636
28637         * marshal.c (mono_marshal_method_from_wrapper): New function to return
28638         the original method from the wrapper method.
28639
28640 2003-09-25  Martin Baulig  <martin@ximian.com>
28641
28642         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
28643         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
28644         (ves_icall_Type_get_IsGenericInstance): New interncall.
28645
28646 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
28647
28648         * object.c: fix cast warning in big endian code.
28649
28650 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
28651
28652         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
28653         
28654 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28655
28656         * assembly.c: don't call check_env from mono_assembly_load. It's
28657         already done once in mono_assemblies_init and may cause headaches when
28658         multiple threads are loading assemblies.
28659
28660 2003-09-19  Martin Baulig  <martin@ximian.com>
28661
28662         * reflection.c (mono_reflection_define_generic_parameter): Don't
28663         allocate `klass->methods', set `klass->flags' to
28664         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
28665
28666 2003-09-18  Martin Baulig  <martin@ximian.com>
28667
28668         * class.c (mono_class_init): Don't create `class->methods' if it's
28669         already initialized.
28670
28671         * metadata.c (mono_metadata_load_generic_params): Make this
28672         actually work.
28673
28674         * reflection.c (mono_reflection_define_generic_parameter): Set
28675         parent class and interfaces from the constraints.
28676
28677         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
28678         to keep this struct in sync with the declaration in TypeBuilder.cs.
28679
28680 2003-09-17  Martin Baulig  <martin@ximian.com>
28681
28682         * metadata.h (MonoType): Replaced the data's `int type_param'
28683         field with `MonoGenericParam *generic_param'.
28684         (MonoGenericParam): Added `MonoClass *klass'.
28685
28686         * class.c (mono_class_from_gen_param): Removed the
28687         `MonoImage *image' and `int type_num' arguments.
28688
28689         * metadata.c (mono_metadata_parse_generic_param): New static
28690         method; creates a MonoGenericParam which just contains the index.
28691         (do_mono_metadata_parse_type): Call
28692         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
28693         MONO_TYPE_MVAR.
28694
28695         * reflection.c (mono_image_typedef_or_ref): Generic type
28696         parameters may be in the same assembly, but never use a typedef
28697         for them.
28698         (mono_reflection_define_generic_parameter): We're now creating a
28699         "real" class for the type parameter; it's now safe to call
28700         mono_class_from_mono_type() on the class'es type, it'll do the
28701         right thing.
28702
28703 2003-09-16  Martin Baulig  <martin@ximian.com>
28704
28705         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
28706         `symfile->range_entry_size' and `symfile->class_entry_size' here;
28707         the `symfile' data structure must be fully initialized before it
28708         gets added to the table.
28709
28710 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
28711
28712         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
28713
28714         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
28715         class init trampolines.
28716
28717 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
28718
28719         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
28720         to the built-in profiler to turn off time and allocation profiling
28721         respectively.
28722
28723 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
28724
28725         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
28726         g_direct_equal.
28727
28728         * debug-helpers.c (mono_method_full_name): Print the wrapper type
28729         in human readable form.
28730
28731 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
28732
28733         * reflection.c icall.c: Fixed warnings.
28734
28735         * image.c (load_class_names): Use a temporary hash table to hold the
28736         namespaces in order to avoid doing many string comparisons.
28737
28738         * image.h: Fix typo.
28739
28740         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
28741         Pass NULL instead of g_direct_equal to the GHashTable constructor 
28742         since the NULL case is short-circuited inside g_hash_table_lookup, 
28743         leading to better performance.  
28744
28745         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
28746         obtain the first custom attribute for a given index. Depends on the
28747         CustomAttribute table being sorted by the parent field.
28748
28749         * reflection.c (mono_custom_attrs_from_index): Use the new function 
28750         for better performance.
28751
28752 2003-09-07  Martin Baulig  <martin@ximian.com>
28753
28754         * class.c (mono_class_init): If we're a generic instance, inflate
28755         all our methods instead of loading them from the image.
28756         (mono_class_from_generic): Set `class->methods = gklass->methods'.
28757
28758 2003-09-07  Martin Baulig  <martin@ximian.com>
28759
28760         * mono-debug-debugger.c: Added support for constructors.
28761
28762 2003-09-06  Martin Baulig  <martin@ximian.com>
28763
28764         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
28765         New interncall.
28766
28767         * reflection.c (mono_reflection_setup_generic_class): Call
28768         ensure_runtime_vtable() to create the vtable.
28769
28770 2003-09-05  Martin Baulig  <martin@ximian.com>
28771
28772         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
28773         MONO_TYPE_MVAR.
28774
28775 2003-09-04  Martin Baulig  <martin@ximian.com>
28776
28777         * reflection.c (mono_reflection_define_generic_parameter): Generic
28778         parameters start with zero.
28779
28780 2003-09-04  Martin Baulig  <martin@ximian.com>
28781
28782         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28783
28784         * reflection.h (MonoReflectionGenericParam): New typedef.
28785         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
28786         the generic parameters from the managed TypeBuilder.
28787
28788         * reflection.c (mono_reflection_define_generic_parameter): New function.
28789         (mono_reflection_create_runtime_class): Encode generic parameters.
28790         (mono_reflection_setup_generic_class): New function; this is
28791         called after adding adding all generic params to the TypeBuilder.
28792         (encode_type): Added MONO_TYPE_VAR.
28793
28794 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
28795
28796         * class.h class.c (mono_class_needs_cctor_run): Moved this method
28797         here from the JIT.
28798
28799         * assembly.h assembly.c: Moved the AOT loading code into an assembly
28800         load hook.
28801
28802 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
28803
28804         * reflection.h reflection.c class.h class.c: Delete duplicate 
28805         definition of mono_type_get_name () from reflection.c and export the
28806         one in class.c.
28807
28808         * class.c: Class loading fixes from Bernie Solomon 
28809         (bernard@ugsolutions.com).
28810
28811         * reflection.c: Endianness fixes from Bernie Solomon 
28812         (bernard@ugsolutions.com).
28813         
28814 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
28815
28816         * assembly.h assembly.c: Define a file format version for AOT
28817         libraries.
28818         
28819         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
28820
28821         * appdomain.h (MonoJitInfo): New field to determine whenever the
28822         code is domain neutral.
28823         
28824 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
28825
28826         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
28827
28828 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
28829
28830         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
28831         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
28832         Avoid caching the result since strings must be domain specific. Fixes
28833         #48050.
28834
28835 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
28836
28837         * marshal.c (mono_marshal_init): Make this callable multiple times
28838         since it is hard to find a correct place to call it.
28839
28840         * object.c (mono_runtime_class_init): Execute static constructors in
28841         the correct appdomain.
28842
28843         * image.c (build_guid_table): Handle the case when multiple images have
28844         the same GUID.
28845
28846 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28847
28848         * icall.c: added a couple of icalls for System.Web.
28849
28850 2003-08-28  Martin Baulig  <martin@ximian.com>
28851
28852         * icall.c (ves_icall_Type_BindGenericParameters): Use
28853         `klass->generic_inst' instead of `&klass->byval_arg' in the
28854         mono_type_get_object() call.  The returned type must be
28855         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
28856
28857 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
28858
28859         * NOTES: New file.
28860
28861         * object.c (mono_class_proxy_vtable): Make it thread safe.
28862
28863         * pedump.c: Fix warning.
28864
28865         * object.c appdomain.h: Get rid of metadata_section. 
28866         It is no longer needed and it was causing deadlocks with domain->lock.
28867
28868         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
28869
28870 2003-08-26  Martin Baulig  <martin@ximian.com>
28871
28872         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
28873
28874 2003-08-26  Martin Baulig  <martin@ximian.com>
28875
28876         * pedump.c (main): Call mono_metadata_init(),
28877         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
28878         and mono_loader_init().
28879
28880 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
28881
28882         * loader.h: Add missing include to fix build.
28883
28884         * image.h: mono_image_load_references is no more.
28885
28886         * assembly.c: Reworked assembly loading to make it really thread safe.
28887         After these changes, the assembly returned by mono_assembly_open is
28888         fully initialized, i.e. all its references assemblies are loaded.
28889
28890         * assembly.c (mono_image_load_references): Renamed to 
28891         mono_assembly_load_references, and made private, since clients no
28892         longer need to call it.
28893
28894         * class.c: Removed calls to mono_assembly_load_references, since it was
28895         a source of deadlocks.
28896
28897         * loader.h loader.c class.h class.c: Protect data structures using a 
28898         new lock, the loader lock.
28899
28900         * class.c (mono_class_setup_vtable): Create temporary hash tables and
28901         GPtrArrays only when needed.
28902
28903         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
28904         into empty structures by mcs. Fixes pinvoke7.cs.
28905         
28906         * domain.c (mono_init): Call a new initialization function.
28907
28908         * appdomain.c (mono_runtime_init): Call the new initializer function
28909         of the marshal module.
28910
28911         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
28912         inserted into empty structures by mcs. Fixes pinvoke7.cs.
28913
28914         * marshal.h marshal.c: Added locks around the wrapper caches to make
28915         this module thread safe.
28916
28917         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
28918         this argument. Fixes pinvoke1.exe.
28919
28920 2003-08-25  Lluis Sanchez <lluis@ximian.com>
28921
28922         * object.h: Added call_type field to MonoMethodMessage and the corresponding
28923         enumeration of values. Removed fields to store remote call output values in
28924         MonoAsyncResult. Not needed any more.
28925         * object.c: Initialize call_type and async_result fields in mono_message_init.
28926         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
28927         dispatching the message.
28928         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
28929         async call to finish. To do it use a message with EndInvoke call type.
28930
28931 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
28932
28933         * loader.h loader.c (mono_method_hash_marhal_info): New function which
28934         determines whenever a method has marshalling info.
28935
28936 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28937
28938         * assembly.c: fix the build on windows.
28939
28940 2003-08-22 Lluis Sanchez <lluis@ximian.com>
28941
28942         * object.cs: Fixed bug #47785.
28943
28944 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
28945
28946         * string-icalls.c (StringReplace): If their are no occurances of
28947         the old string found return a reference to the supplied
28948         string. This saves some memory and matches MS behavoir.
28949         
28950 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28951
28952         * socket-io.c: fixed compilation for systems that define AF_INET6
28953         and don't define SOL_IP/SOL_IPV6.
28954
28955 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
28956
28957         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
28958         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
28959
28960         * rawbuffer.c rawbuffer.h: Make this module thread safe.
28961
28962         * domain.c: Make this module thread safe.
28963
28964         * domain.c (mono_init): Call new initialization function.
28965
28966         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
28967         reference types too. Fixes #38812.
28968
28969         * image.c (mono_image_init): Fixed warnings.
28970
28971         * class.c (mono_class_from_typeref): Handle assembly load failure
28972         correctly.
28973
28974         * appdomain.c (add_assemblies_to_domain): Handle the case when
28975         the references of an assembly are not yet loaded.
28976
28977         * metadata.c image.c assembly.c: Moved initialization of global
28978         variables to a separate function called at startup since lazy 
28979         initialization of these variables is not thread safe.
28980         
28981         * image.c assembly.c: Made this module thread safe by adding locks in 
28982         the appropriate places.
28983
28984         * domain.c (mono_init): Call the new initialization functions of the
28985         three modules.
28986
28987 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
28988
28989         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
28990           make a direct call. It is proxy's work to make the call asynchronous.
28991           mono_delegate_end_invoke(): If the targe is a proxy, just collect
28992           the return values.
28993         * object.cs: mono_method_call_message_new(): read AsyncResult and
28994           state object from parameters list, if this info is requested.
28995         * object.h: Added fields to store remote call output values in
28996           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
28997
28998 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
28999
29000         * object.h: add needed fields to MonoThread.
29001         * threads.c, threads.h: allow registering a function to cleanup data
29002         allocated per thread by the JIT.
29003
29004 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29005
29006         * loader.h: portability fix by Bernie Solomon
29007         * <bernard@ugsolutions.com>.
29008
29009 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
29010
29011         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
29012         return a MonoArray. This simplifies the code and also ensures that
29013         the cache allways contains an object reference as a value.
29014
29015         * icall.c (ves_icall_get_parameter_info): Simplified using the new
29016         function.
29017
29018 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29019
29020         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
29021         fixes a problem with byte ordering when getting the address family for
29022         a socket.
29023
29024 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
29025
29026         * .cvsignore: Added monosn.
29027
29028         * reflection.h reflection.c loader.c: Added support for parameter
29029         marshalling to dynamically created types. Fixes #47295.
29030
29031 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
29032
29033         * rand.c: remove useless warnings.
29034
29035 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29036
29037         * class.c: implemented ldtoken for methods and fieldrefs.
29038
29039 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29040
29041         * threadpool.c: when mono_async_invoke was called, no one took care of
29042         monitoring the queue. So if the method invoked took some time and we
29043         got new async invoke requests after 500 ms (the thread created waited
29044         that long in WaitForSingleObject), the new async invoke was not called
29045         until the previous one finished.
29046
29047         This is fixed now. Thanks to Totte for helping with it.
29048
29049 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29050
29051         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
29052
29053 2003-08-11  Martin Baulig  <martin@ximian.com>
29054
29055         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
29056
29057 2003-08-06  Martin Baulig  <martin@ximian.com>
29058
29059         * mono-debug-debugger.c: Added support for static fields,
29060         properties and methods.
29061
29062 2003-08-06  Martin Baulig  <martin@ximian.com>
29063
29064         * mono-debug-debugger.c: Don't store the MonoString's vtable to
29065         make this work for applications with multiple application domains.
29066
29067 2003-08-04  Martin Baulig  <martin@ximian.com>
29068
29069         * mono-debug-debugger.c: Completely reworked the type support; the
29070         most important thing is that we're now just using one single
29071         `MonoType' instance per type.
29072
29073 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
29074
29075         * mono-endian.h, mono-endian.c, icall.c: Added icall
29076         ves_icall_System_Double_AssertEndianity to assert double word endianity
29077         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
29078
29079 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29080
29081         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
29082         support, icalls and fixes.
29083
29084 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
29085
29086         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
29087         classes that are a punctuation character in .NET is not the same a
29088         g_unichar_ispunct.
29089
29090 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29091
29092         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
29093
29094 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
29095
29096         * icall.c: Add new MemCopy internalcall.
29097         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
29098         Simplified code; It is not necessary to handle all the cases here,
29099         as the C# code takes care of it.  Only handle the case of the name
29100         resource embedded into the assembly.
29101
29102         Changed signature to return the data pointer and the size of the
29103         data. 
29104
29105 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
29106
29107         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
29108         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
29109
29110 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29111
29112         * socket-io.c: ignore EINTR error in select.
29113
29114 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29115
29116         * class.h, class.c: removed unused subclasses field in MonoClass.
29117
29118 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29119
29120         * icall.c: improve fix of get_base_definition(). If the parent class
29121           doesn't have the mehod, look at the parent of the parent.
29122         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
29123           to check if a parameter is an in or out parameter
29124           (PARAM_ATTRIBUTE_IN is not set by default).
29125           mono_method_return_message_restore(): Use mono_class_value_size to
29126           get the size of a value type. mono_type_stack_size (parameterType)
29127           does not return the correct value if parameterType is byRef.
29128           mono_load_remote_field(), mono_load_remote_field_new(),
29129           mono_store_remote_field(), mono_store_remote_field_new():
29130           raise exception if the remote call returns an exception.
29131
29132 2003-07-28  Martin Baulig  <martin@ximian.com>
29133
29134         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
29135         method.  This is a wrapper around mono_runtime_invoke() which
29136         boxes the instance object if neccessary.
29137
29138 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29139
29140         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
29141         metadata.h, row-indexes.h, verify.c: first cut of generics support.
29142
29143 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29144
29145         * icall.c: disable mcs bug workaround.
29146
29147 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
29148
29149         * object.c (mono_runtime_class_init): Take the metadata_section
29150         mutex before obtaining the domain mutex.
29151
29152         * appdomain.h: Added definition of metadata_section mutex here. 
29153
29154         * object.c: define metadata_mutex here.
29155
29156 2003-07-24  Ravi Pratap  <ravi@ximian.com>
29157
29158         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
29159         fixed.
29160
29161 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
29162
29163         * reflection.c: Fix bug #46669
29164
29165 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29166
29167         * exception.c:
29168         * exception.h:
29169         * icall.c:
29170         * object.h: fill in the type name for TypeLoadException.
29171
29172 2003-07-23  Ravi Pratap  <ravi@ximian.com>
29173
29174         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
29175         relationship between TypeBuilders while compiling corlib) and bug
29176         45993 (Array types returned from the runtime while compiling
29177         corlib were from the loaded corlib).
29178
29179 2003-07-22  Martin Baulig  <martin@ximian.com>
29180
29181         * mono-debug-debugger.c: Reworked the type support a bit more;
29182         distinguish between types and classes.
29183
29184 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
29185
29186         * icall.c: add IsArrayImpl icall.
29187
29188 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
29189
29190         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
29191         initializing real_size only once. Also fix bug #46602.
29192
29193 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
29194
29195         * object.c: Renamed mono_metadata_section to metadata_section.
29196
29197 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
29198
29199         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
29200           empty array if the type is an array. Fixed.
29201           ves_icall_MonoMethod_get_base_definition: if the base method
29202           is abstract, get the MethodInfo from the list of methods of
29203           the class.
29204         * reflection.c: ParameterInfo.PositionImpl should be zero-based
29205           and it was 1-based. Fixed in mono_param_get_objects.
29206
29207 2003-07-20  Martin Baulig  <martin@ximian.com>
29208
29209         * mono-debug.h: Set version number to 31.
29210         (mono_debug_init): Added `MonoDomain *' argument.
29211
29212         * mono-debug-debugger.c: Reworked the type support; explicitly
29213         tell the debugger about builtin types; pass the `klass' address to
29214         the debugger.
29215
29216 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
29217
29218         * image.c: Allow new metadata tables to be loaded without a
29219         warning. Also update the warning message to give the new constant value.
29220                 
29221 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
29222
29223         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
29224         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
29225         array type representation changes.
29226
29227 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
29228
29229         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
29230         on Environment.Exit () call.
29231
29232 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29233
29234         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
29235         requires a matching corlib.
29236
29237 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
29238
29239         * Changelog: My editor decided to add a CR to each line. Sorry about that.
29240           Committed again without the CRs.
29241         
29242 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
29243
29244         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
29245           getting it from the "this" socket instance. Did not work
29246           if the socket is a subclass of Socket.
29247           Also fixed bug #35371.
29248
29249 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
29250
29251         * metadata.c: fixed size for TypedByRef.
29252         * loader.c: when searching for a method, consider the vararg amrker.
29253         * unicode.c, decimal.c: constify some arrays.
29254
29255 2003-07-15  Dick Porter  <dick@ximian.com>
29256
29257         * socket-io.c: Fixed compilation for gcc < 3.2.
29258
29259         Fixed compilation for machines that don't have AF_INET6 (thanks to
29260         Bernie Solomon <bernard@ugsolutions.com> for that part.)
29261
29262         Fixed compile warnings.
29263         
29264         Fixed formatting and line endings.
29265
29266 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
29267
29268         * socket-io.h:
29269         * socket-io.c: Added IPv6 support.
29270
29271 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
29272
29273         * class.c (mono_class_is_assignable_from): New function to implement
29274         the is_assignable_from logic. Used by mono_object_isinst, 
29275         Type::IsAssignableFrom () and the interpreter.
29276
29277         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
29278         Object, even interfaces.
29279         
29280         * object.c (mono_object_isinst): Implement in terms of 
29281         is_assignable_from.
29282
29283         * icall.c (ves_icall_type_is_assignable_from): New icall.
29284
29285 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
29286
29287         * domain.c (foreach_domain): fix compiler warning.
29288
29289 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
29290
29291         * image.c (load_metadata_ptrs): use g_strndup because strndup is
29292         not available on all plattforms
29293
29294 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
29295
29296         * image.h image.c: Store the metadata version string in MonoImage.
29297         * icall.c: New icall to retrieve the image version.
29298         * reflection.c (create_dynamic_image): Fill in the image version field
29299         * reflection.c (build_compressed_metadata): Use the image version
29300         from the image structure.
29301
29302 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29303
29304         * appdomain.c: modified comment.
29305         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
29306         That will be its last iteration when mono_gc_cleanup is called from
29307         mono_runtime_cleanup and before the domain is unloaded.
29308
29309         Fixes bug #45962.
29310
29311 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
29312
29313         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
29314         attributes.
29315
29316 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29317
29318         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
29319         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
29320         Bernie Solomon <bernard@ugsolutions.com>.
29321
29322 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
29323
29324         * object.c, object.h: provide mono_object_new_fast() for faster
29325         allocation in some special cases.
29326
29327 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
29328
29329         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
29330         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
29331
29332 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
29333
29334         * threadpool.c: fix leaks.
29335
29336 2003-07-01  Dick Porter  <dick@ximian.com>
29337
29338         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
29339         using MonoGHashTables.  Fixes threadpool bug posted to list.
29340
29341 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
29342
29343         * image.h, image.c: added support to load an assembly from a byte array.
29344         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
29345         assembly bundle support.
29346
29347 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
29348
29349         * threadpool.c (mono_thread_pool_add): keep a reference to the
29350         AsyncResult to prevent GC
29351
29352 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
29353
29354         * class.c: leak fix.
29355
29356 2003-06-25  Dick Porter  <dick@ximian.com>
29357
29358         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
29359         for the async object, the WaitHandle object will close the handle.
29360         Fixes bug 45321.
29361
29362 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
29363
29364         * class.c: in mono_array_class_get (), lookup from the hash with the
29365         same type we insert: this works around a bug in
29366         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
29367         lluis. The real fix will have to wait for after the release.
29368
29369 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
29370
29371         * icall.c: fix memory leak when getting type members.
29372
29373 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
29374
29375         * reflection.c: added more pubtoken special cases.
29376
29377 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
29378
29379         * class.c: handle field offset correctly when class size
29380         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
29381
29382 2003-06-20  Martin Baulig  <martin@ximian.com>
29383
29384         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
29385         *image' field.
29386
29387 2003-06-20  Martin Baulig  <martin@ximian.com>
29388
29389         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
29390
29391 2003-06-20  Martin Baulig  <martin@ximian.com>
29392
29393         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
29394         just distinguish between variables in registers and variables at
29395         an offset relative to a register.
29396
29397 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29398
29399         * icall.c: #ifdef out latest changes until mcs is fixed.
29400
29401 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29402
29403         * icall.c: return members in metadata order.
29404
29405 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
29406
29407         * icall.c: avoid infinite loop in GetTimeZoneData.
29408
29409 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
29410
29411         * icall.c: added Marshal.Prelink/All icalls.
29412
29413 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
29414
29415         * object.c, object.h: fix warnings and do some overflow checking
29416         when creating arrays.
29417
29418 2003-06-17  Dick Porter  <dick@ximian.com>
29419
29420         * file-io.h:
29421         * file-io.c: File attributes need to be tweaked slightly when
29422         passed from the managed to the w32 world.
29423
29424 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
29425         * profiler.h profiler-private.h profiler.c: Rework last patch
29426         based on suggestion by Paolo.
29427         
29428 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
29429
29430         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
29431         instruction level coverage data collection.
29432         * profiler.h profiler.c (: Added new callback function which can be
29433         used by the profiler to limit which functions should have coverage
29434         instrumentation.
29435         * profiler.c (mono_profiler_load): Call g_module_build_path to
29436         generate the file name of the profiler library.
29437
29438 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29439
29440         * profiler.c, profiler.h, profiler-private.h: added basic block 
29441         coverage profiling API.
29442
29443 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
29444
29445         * reflection.c (mono_reflection_create_runtime_class): Add support
29446         for events in dynamically generated code.
29447
29448         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
29449         not allocated.
29450
29451 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
29452
29453         * icall.c: when getting timezone info, return reasonable values if we
29454         can't get the actual data.
29455
29456 2003-06-14  Dick Porter  <dick@ximian.com>
29457
29458         * threads.c (start_wrapper): Remove the reference to the thread
29459         object in the TLS data, so the thread object can be finalized.
29460         This won't be reached if the thread threw an uncaught exception,
29461         so those thread handles will stay referenced :-( (This is due to
29462         missing support for scanning thread-specific data in the Boehm GC
29463         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
29464
29465 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
29466
29467         * reflection.c: ensure streams and tables are first allocated with
29468         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
29469
29470 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29471
29472         * icall.c: fixed GetElementType for byrefs (bug# 44792).
29473
29474 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
29475
29476         * reflection.c (mono_reflection_create_runtime_class): Add support for
29477         properties to dynamically created classes.
29478         * reflection.c: Fix a few places where non-MonoObjects were inserted
29479         into the tokens hashtable.
29480
29481 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29482
29483         * object.c: some support to handle out of memory exceptions.
29484
29485 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
29486
29487         * marshal.c (mono_marshal_get_native_wrapper): support reference
29488         return types
29489
29490 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
29491
29492         * object.h, object.c: more portability stuff from Bernie Solomon.
29493         Unexport mono_object_allocate(). Added mono_object_unbox ().
29494         Set exitcode when an unhandled exception is thrown.
29495
29496 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
29497
29498         * marshal.c (mono_marshal_get_native_wrapper): use custom
29499         marshaler for return types.
29500
29501 2003-06-10  Dick Porter  <dick@ximian.com>
29502
29503         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
29504         ip_mreq is available
29505
29506 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
29507
29508         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
29509         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
29510         by Bernie Solomon <bernard@ugsolutions.com>.
29511
29512 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
29513
29514         * gc.c (mono_gc_init): Avoid error message on shutdown when
29515         GC_DONT_GC=1 is used.
29516
29517         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
29518         New icall to return the GUID of a module.
29519
29520 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
29521
29522         * class.c: ensure instance size always includes the parent's size
29523         even whem class size is set explicitly (fixes bug#44294).
29524
29525 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
29526
29527         * profiler.h, profiler.c: made the simple profiler thread-safe,
29528         get more accurate timing info. Allow the loading of an
29529         externally-developed profiler module.
29530
29531 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
29532
29533         * marshal.c (mono_marshal_get_native_wrapper): improved
29534         class/byref arguments.
29535         (mono_marshal_get_native_wrapper): better string marshaling support.
29536
29537 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
29538
29539         * class.c: ensure .pack and .size are handled correctly and
29540         simplified layout of static fields.
29541
29542 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
29543
29544         * appdomain.c
29545         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
29546
29547         * loader.c (mono_lookup_pinvoke_call): look for modules in the
29548         current directory (fix bug 44008)
29549
29550 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
29551
29552         * marshal.c (mono_marshal_get_native_wrapper): started support for
29553         custom marshalers.
29554         (mono_delegate_to_ftnptr): consider marshalling specifications
29555
29556 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
29557
29558         * reflection.c, reflection.h: emit custom marshal info.
29559
29560 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29561
29562         * object.c: free the GError.
29563         * icall.c: added CloseEvent_internal.
29564         * threads.[ch]:
29565         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
29566         call.
29567
29568 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
29569
29570         * loader.c (mono_method_get_signature): Add support for dynamic
29571         assemblies.
29572
29573 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
29574
29575         * reflection.c: fixed bug #43905.
29576
29577 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
29578
29579         * class.c, domain.c, icall.c, metadata.h, object.h: support for
29580         handling TypedReference and ArgIterator.
29581         * loader.c, loader.h: added function to get signature at call site.
29582
29583 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29584
29585         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
29586         data readonly. Buglets and warning fixes. Some MethodSpec support.
29587
29588 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
29589
29590         * class.h, class.c, object.c: remove relative numbering support.
29591
29592 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
29593
29594         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
29595         free the string, until we get a chance to fix Gtk#
29596
29597 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29598
29599         * marshal.c: revert last patch.
29600
29601 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
29602
29603         * icall.c: updates for new mono_class_vtable() not calling
29604         the type constructor anymore.
29605
29606 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
29607
29608         * object.h, object.c: separate vtable creation from type
29609         initialization. Make running the .cctor thread safe.
29610
29611 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
29612
29613         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
29614
29615 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
29616
29617         * loader.c (mono_get_method): consider calling convention
29618
29619 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
29620
29621         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
29622         to return the invisible global type for a module.
29623
29624         * reflection.c (mono_image_build_metadata): Emit global fields too.
29625
29626 2003-05-20  Peter Williams  <peterw@ximian.com>
29627
29628         * loader.c (mono_lookup_internal_call): Add a few newlines.
29629
29630 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
29631
29632         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
29633         literal strings.
29634
29635         * appdomain.c (set_domain_search_path): Recalculate search path when
29636         AppDomainSetup.PrivateBinPath changes.
29637
29638         * object.c (mono_class_compute_gc_descriptor): It turns out some
29639         parts of the class libs (like System.Thread) holds pointers to
29640         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
29641         to treat native int a pointer type here.
29642         
29643 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
29644
29645         * appdomain.h, domain.c: add hashtable for jump target resolution.
29646
29647 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
29648
29649         * reflection.h reflection.c icall.c: Added new icalls 
29650         GetManifestResourceInfoInternal, GetModulesInternal and support
29651         infrastructure.
29652
29653 2003-05-16  Dick Porter  <dick@ximian.com>
29654
29655         * icall.c:
29656         * file-io.h:
29657         * file-io.c: Implement System.IO.MonoIO::GetTempPath
29658
29659 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
29660
29661         * object.c: mono_store_remote_field: little fix to previous patch.
29662
29663 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29664
29665         * class.c: add constructors to array classes.
29666         * icall.c: special case array construction for InternalInvoke (),
29667
29668 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
29669
29670         * class.h class.c reflection.c object.c: Added support for field
29671         defaults in dynamically generated classes.
29672
29673 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
29674
29675         * reflection.c: properly encode charset for ddlimport.
29676
29677 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
29678
29679         * threads.c: allow compiling without GC.
29680
29681 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
29682
29683         * appdomain.h, object.c, object.h, threads.c, threads.h: added
29684         handling of thread static data.
29685
29686 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29687
29688         * reflection.h, reflection.c: added mono_custom_attrs_free ().
29689
29690 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
29691
29692         * class.c (mono_array_class_get): always set the serializable flags
29693         (mono_array_class_get): always set the SEALED attribute for array types
29694
29695 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
29696
29697         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
29698         attributes (fix for bug 42021).
29699
29700 2003-05-12  Dick Porter  <dick@ximian.com>
29701
29702         * gc.c: Don't run finalizers when the finalizer thread is
29703         finishing up, because the default domain has already been
29704         destroyed.
29705
29706 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
29707
29708         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
29709         value is null, we should throw an exception.   This is slightly
29710         different than the other conventions used for the constructor.
29711
29712 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29713
29714         * socket-io.c: fixed windows build.
29715
29716 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29717
29718         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
29719
29720 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
29721
29722         * object.c (mono_string_new_wrapper): Compatibility fix for MS
29723         compilers.
29724
29725 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
29726
29727         * class.c (mono_class_layout_fields): Add experimental GC aware
29728         auto layout facility. Requires class library changes to work correctly.
29729
29730         (mono_class_setup_vtable): Avoid overriding explicit interface
29731         method implementations. Fixes iface3.exe test.
29732
29733         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
29734         object reference.
29735         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
29736         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
29737
29738         * metadata.h: Add new type classification macro which determines
29739         whenever the type holds an object reference.
29740
29741 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
29742
29743         * marshal.c (mono_marshal_get_native_wrapper): cleanups
29744
29745 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
29746
29747         * gc.c (finalizer_thread): Work around a GC bug.
29748
29749 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
29750
29751         * marshal.c (emit_struct_conv): allow unions
29752
29753         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
29754
29755 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
29756
29757         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
29758
29759 2003-05-06  Martin Baulig  <martin@ximian.com>
29760
29761         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
29762
29763 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29764
29765         * socket-io.c:
29766         (Select_internal): allow NULLs, don't create arrays if not needed.
29767         Coupled with Socket.cs changes.
29768
29769         * threadpool.c:
29770         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
29771         register a finalizer for it that will close the semaphore handle. This
29772         fixes the leak and make Lupus' test run with > 4080 loops.
29773
29774 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
29775
29776         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
29777         Jerome Laban (bug #42287)
29778
29779 2003-05-02  Martin Baulig  <martin@ximian.com>
29780
29781         * debug-mono-symfile.h
29782         (MonoSymbolFile): Moved declaration into mono-debug.h.
29783         (MonoDebugMethodJitInfo): Likewise.
29784         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
29785         argument.
29786         (_mono_debug_address_from_il_offset): Take a
29787         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
29788
29789         * mono-debug.h
29790         (MonoDebugDomainData): New struct.
29791         (mono_debug_get_domain_data): New function.
29792         (mono_debug_add_method): Take an additional `MonoDomain *'
29793         argument.
29794         (mono_debug_source_location_from_address): Likewise.
29795         (mono_debug_il_offset_from_address): Likewise.
29796         (mono_debug_address_from_il_offset): Likewise.
29797
29798 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
29799
29800         * reflection.c: one more check for null type in custom attrs.
29801
29802 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29803
29804         * reflection.c: avoid warning (comparison is always false due to limited
29805         range of data type).
29806
29807 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29808
29809         * icall.c: throw an exception in Type.GetField if the argument 'name'
29810         is NULL.
29811
29812 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
29813
29814         * reflection.c: fixed handling of enums in named arguments to custom
29815         attributes (bug #42123).
29816
29817 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
29818
29819         * reflection.c: use the right array element type and handle
29820         a null for a Type argument, too.
29821
29822 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
29823
29824         * reflection.c: handle arrays as arguments to custom attributes.
29825
29826 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29827
29828         * reflection.c: handle a string value in a custom attr
29829         ctor that takes an object.
29830
29831 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
29832
29833         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
29834         (fix bug #42063)
29835
29836 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
29837
29838         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
29839
29840 2003-04-27  Martin Baulig  <martin@ximian.com>
29841
29842         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
29843         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
29844         MONO_DEBUGGER_EVENT_BREAKPOINT.
29845         (mono_breakpoint_trampoline_code): Removed.
29846         (mono_debugger_event_handler): The last argument is now a
29847         `guint32'.
29848         (mono_debugger_insert_breakpoint_full): Removed the
29849         `use_trampoline' argument.
29850         (mono_debugger_method_has_breakpoint): Likewise.
29851         (mono_debugger_trampoline_breakpoint_callback): Renamed to
29852         mono_debugger_breakpoint_callback(); take the method and
29853         breakpoint number as arguments.
29854
29855 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
29856
29857         * metadata.c: fix off by one when loading parameters attributes.
29858
29859 2003-04-24  Martin Baulig  <martin@ximian.com>
29860
29861         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
29862
29863 2003-04-24  Martin Baulig  <martin@ximian.com>
29864
29865         * mono-debug-debugger.c: Moved all code which interacts with the
29866         Mono Debugger here.
29867
29868         * debug-mono-symfile.c: This code now just deals with the symbol
29869         file itself, the debugger code is now in mono-debug-debugger.c.
29870
29871 2003-04-23  Martin Baulig  <martin@ximian.com>
29872
29873         * mono-debug.c (mono_debug_source_location_from_il_offset):
29874         New method; like mono_debug_source_location_from_address(), but
29875         takes an IL offset instead of a machine address.
29876
29877 2003-04-23  Martin Baulig  <martin@ximian.com>
29878
29879         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
29880         `line' field; this is now computed by the debugger.
29881
29882 2003-04-23  Martin Baulig  <martin@ximian.com>
29883
29884         * mono-debug.[ch]: New files.  This is the new debugging interface.
29885
29886         * mono-debug-debugger.[ch]: New files.  Moved all code which
29887         interacts with the Mono Debugger here.
29888
29889 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
29890
29891         * domain.c (mono_init): initialize mono_defaults.monitor_class
29892
29893 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
29894
29895         * reflection.c (method_encode_code): Add a spicy exception to help
29896         future compiler authors.
29897
29898 2003-04-21  Martin Baulig  <martin@ximian.com>
29899
29900         * icall.c
29901         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
29902         Make this work with relative pathnames; g_filename_to_uri() needs
29903         an absolute filename.
29904
29905 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
29906
29907         * icall.c: Track name changes in Object and ValueType.
29908
29909 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
29910
29911         * metadata.c (mono_type_stack_size): size should be a multiple of
29912         sizeof (gpointer)
29913
29914 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29915
29916         * gc.c:
29917         (internal_domain_finalize): moved into mono_domain_finalize. No need
29918         to create another thread because the finalizers will be run in the
29919         finalizer thread.
29920         
29921         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
29922         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
29923         to be run (MS does this too).
29924
29925 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
29926
29927         * object.c (mono_class_compute_gc_descriptor): Update comment.
29928
29929         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
29930
29931         * image.h: Add synchronized wrapper cache.
29932
29933         * image.c (do_mono_image_open): Initialize cache.
29934
29935         * reflection.c (create_dynamic_mono_image): Initialize cache.
29936
29937 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29938
29939         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
29940         ves_icall_System_Buffer_ByteLengthInternal.
29941
29942 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29943
29944         * reflection.c: setup klass->nested_in earlier. Allow
29945         a dash in the assembly name.
29946
29947 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
29948
29949         * metadata.c (mono_type_to_unmanaged): dont access
29950         type->data.klass for MONO_TYPE_OBJECT
29951         (mono_type_to_unmanaged): consider System.Delegate class
29952
29953 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
29954
29955         * class.c: just setup supertypes in the proper place instead of
29956         initializing the full element class for arrays.
29957
29958 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
29959
29960         * class.c: ensure the element class of arrays is initialized.
29961         Setup the supertype info for array classes, too.
29962
29963 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
29964
29965         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
29966
29967 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29968
29969         * Makefile.am: re-added -m option when running cygpath. This way,
29970         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
29971         separator.
29972         * mono-config.c: same codepath for locating mono config file for WIN32
29973         and the rest.
29974         * assembly.c: if mono_assembly_setrootdir is called, don't override
29975         the value set.
29976
29977 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29978
29979         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
29980         MONO_ASSEMBLIES variable.
29981
29982 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
29983
29984         * icall.c: added Assembly::GetNamespaces() icall.
29985
29986 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29987
29988         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
29989
29990 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
29991
29992         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
29993         * object.c: fixed bug in the construction of vtable for proxies
29994
29995 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
29996
29997         * object.c (mono_array_new): Mark mono_array_new as an icall.
29998
29999 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30000
30001         * class.c: fixed test for public method when overriding interfaces.
30002         Closes bug #40970.
30003
30004 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
30005
30006         * appdomain.h, domain.c: added mono_domain_foreach() to
30007         be able to access the currently loaded appdomains.
30008         * object.c: make string interning work across sppdomains.
30009         Mark some functions for use as icalls.
30010
30011 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
30012
30013         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
30014
30015         * reflection.h reflection.c: Allocate long living data using 
30016         GC_MALLOC_ATOMIC so the collector does not need to scan it.
30017
30018         * reflection.c: Double the allocation size in streams instead of
30019         increasing it, to prevent unneccesary copying on large assemblies.
30020         
30021         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
30022         creation if the assembly does not have the Run flag set.
30023
30024 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
30025
30026         * class.h: avoid the C++ keywords in header files (Jerome Laban
30027         spotted and fixed this).
30028
30029 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30030
30031         * object.c:
30032         (mono_unhandled_exception): fill in the arguments for the
30033         UnhandledException event. Only trigger that event for the default
30034         domain (as MS does).
30035
30036 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
30037
30038         * object.c: Improve typed allocation stuff based on suggestions from
30039         Paolo. Also turn it on if the GC library supports it.
30040
30041 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30042
30043         * object.c object.h class.h: Added experimental typed allocation
30044         facility using the interfaces in gc_gcj.h.
30045
30046         * os/gc_wrapper.h: Added new include files.
30047         
30048 2003-04-03  Martin Baulig  <martin@ximian.com>
30049
30050         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
30051         which is not yet enabled by default.
30052
30053         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
30054         functions.
30055         (mono_gc_lock, mono_gc_unlock): New static functions.
30056
30057         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
30058         functions; stop/start the world for the garbage collector.  This
30059         is using the windows API; we need to complete the SuspendThread()/
30060         ResumeThread() implementation in the io-layer to make this work on Unix.
30061         (mono_gc_push_all_stacks): New public function; tells the garbage
30062         collector about the stack pointers from all managed threads.
30063
30064 2003-04-03  Martin Baulig  <martin@ximian.com>
30065
30066         * object.h (MonoThread): Added `gpointer stack_ptr'.
30067
30068         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
30069
30070 2003-04-03  Martin Baulig  <martin@ximian.com>
30071
30072         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
30073
30074 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30075
30076         * reflection.c (typebuilder_setup_fields): Initialize field.first and
30077         field.last.
30078
30079 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
30080
30081         * loader.c (mono_lookup_internal_call): Report the corlib that is
30082         out of sync.
30083
30084 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
30085
30086         * icall.c (ves_icall_type_GetTypeCode): fixed check for
30087         System.DBNull (it's class not valuetype).
30088
30089 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
30090
30091         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
30092         if the array method was already assigned a token (fixes bug#40646).
30093
30094 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
30095
30096         * reflection.c (mono_reflection_get_type): Attempt type resolve even
30097         if no assembly is given.
30098
30099 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
30100
30101         * metadata.h: Added the new tables.
30102
30103         * row-indexes.h: Added definitions for new tables.
30104
30105         * metadata.c: Add schemas for new tables, and add support for
30106         computing the sizes of them.
30107
30108         * class.c: Update for handling the new type cases.
30109
30110 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
30111
30112         * metadata.h (MONO_TYPE_IS_VOID): new macro
30113
30114 2003-03-31  Martin Baulig  <martin@ximian.com>
30115
30116         * threads.h (MonoThreadCallbacks): Added `thread_created'.
30117
30118         * threads.c (mono_thread_new_init): Call `thread_created' in the
30119         mono_thread_callbacks.
30120
30121 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
30122
30123         * loader.h: added marshalbyrefobject_class to mono_defaults
30124         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
30125         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
30126           generation of output parameters.
30127           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
30128         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
30129           contextbound and the target object belongs to the context of the caller.
30130         * object.h: added context and unwrapped_server variables in MonoRealProxy.
30131         * object.c: Implemented support for interfaces and abstract classes
30132           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
30133           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
30134
30135 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
30136
30137         * class.h class.c (mono_class_is_subclass_of): New function.
30138         
30139         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
30140         routines for most common case (calls from ArrayList::ToArray).
30141
30142         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
30143         routine so programs which call Environment::Exit() can be profiled.
30144
30145         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
30146         Added MONO_ARCH_SAVE_REGS.
30147
30148         * icall.c (ves_icall_type_is_subtype_of): Use new function.
30149
30150 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
30151
30152         * blob.h: Add a couple of new MonoType types definitions.
30153
30154         * tabledefs.h: Add a couple of new call convs.
30155
30156 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
30157
30158         * reflection.h (MonoReflectionDynamicAssembly): track changes in
30159         the layout of the class.
30160
30161         * reflection.c (alloc_table): double the size on overflow to avoid
30162         unnecessary copying.
30163
30164         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
30165         avoid filling out metadata tables and blobs. Also set mb->ilgen to
30166         null so it can be garbage collected.
30167         
30168 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
30169
30170         * reflection.c (mono_reflection_get_type): Return the resolved type
30171         only if it is in the assembly we searched.
30172
30173         * reflection.c (ensure_runtime_vtable): Initialize method slots.
30174
30175         * class.c (mono_class_setup_vtable): Set the slot of the overriding
30176         method.
30177
30178 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30179
30180         * appdomain.c:
30181         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
30182         the right one is 'file:///blah', but MS allows it.
30183         * assembly.c:
30184         (mono_assembly_open): allow 'file://blah'
30185
30186         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
30187
30188 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
30189
30190         * socket-io.c: fixes bug #40310.
30191
30192 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
30193
30194         * reflection.c (mono_reflection_parse_type): handle deeply nested
30195         types correctly.
30196
30197         * reflection.c (mono_image_create_token): Use unique token values
30198         since they will be put into a hash table.
30199
30200         * class.c (mono_class_setup_vtable): If a method occurs in more than
30201         one place in the vtable, and it gets overriden, then change the
30202         other occurances too.
30203
30204         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30205         object as return type.
30206
30207 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30208
30209         * icall.c: Deleted "ToString" implementation for double and float
30210         because they are full implemented in managed code.
30211
30212 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30213
30214         * reflection.c, reflection.h: implemented and exported functions
30215         to retrieve info about custom attributes.
30216
30217 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30218
30219         * appdomain.c: moved Uri handling to assembly.c
30220         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
30221         work when using a file Uri in *nix and windows.
30222
30223         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
30224         GetReferencedAssemblies.
30225
30226 2003-03-18  Dick Porter  <dick@ximian.com>
30227
30228         * icall.c: Rename a couple of internal calls
30229
30230         * threads.c: Set the thread state to Stopped when a thread exits.
30231         Fixes bug 39377.
30232
30233 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
30234
30235         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
30236         New icall.
30237
30238         * object.c (mono_class_vtable): fix warning.
30239
30240 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
30241
30242         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
30243
30244         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
30245         memory.
30246         (method_encode_clauses): Create exception info structures in the right
30247         order.
30248         (mono_reflection_setup_internal_class): Initialize supertypes field.
30249
30250         * class.c object.c: Handle interfaces which implement other interfaces 
30251         correctly.
30252
30253         * class.h class.c: Move the supertypes array initialization code into 
30254         a separate function so it can be used for dynamic types too. Also call
30255         it earlier, in mono_class_init(), since it can be used before the
30256         type is initialized.
30257
30258 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30259
30260         * Makefile.am:
30261         * assembly.c:
30262         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
30263
30264         * appdomain.c:
30265         * appdomain.h:
30266         * marshal.c:
30267         * object.c: remove warnings.
30268
30269 2003-03-13  Martin Baulig  <martin@ximian.com>
30270
30271         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
30272         (MonoDebugLexicalBlockEntry): New types.
30273
30274         * debug-mono-symfile.c
30275         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
30276
30277 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30278
30279         * process.c: ret can be any non-zero value accroding to MS doc.
30280
30281 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
30282
30283         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
30284         fixing a warning for a miss-used prototype, would have cause
30285         random memory corruption.
30286
30287 2003-03-07  Martin Baulig  <martin@ximian.com>
30288
30289         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
30290         getting really annoying ....
30291
30292 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
30293
30294         * reflection.c (fixup_method): added support for array methods.
30295
30296 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
30297
30298         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
30299         (pointed out by Michael Adams).
30300
30301 2003-03-04  Dick Porter  <dick@ximian.com>
30302
30303         * icall.c: Temporarily reverted the Double and Single ToString()
30304         change, because it broke nunit.
30305
30306 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
30307
30308         * object.h, threads.h: make include files compatible with C++
30309         (patch by Jerome Laban <jlaban@wanadoo.fr>).
30310
30311 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30312
30313         * icall.c: Erased ToString helper functions for Double and Single.
30314         Now, that implementations ar all in managed code (Double and Single
30315         Formatters).
30316
30317 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
30318
30319         * appdomain.c: Added method for initializing the default context of
30320         a domain. Added internal call for getting the default context.
30321         * appdomain.h: Added context variable in MonoDomain struct.
30322         * domain.c: mono_domain_set also sets the default context of the domain
30323         * icall.c: Mapped internal method InternalGetDefaultContext.
30324         * object.c: mono_object_get_virtual_method returns always a remoting
30325         wrapper if the object is a transparent proxy.
30326         mono_runtime_invoke_array: when creating an object by calling the
30327         constructor, if the created object is a proxy, then the constructor should
30328         be called using the a remoting wrapper.
30329
30330 2003-03-03  Dick Porter  <dick@ximian.com>
30331
30332         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
30333         variable so it compiles on solaris.  Problem spotted by
30334         Christopher Taylor <ct@cs.clemson.edu>
30335
30336 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30337
30338         * appdomain.c:
30339         (get_info_from_assembly_name): don't leak value.
30340
30341         * icall.c:
30342         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
30343         result.
30344
30345 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
30346
30347         * assembly.c: export mono_image_load_references ().
30348         * class.c: handle function pointers. mono_class_from_name() now
30349         supports nested type names directly.
30350
30351 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
30352
30353         * reflection.h reflection.c: Encode already created dynamic methods 
30354         and fields correctly as a DEF instead of a REF.
30355
30356         * reflection.c: Get rid of the force_ref argument to 
30357         mono_image_typedef_or_ref since it was wrong in the first place.
30358
30359         * string-icalls.c: add error checking to string constructors according
30360         to the MSDN docs.
30361
30362         * reflection.c: Emit types in the order their TypeBuilders were 
30363         created. Previously, a new table index was assigned to each type before
30364         the tables were emitted. This was wrong because the signature blob
30365         might already refer to a type by its original table index.
30366
30367 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
30368
30369         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
30370         change.
30371         
30372 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30373
30374         * Makefile.am: make assemblies dir have \ instead of / on windows.
30375
30376 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
30377
30378         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
30379         iterate over the NESTEDCLASS table using a linear search since the
30380         table is not guaranteed to be sorted by the secondary key.
30381
30382         * class.c (mono_class_create_from_typedef): fixed up call to
30383         mono_metadata_nesting_typedef.
30384         
30385 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
30386
30387         * marshal.c (mono_string_to_byvalstr): clear the memory as
30388         suggested by Jerome Laban <jlaban@wanadoo.fr>
30389
30390 2003-02-26  Dick Porter  <dick@ximian.com>
30391
30392         * process.c: Cope with padding in .rsrc blocks
30393
30394 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
30395
30396         * metadata.h: reverted the filter_len change, it breaks reflection
30397         
30398 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
30399
30400         * metadata.h: added a new field to store the filter_len
30401         
30402
30403 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
30404
30405         * reflection.c: handle custom attributes for types and members
30406         created with Reflection.Emit (bug#38422).
30407
30408 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
30409
30410         * reflection.c: define RTSpecialName automatically for constructors for
30411         compatibility with MS.NET.
30412
30413         * reflection.c (mono_reflection_create_runtime_class): initialize
30414         nested_in field of dynamically created classes.
30415
30416 2003-02-22  Martin Baulig  <martin@ximian.com>
30417
30418         * debug-mono-symfile.h: Incremented version number.
30419
30420 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
30421
30422         * object.h icall.c process.c: fix warnings.
30423
30424 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
30425
30426         * appdomain.h appdomain.c:
30427         (mono_domain_try_type_resolve): split the 
30428         name_or_tb argument into a name and a tb argument.
30429         (mono_domain_has_type_resolve): new function to check whenever the
30430         application has registered a TypeResolve event handler.
30431         
30432         * icall.c reflection.h reflection.c: move the type resolve logic into
30433         mono_reflection_get_type () so it will be invoked when 
30434         Assembly::GetType () is called.
30435
30436         * reflection.c:
30437         (mono_reflection_get_type): renamed to get_type_internal.
30438         (mono_reflection_get_type): fixed type name generation so it works 
30439         for nested types too.
30440         (mono_reflection_get_type): call has_type_resolve () to avoid the 
30441         costly type name generation if there is no resolve event handler.
30442
30443 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30444
30445         * class.c, image.c: load exported types from file references.
30446
30447 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
30448
30449         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
30450           used to cache the managed methods used to create proxies and make 
30451           remote invocation of methods.
30452         * class.h: Added in MonoVTable a flag to indicate that a class needs 
30453           to be remotely created.
30454         * object.c: Modified the method mono_class_vtable(). It now initializes 
30455           the remote flag of the vtable. Modified mono_object_new_specific(), 
30456           so now it checks the remote flag.
30457         * icall.c: Added a couple of internal methods, one for enabling instance 
30458           creation interception for a type, and one for creating objects bypassing
30459           the remote check.
30460
30461 2003-02-18  Martin Baulig  <martin@ximian.com>
30462
30463         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
30464         New interncall to get a method's metadata token.
30465
30466         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
30467         New interncall for the debugger.
30468
30469 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
30470
30471         * class.c (mono_class_setup_vtable): allocate supertype array
30472
30473 2003-02-18  Martin Baulig  <martin@ximian.com>
30474
30475         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
30476
30477 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30478
30479         * reflection.c:
30480         (assembly_name_to_aname): jump over unknown properties (i've found
30481         something like: 'type, assembly, version=xxx, custom=null, public...',
30482         so now will ignore custom=null and still get the rest of the values).
30483
30484 2003-02-17  Dick Porter  <dick@ximian.com>
30485
30486         * threads.c: Have Thread.Start() wait for a semaphore to signal
30487         that the thread has set up all its local data.  This fixes bug
30488         34323, where Abort() raced the new thread's TLS data.
30489
30490         Also removes the handle_store() call from start_wrapper, because
30491         threads are now always created suspended and there is no longer a
30492         race between the parent and child threads to store the info.
30493
30494 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
30495
30496         * image.c: explain the #- heap issue in a message, hopefully
30497         avoiding FAQs on mono-list.
30498
30499 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30500
30501         * icall.c:
30502         (GetEntryAssembly): if the domain has not invoked
30503         AppDomain.ExecuteAssembly yet, return the assembly of the default
30504         AppDomain.
30505
30506 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
30507
30508         * class.c (mono_ldtoken): make it work in dynamic assemblies.
30509
30510 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
30511
30512         * metadata.c, reflection.c: simple speedup to type hash
30513         and equals code.
30514
30515 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
30516
30517         * image.c, image.h, class.c, assembly.c: move module loading
30518         to MonoImage. When loading metadata, consider alignemnet from
30519         the start of metadata, not from the metadata address in memory.
30520
30521 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
30522
30523         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
30524         AssemblyBuilder objects. Factored out custom attribute creation into
30525         a separate function.
30526         (create_custom_attr): new function to create custom attributes.
30527
30528 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
30529
30530         * Makefile.am: Got tired of typing the full pathname to pedump.
30531         Until there is another option, am installing this.
30532
30533 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
30534
30535         * class.c (class_compute_field_layout): always set field->parent 
30536         (mono_ldtoken): use mono_defaults.fieldhandle_class;
30537
30538 2003-02-11  Dick Porter  <dick@ximian.com>
30539
30540         * threads-types.h:
30541         * monitor.c: Rewrote Monitor, making lock much faster and
30542         Pulse/Wait work as specified.  Also uses much fewer handles, and only
30543         creates them as needed.
30544
30545         * exception.c: Added SynchronizationLockException
30546
30547         * threads.c: Deleted old Monitor implementation.  The new one is
30548         in a new file.
30549
30550 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
30551
30552         * class.c: handled TypedReference type code. Set the correct size for
30553         class data. Setup interface_offsets for interface classes, too.
30554
30555 2003-02-09  Martin Baulig  <martin@ximian.com>
30556
30557         * debug-mono-symfile.h: Reflect latest symbol writer changes.
30558
30559 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
30560
30561         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
30562         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
30563         * object.c: fixed mono_object_get_virtual_method () for interfaces.
30564         * verify.c: check for code that runs after the end of the method.
30565
30566 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30567
30568         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
30569         "System.Math::Round2".
30570         * sysmath.h: Added Floor, Round and Round2 definitions.
30571         * sysmath.c: Modified certain functions that were not 100% compliant
30572         with MS.NET (math precision) and added the implementation of Floor,
30573         Round and Round2.
30574
30575 2003-02-07  Martin Baulig  <martin@ximian.com>
30576
30577         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
30578
30579 2003-02-07  Martin Baulig  <martin@ximian.com>
30580
30581         * debug-mono-symfile.c: Reflected latest symwriter changes.
30582         (mono_debug_create_mono_symbol_file): Removed.
30583         (mono_debug_open_mono_symbol_file): Take an argument which
30584         specifies whether to create a dynamic symbol file.
30585
30586 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
30587
30588         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
30589
30590 2003-02-05  Martin Baulig  <martin@ximian.com>
30591
30592         * reflection.c (mono_image_build_metadata): Make this public,
30593         protect it against being called multiple times, don't create
30594         resources and don't build the compressed metadata here.
30595         (mono_image_create_pefile): Do this here.
30596
30597         * icall.c
30598         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
30599
30600 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30601
30602         * socket-io.c: fixed bug #36322.
30603
30604 2003-02-06  Piers Haken <piersh@friskit.com>
30605
30606         * appdomain.[ch]:
30607         * class.h:
30608         * debug-mono-symfile.c:
30609         * icall.c:
30610         * loader.c:
30611         * mono-config.c:
30612         * monosn.c:
30613         * reflection.c:
30614         * socket-io.c: warning cleanups
30615
30616 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
30617
30618         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
30619         function. works like remoting invoke, but does a check for the Proxy first.
30620
30621 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
30622
30623         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
30624
30625 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
30626
30627         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
30628         array of pointers.
30629         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
30630         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
30631
30632         * object.c (mono_store_remote_field_new): used by the new jit
30633         instead of mono_store_remote_field
30634         (mono_load_remote_field_new): used by the new jit
30635         instead of mono_load_remote_field
30636
30637 2003-02-05  Patrik Torstensson
30638
30639         * appdomain.c: changed unload to take the domain id instead
30640         of domain
30641         
30642         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
30643
30644
30645 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30646
30647         * appdomain.c: don't look for assemblies in ApplicationBase if
30648         PrivateBinPathProbe is set.
30649
30650 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30651
30652         * object.c: make the first argument in main_args contain the absolute
30653         path to the assembly. Fixes bug #37511.
30654
30655 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30656
30657         * icall.c: get correct UTC offset for countries not using daylight
30658         time saving. Fixes bug #30030.
30659
30660 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30661
30662         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
30663         and 1 are the family).
30664
30665 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
30666
30667         * icall.c (ves_icall_InternalExecute): removed wrong assertion
30668
30669         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
30670
30671 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
30672
30673         * reflection.c: added support for SignatureHelper tokens, which is
30674         needed by the Calli opcode.
30675
30676         * reflection.h: track changes to SignatureHelper class.
30677
30678         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
30679
30680 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30681
30682         * appdomain.c: fixed loading assemblies from PrivateBinPath.
30683
30684 2003-02-03  Patrik Torstensson
30685         * appdomain.[c|h], domain.c : 
30686          - Added support for getting a domain via domain id
30687          - Support for setting and getting domain from System.AppDomain 
30688            (used in cross appdomain channel)
30689          - Added support for get/set for a MonoAppContext on a thread 
30690            (Context class in System.Runtime.Remoting.Contexts),
30691          - Removed hack in Get/SetData and ExecuteAssembly.
30692         
30693         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
30694         the managed world to get control when a proxy is created.
30695
30696         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
30697         
30698 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
30699
30700         * icall.c
30701         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
30702         Populate the codebase field as well.
30703
30704 2003-02-02  Martin Baulig  <martin@ximian.com>
30705
30706         * debug-mono-symfile.c
30707         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
30708         (mono_debug_symfile_add_method): Allow interncalls.
30709
30710 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30711
30712         * icall.c: throw parse exception if strtod fails or the string is empty.
30713
30714 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
30715
30716         * marshal.c: handle object type separately from defined
30717         class types.
30718
30719 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
30720
30721         * marshal.c: handle NATIVE_LPSTR for strings when it's
30722         explicitly specified.
30723
30724 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
30725
30726         * reflection.c, reflection.h, icall.c: setup the reflection
30727         handle cache for ModuleBuilders and AssemblyBuilders.
30728
30729 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
30730
30731         * reflection.c (reflection_methodbuilder_to_mono_method): set
30732         pinvoke flag
30733
30734 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30735
30736         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
30737
30738 2003-01-29  Dick Porter  <dick@ximian.com>
30739
30740         * threads.c: No need for the fake_thread kludge now that Thread
30741         doesn't run a class constructor
30742         
30743 2003-01-29  Dick Porter  <dick@ximian.com>
30744
30745         * threads.c: Use g_direct_hash instead of the rather bogus
30746         g_int_hash
30747
30748 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
30749
30750         * marshal.c (mono_marshal_get_native_wrapper): add check for null
30751         (fix pinvoke12.exe)
30752         (mono_marshal_get_struct_to_ptr): generate valid IL code
30753         (mono_marshal_get_ptr_to_struct): generate valid IL code
30754         (*): correctly set sig->pinvoke, we need to memdup the signature
30755         to do that
30756
30757 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30758
30759         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
30760         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
30761
30762 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
30763
30764         * profiler.c: provide more callers information.
30765
30766 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
30767
30768         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
30769
30770         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
30771
30772         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
30773
30774 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30775
30776         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
30777         exception instead of going into an infinite loop on dates which it 
30778         can't yet handle.
30779
30780         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
30781         out-of-range exception if needed.
30782
30783         * class.c (mono_class_setup_vtable): allow a virtual method to provide
30784         an implementation for an interface method and to override an inherited
30785         method at the same time. 
30786         Imagine a scenario when a virtual method is used to override a
30787         virtual abstract method in a parent class, and this same method 
30788         provides an implementation for an method inherited from an interface. 
30789         In this case, the interface resolution code will set im->slot, which 
30790         means that the virtual method override pass will skip this method 
30791         which means a pointer to the abstract method inherited from the parent
30792         will remain in the vtable of this non-abstract class.
30793
30794         * class.c: (mono_class_setup_vtable): continue search for a real 
30795         method if only an abstract method is found.     
30796
30797 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
30798
30799         * reflection.c: add size to encoding for ByValStr and ByValArray
30800         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
30801
30802 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30803
30804         * class.c (mono_class_setup_vtable): pass the override info as an
30805         argument.
30806
30807         * class.c (mono_class_setup_vtable): set the slot of overriding methods
30808         correctly.
30809         
30810         * reflection.c (ensure_runtime_vtable); add support for method 
30811         overrides.
30812         
30813 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30814
30815         * reflection.c (resolution_scope_from_image): Hack to work to work with
30816         dynamic assemblies.
30817
30818         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
30819         added a 'force_ref' argument to force this function to allways return 
30820         a TypeRef. This is needed by mono_image_get_memberref_token ().
30821         
30822 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30823
30824         * reflection.c (mono_image_get_type_info): interfaces really don't have
30825         a parent.
30826
30827         * reflection.c (mono_image_basic_init): fill out missing fields of
30828         image structure.
30829
30830         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
30831         dynamic assemblies. This is required so dynamic assemblies show up in
30832         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
30833         Type::GetType() etc. This is consistent with MS behaviour.
30834
30835         * image.c image.h reflection.c: add newly created classes to the name 
30836         cache so mono_class_get () will find them.      
30837
30838 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30839
30840         First part of changes to get IKVM.NET running under mono.
30841         
30842         * appdomain.h, appdomain.c: added new function 
30843         mono_domain_try_type_resolve() which will emit TypeResolve events. 
30844         This function will call AppDomain::DoTypeResolve to do the actual work.
30845
30846         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
30847         moved existing code dealing with dynamic tokens to a new function 
30848         called mono_reflection_lookup_dynamic_token (). This function will 
30849         raise TypeResolve events when appropriate. Since reflection.c is not 
30850         part of libmetadata, a new hook function called 
30851         mono_lookup_dynamic_token() is added to class.c which will call this.
30852
30853         * assembly.h assembly.c: make the invoke_load_hook function public,
30854         so it can be called for dynamic assemblies.
30855
30856         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
30857
30858         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
30859         type isn't found.
30860
30861         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
30862         MonoGHashTable, since it contains pointers to objects which the GC 
30863         needs to track.
30864
30865         * assembly.c (search_loaded): remove unused variable.
30866         
30867 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
30868
30869         * object.c: fixed issue exposed by gcc-generated IL programs
30870         that use RVA data for pointers.
30871
30872 2003-01-25  Martin Baulig  <martin@ximian.com>
30873
30874         * threads.c (start_wrapper): Moved the initialization of
30875         `start_func' above the mono_new_thread_init() call to which we
30876         pass it as argument.
30877
30878 2003-01-24  Martin Baulig  <martin@ximian.com>
30879
30880         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
30881         the MonoThread pointer.
30882
30883 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
30884
30885         * icall.c: Rename `PowImpl' to Pow.
30886
30887 2003-01-23  Dick Porter  <dick@ximian.com>
30888
30889         * threads.c (start_wrapper): Create a Thread object if needed, so
30890         the Main() thread can do the class initialisation in a subthread
30891         that has been set up to allow managed code execution.
30892
30893         Pass the thread ID instead of the MonoThread pointer to the thread
30894         start and attach callbacks.  This change is required, because the
30895         jit thread start callback must be called _before_ the Thread
30896         object can be created.
30897         
30898         (mono_thread_init): Removed much object creation code that is no
30899         longer needed.  No managed code is called from here now.
30900
30901         * object.c (mono_runtime_exec_managed_code): Create a subthread
30902         for Main, and call back to the runtime to use it.
30903         Set the exit code when Main exits.
30904
30905         * gc.c: Make sure domain finalisation happens in a subthread.
30906         Re-enable threaded GC, fixing bug 31333 (again).
30907
30908         * environment.c: System.Environment internall calls (so far just
30909         ExitCode is here, the others are still in icall.c)
30910
30911         * appdomain.c (mono_runtime_cleanup): All threads running managed
30912         code should have finished before mono_runtime_cleanup() is
30913         reached, so no need to clean up threads.
30914
30915 2003-01-22  Martin Baulig  <martin@ximian.com>
30916
30917         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
30918         `gpointer func' arguments.      
30919         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
30920         but added `MonoThread *thread' argument.
30921         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
30922
30923         * threads.c (mono_new_thread_init): Added `gpointer func' argument
30924         and pass it to the mono_thread_start_cb callback.
30925         (mono_install_thread_callbacks): New public function to install a
30926         set of callbacks which are set by the debugger.
30927         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
30928
30929 2003-01-22  Martin Baulig  <martin@ximian.com>
30930
30931         * Makefile.am: Install debug-mono-symfile.h.
30932
30933 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
30934
30935         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
30936
30937 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
30938
30939         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
30940         * class.c (mono_ptr_class_get): correctly set access levels of pointers
30941         (mono_array_class_get): correctly set access levels of arrays
30942
30943 2003-01-20      Patrik Torstensson
30944         * image.h (MonoAssemblyName): changed major, minor, build, revision
30945         from signed to unsigned.
30946
30947 2003-01-20  sean kasun <skasun@azstarnet.com>
30948
30949         * reflection.c (load_cattr_value): Now this handles
30950         MONO_TYPE_SZARRAY.  Fixes bug #35629
30951
30952 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
30953
30954         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
30955         integer value
30956
30957 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30958
30959         * decimal.c: fixed bug #26056.
30960
30961 2003-01-17  Martin Baulig  <martin@ximian.com>
30962
30963         * gc.c: Raise an ExecutionEngineException instead of using g_error().
30964
30965 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30966
30967         * exception.[ch]:
30968         (mono_get_exception_type_initialization): new function.
30969
30970         * object.c: throw a TypeInitializationException when an exception is
30971         thrown invoking the class constructor.
30972
30973 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30974
30975         * reflection.c: fixed attribute reading.
30976
30977 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30978
30979         * icall.c:
30980         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
30981         provided, look for the type in the calling assembly and then in
30982         mscorlib; if the assembly name is provided, only try that one.
30983
30984 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
30985
30986         * object.c: register the vtable before there is a chance it's
30987         queried again recursively.
30988
30989 2003-01-13  Duncan Mak  <duncan@ximian.com>
30990
30991         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
30992         gc-internal.h. 
30993         
30994 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
30995
30996         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
30997
30998 2003-01-11  Martin Baulig  <martin@ximian.com>
30999
31000         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
31001         this to 20 for the release.
31002
31003 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
31004
31005         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
31006
31007         * loader.c (mono_method_get_marshal_info): bug fix
31008
31009         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
31010         structures with explicit layout
31011
31012 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31013
31014         * profiler.c: made the output more readable (and sorted). 
31015         Added caller information for the allocation profiler.
31016
31017 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
31018
31019         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
31020
31021 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31022
31023         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
31024         to get value types.
31025         
31026 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
31027
31028         * object.c, profiler.h, profiler.c, profiler-private.h:
31029         Added object allocation profiler.
31030
31031 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
31032
31033         * reflection.h, reflection.c: handle global methods.
31034         Compress blob entries.
31035
31036 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
31037
31038         * marshal.c: fix compilation.
31039
31040 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
31041
31042         * loader.c (mono_method_get_marshal_info): impl.
31043
31044         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
31045
31046 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31047
31048         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
31049         for reference types.
31050
31051 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
31052
31053         * loader.c: fixed off by one error in loaded parameter names.
31054
31055 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
31056
31057         * marshal.c (mono_marshal_get_icall_wrapper): like
31058         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
31059         instead of a MonoMethod.
31060
31061 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31062
31063         * decimal.c: fixed bug #36537.
31064
31065 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
31066
31067         * marshal.c: throw a missing method exception if a
31068         P/Invoke method is not found.
31069
31070 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31071
31072         * icall.c: allow a null this for constructors.
31073
31074 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
31075
31076         * icall.c: raise the proper exceptions if the arguments to the
31077         internal Invoke are incorrect.
31078
31079 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
31080
31081         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
31082
31083 2003-01-03  Martin Baulig  <martin@ximian.com>
31084
31085         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31086
31087 2002-12-31  Martin Baulig  <martin@ximian.com>
31088
31089         * debug-mono-symfile.c: Completely rewrote the type section.
31090         Instead of using individual malloc()ed fields, we use one big
31091         continuous memory area and offsets into this area.
31092         See the comments in the source code for details.
31093
31094 2002-12-30  Martin Baulig  <martin@ximian.com>
31095
31096         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
31097
31098 2002-12-30  Martin Baulig  <martin@ximian.com>
31099
31100         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
31101         line number table in this data blob instead of using an external
31102         pointer.
31103
31104 2002-12-28  Martin Baulig  <martin@ximian.com>
31105
31106         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31107
31108 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
31109
31110         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
31111         as a boxed return type.
31112
31113 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
31114
31115         * appdomain.c
31116         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
31117         g_build_filename to properly get separators on the filename created.
31118
31119         * object.h: Small change, introduce MonoMarshalByRefObject to
31120         track the layout of that structure in the C# universe as we make
31121         changes there.
31122
31123 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
31124
31125         * object.c: removed assert to allow static fields on interfaces.
31126         * loader.c: a TypeSpec may be used for any type, not just arrays.
31127
31128 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
31129
31130         * class.c, class.h: added mono_class_array_element_size ().
31131         Ignore static methods in interfaces.
31132
31133 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31134
31135         * threads.c: fixed the build under cygwin.
31136
31137 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
31138
31139         * reflection.c: handle nullref constants. Allocate keys for
31140         reflection handles with the GC.
31141
31142 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31143
31144         * threads.c, threads.h: added mono_thread_get_abort_signal()
31145         to get a suitable signal for thread abort.
31146
31147 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31148
31149         * metadata.c: fix handling of ExportedType table.
31150
31151 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31152
31153         * icall.c: added WriteWindowsDebugString internal call.
31154
31155 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31156
31157         * reflection.h: added fields to match C# implementation.
31158
31159 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31160
31161         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
31162
31163 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
31164
31165         * gc.h, gc-internal.h: Rename header for GC internal calls to
31166         gc-internal.h from gc.h as to not clash with Boehm GC having its
31167         header installed as <gc.h> in outside include paths.
31168         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
31169         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
31170
31171 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31172
31173         * icall.c: assign minor, build and revision in FillName.
31174
31175 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
31176
31177         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
31178         Added support for running code generated by Reflection.Emit.
31179
31180 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31181
31182         * appdomain.c: check for NULL argument in LoadFrom.
31183
31184 2002-12-10  Dick Porter  <dick@ximian.com>
31185
31186         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
31187
31188 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31189
31190         * appdomain.c: fix buglet when building exe file name.  Handle full
31191         assembly name (needed after latest changes to AssemblyName).
31192         * image.c:
31193         (mono_image_close): free some hashtables.
31194
31195 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
31196
31197         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
31198         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
31199         on some systems (redhat 7.3) 
31200
31201 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
31202
31203         * threads.c: delete the critical section of a sync block,
31204         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
31205
31206 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
31207
31208         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
31209
31210 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31211
31212         * appdomain.[ch]: handle the assembly preload event to try loading the
31213         assemblies using the paths we have in the current domain.
31214
31215         * assembly.[ch]: created an assembly preload hook that is called to try
31216         loading the assembly by other means that the ones provided here.
31217
31218         * domain.c: initialize the domain search path.
31219
31220         From now on, assemblies (TODO: except corlib and System) are loaded
31221         according to these rules when using mono_assembly_load ():
31222
31223                 1. It tries to load the assembly from the ApplicationBase
31224                 of the current domain appending .dll and .exe (TODO: have to
31225                 try loading from name/name.dll and name/name.exe).
31226
31227                 2. It tries the search path specified in PrivateBinPath for the
31228                 current domain (if any).
31229
31230                 3. Previous behavior.
31231
31232 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
31233
31234         * icall.c: implemented GetInterfaceMap() related icall.
31235         * domain.c, loader.h: load MethodInfo in mono_defaults.
31236
31237 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
31238
31239         * gc.c: disable the finalizer thread for now, untill all the issues
31240         with it are resolved.
31241
31242 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
31243
31244         * string-icalls.c: handle embedded nulls in string ctor when the
31245         length is specified.
31246
31247 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
31248
31249         * class.c: look for explicit interface implementation in parent
31250         classes, too.
31251
31252 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
31253
31254         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
31255
31256 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
31257
31258         * gc.c: protect handles with a critical section.
31259
31260 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31261
31262         * icall.c:
31263         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
31264         parameters. If no assembly specified, try getting the type from all
31265         the assemblies in the current domain, else, load the assembly and get
31266         the type from it.
31267
31268 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31269
31270         * marshal.c: applied patch from Aleksey Demakov that fixes
31271         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
31272
31273 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31274
31275         * icall.c: fixed get_location.
31276
31277 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
31278
31279         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
31280         declarations to make it work with older gcc. 
31281
31282         * loader.c (mono_get_method): set signature->pinvoke for native calls
31283
31284 2002-11-20  Dick Porter  <dick@ximian.com>
31285
31286         * threads.c (mono_thread_init): Set the main thread's handle
31287
31288 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
31289
31290         * gc.c: allow compilation without GC support. Changed to match the
31291         mono coding style.
31292
31293 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
31294
31295         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
31296
31297 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
31298
31299         * reflection.c: set a public key token on the core assemblies.
31300
31301 2002-11-18  Dick Porter  <dick@ximian.com>
31302
31303         * threads.c: Split out some thread initialisation so that other
31304         files can set the start callback function.
31305
31306         * gc.c: Run finalisers in a separate thread, to avoid stack
31307         overflow.  Fixes bug 31333.
31308
31309         * appdomain.c: Set up GC finalisation thread.
31310
31311         * reflection.c: 
31312         * object.c: 
31313         * domain.c: Use gc.h macros for GC_malloc
31314         
31315 2002-11-15  Dick Porter  <dick@ximian.com>
31316
31317         * threadpool.c: 
31318         * threads.c:
31319         * appdomain.c: Removed mono_runtime_init_with_attach(),
31320         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
31321         merging the extra parameter with the existing function.  Removed
31322         unneeded code in mono_thread_attach().
31323
31324 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
31325
31326         * image.c (mono_image_loaded_by_guid): a method to get loaded
31327         images by guid. 
31328         (load_metadata_ptrs): we store the guid as string.
31329
31330 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
31331
31332         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
31333
31334         * metadata.c (mono_guid_to_string): imported method form Zoltan
31335         Varga (slightly modified)
31336
31337         * assembly.c (mono_assembly_open): load precompiled code
31338
31339         * loader.h (MonoMethod): we store the method token for use in the
31340         aot compiler. 
31341
31342 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31343
31344         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
31345         the hook function called when an assembly is loaded.
31346         
31347         * domain.c: Modified file.
31348         (mono_domain_assembly_load): removed hash table insertion of assemblies.
31349
31350         Fixes bug #33196.
31351
31352 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
31353
31354         * reflection.c: Map PEFileKind to the value expected by the WinNT
31355         image loader. 
31356
31357 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31358
31359         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
31360         Read until the buffer is filled completely.
31361
31362 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31363
31364         * icall.c: implemented MonoType.InternalGetEvent ().
31365
31366 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31367
31368         * appdomain.c: implemented InitAppDomainSetup. Delayed
31369         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
31370         the entry_assembly.
31371
31372         * assembly.c: base_dir is now an absolute path ending with
31373         G_DIR_SEPARATOR.
31374
31375         * icall.c: modified get_location according to the above changes.
31376
31377         * object.c: init AppDomain.SetupInformation for the default domain after
31378         we have the entry assembly.
31379
31380         * domain.c: when unloading a domain, setup = NULL.
31381
31382 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
31383
31384         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
31385
31386 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
31387
31388         * object.h, object.c: introduced mono_object_get_virtual_method ()
31389         to lookup the method invoked on an object when a callvirt is done on
31390         a method.
31391         * icall.c: make MethodInfo::Invoke() always do a virtual call.
31392
31393 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31394
31395         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
31396         current domain when loaded an assembly and failed to load it.
31397
31398         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
31399
31400 2002-10-31  Dick Porter  <dick@ximian.com>
31401
31402         * icall.c: 
31403         * file-io.h: 
31404         * file-io.c: Return the error status in a parameter, as the
31405         GetLastError() value has long since been blown away if we try and
31406         look it up in a subsequent internal call invocation.  Delete the
31407         GetLastError() internal call, because it's useless.
31408
31409 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
31410
31411         * class.[ch]: added cast_class to fix bug 29517
31412
31413 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
31414
31415         * marshal.c: create valid IL code in the filter clause:
31416         the new JIT is less forgiving:-)
31417
31418 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31419
31420         * icall.c: removed get_property internal call.
31421
31422 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
31423
31424         * appdomain.h domain.c: Added an ID to appdomains.
31425         
31426         * threads.c threads.h icall.c: Implement icall
31427         Thread:GetDomainID(), and remove unused icall 
31428         CurrentThreadDomain_internal.
31429
31430 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31431
31432         * icall.c: Don't recurse through the base types in GetConstructor.
31433         Fixes bug #32063. 
31434
31435 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
31436
31437         * mempool.h, mempool.c: added mono_mempool_empty() and
31438         mono_mempool_stats().
31439
31440 2002-10-23  Dick Porter  <dick@ximian.com>
31441
31442         * file-io.c: 
31443         * file-io.h: 
31444         * icall.c: Added MonoIO.GetFileType internal call
31445
31446 2002-10-17  Dick Porter  <dick@ximian.com>
31447
31448         * appdomain.c (mono_runtime_cleanup): Don't signal the async
31449         delegate semaphore before waiting for all threads to finish,
31450         because new threads can also call async delegates.  Fixes bug
31451         32004.
31452
31453         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
31454         of 3 seconds, in case another async job is queued.  (This part is
31455         needed because the bug fix reintroduced the 3s exit lag.)  This
31456         makes the mono_runtime_shutdown flag superfluous.
31457
31458 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
31459
31460         * reflection.c: include ehader size in method section headers.
31461         Really check for suplicated modules entries.
31462
31463 2002-10-17  Martin Baulig  <martin@gnome.org>
31464
31465         * debug-mono-symfile.c: Added back support for locals.
31466
31467 2002-10-14  Martin Baulig  <martin@gnome.org>
31468
31469         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
31470         MONO_TYPE_VOID.
31471
31472 2002-10-14  Martin Baulig  <martin@gnome.org>
31473
31474         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
31475         mono_class_get() instead of looking in the class cache. 
31476
31477 2002-10-13  Martin Baulig  <martin@gnome.org>
31478
31479         * debug-mono-symfile.c: Set version number to 28, include the
31480         signature in method names.
31481
31482 2002-10-13  Martin Baulig  <martin@gnome.org>
31483
31484         * debug-mono-symfile.h: Set version number to 27.
31485
31486 2002-10-11  Martin Baulig  <martin@gnome.org>
31487
31488         * gc.c: Don't register/unregister NULL pointers as disappearing links.
31489
31490 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31491
31492         * metadata.c, metadata.h: added helper function to allocate signatures.
31493
31494 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31495
31496         * icall.c: added internal call to get the location of machine.config.
31497
31498 2002-10-08  Martin Baulig  <martin@gnome.org>
31499
31500         * debug-mono-symfile.c: Ignore classes with a pending init for the
31501         moment.
31502
31503 2002-10-03  Dick Porter  <dick@ximian.com>
31504
31505         * threads.c: Freebsd pthread_t is a pointer
31506
31507 2002-10-03  Dick Porter  <dick@ximian.com>
31508
31509         * socket-io.c: Implemented GetHostName_internal
31510
31511 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31512
31513         * mono-config.c:
31514         (mono_config_parse_file): don't leak the text.
31515
31516 2002-10-02  Martin Baulig  <martin@gnome.org>
31517
31518         * debug-mono-symfile.c: Added support for methods.
31519
31520 2002-10-01  Martin Baulig  <martin@gnome.org>
31521
31522         * debug-mono-symfile.c: Don't emit methods and line numbers for
31523         the dynamic symbol file, just write the type table.  We can easily
31524         have an external helper program which creates a symbol file for an
31525         IL file.        
31526
31527 2002-10-01  Dick Porter  <dick@ximian.com>
31528
31529         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
31530         Only add the handle to the cleanup array when we're about to
31531         launch the thread.  Bug 31425 deadlocked when the test was run on
31532         mono under w32.
31533
31534 2002-10-01  Martin Baulig  <martin@gnome.org>
31535
31536         * debug-mono-symfile.c: Added support for properties.
31537
31538 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
31539
31540         * reflection.c: unaligned store fix from Mark Crichton
31541         <crichton@gimp.org>.
31542
31543 2002-09-27  Martin Baulig  <martin@gnome.org>
31544
31545         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
31546         New interncall.
31547
31548 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
31549
31550         * assembly.h, assembly.c: use a sane API to hook into the assembly
31551         loading process instead of a useless special-purpouse hack
31552         (ngen needs a hook, too, for example).
31553
31554 2002-09-27  Dick Porter  <dick@ximian.com>
31555
31556         * threads.c (mono_thread_init): Call GetCurrentProcess() so
31557         io-layer can set up some process handle info.  Not needed on w32,
31558         but doesn't hurt either.
31559
31560         * process.c: Pass the program name in the second parameter to
31561         CreateProcess, so the path is searched.  Include the working
31562         directory. Implemented process name, process enumeration, and some
31563         process detail internal calls.
31564         
31565         * icall.c: Added internal calls for process lookup, and some
31566         process details
31567
31568 2002-09-26  Martin Baulig  <martin@gnome.org>
31569
31570         * assembly.c (mono_install_open_assembly_hook): New global
31571         function to install a function to be invoked each time a new
31572         assembly is loaded.
31573         (mono_assembly_open): Run this callback function if set.
31574
31575         * debug-mono-symfile.c: Put back line numbers for the dynamic
31576         symbol file and also record the .il file as source file.  This
31577         allows us to install the temporary symbol file as `file.dbg' just
31578         like a compiler-generated one.
31579
31580 2002-09-26  Nick Zigarovich <nick@chemlab.org>
31581
31582         * Corrected typo in gc.c (BOHEM vs BOEHM).
31583
31584 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31585
31586         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
31587         GetProperties. Also avoid calling g_slist_length in GetProperties and
31588         GetMethods.
31589
31590 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
31591
31592         * reflection.c: avoid unaligned stores (bug spotted by
31593         Mark Crichton  <crichton@gimp.org>).
31594
31595 2002-09-25  Martin Baulig  <martin@gnome.org>
31596
31597         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
31598         instead of guint64 for addresses and added prologue/epilogue info.
31599
31600 2002-09-25  Martin Baulig  <martin@gnome.org>
31601
31602         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
31603         store line number info.  For the dynamic symbol file, we only need
31604         to provide the JIT generated dynamic line number info for the dynamic
31605         symbol file.
31606
31607 2002-09-25  Martin Baulig  <martin@gnome.org>
31608
31609         * debug-mono-symfile.h: Incremented version number.
31610
31611 2002-09-24  Martin Baulig  <martin@gnome.org>
31612
31613         * class.c (mono_debugger_class_init_func): New global function
31614         pointer variable.
31615         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
31616         call it.
31617
31618         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
31619         function.  This is called via the mono_debugger_class_init_func
31620         hook to add all types to the dynamic type table.
31621         (ves_icall_MonoDebugger_GetType): New interncall to get a class
31622         from its metadata token.
31623
31624         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
31625         New interncall for the debugger.
31626
31627 2002-09-24  Nick Drochak <ndrochak@gol.com>
31628
31629         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
31630         before using it in case it is null.
31631         
31632 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31633
31634         * metadata.c: allow custom modifiers in local var signatures
31635         (bug spotted by Zoltan Varga).
31636
31637 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
31638
31639         * class.c: deal with the <Module> class that may have a NULL vtable.
31640         Eliminate warnings.
31641
31642 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31643
31644         * image.c, image.h: more strong name helpers.
31645         * monosn.c: more work: convert pem keys to cryptoapi format.
31646
31647 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
31648
31649         * string-icalls.c: speedup IndexOf.
31650
31651 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31652
31653         * icall.c: updates from Zoltan.2.Varga@nokia.com.
31654
31655 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
31656
31657         * icall.c: cleanup: use mono_object_domain ().
31658
31659 2002-09-23  Martin Baulig  <martin@gnome.org>
31660
31661         * debug-mono-symfile.c: Improved type support.
31662
31663 2002-09-22  Martin Baulig  <martin@gnome.org>
31664
31665         * debug-mono-symfile.c: Added support for reference types and strings.
31666
31667 2002-09-22  Martin Baulig  <martin@gnome.org>
31668
31669         * debug-mono-symfile.c: Started to work on the type table.
31670
31671 2002-09-21  Martin Baulig  <martin@gnome.org>
31672
31673         * debug-mono-symfile.c: Largely reworked the symbol table format.
31674         The symbol table is now incrementally updated each time a new
31675         method is added.  We're now also using our own magic and version
31676         so that you don't need to recompile all your classes if the
31677         dynamic table changes.
31678         (mono_debug_update_mono_symbol_file): Removed.
31679         (mono_debug_symfile_add_method): New function to add a method.
31680
31681 2002-09-21  Martin Baulig  <martin@gnome.org>
31682
31683         * icall.c
31684         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
31685         New interncall.
31686
31687         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
31688         New interncall to get a method from its metadata token.
31689
31690 2002-09-21  Martin Baulig  <martin@gnome.org>
31691
31692         * debug-mono-symfile.c: Create type table.
31693
31694 2002-09-20  Martin Baulig  <martin@gnome.org>
31695
31696         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
31697
31698 2002-09-20  Martin Baulig  <martin@gnome.org>
31699
31700         * debug-mono-symfile.c: Provide information about params and locals.
31701
31702 2002-09-20  Martin Baulig  <martin@gnome.org>
31703
31704         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
31705         New interncall.
31706
31707         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
31708         interncall to get a method from its metadata token.
31709
31710 2002-09-20  Martin Baulig  <martin@gnome.org>
31711
31712         * debug-mono-symfile.c: Added a few checks for method->header
31713         being non-NULL.  This should never happen, but for the moment
31714         let's use a g_warning() rather than a g_assert().
31715
31716 2002-09-19  Mark Crichton  <crichton@gimp.org>
31717
31718         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
31719         even if support for it isn't present.  Added an #ifdef to fix this.
31720
31721         * socket-io.c: Added checks back for Solaris support.
31722
31723 2002-09-19  Martin Baulig  <martin@gnome.org>
31724
31725         * debug-mono-symfile.c (read_string, write_string): Reflect latest
31726         changes in the symbol file format.
31727
31728 2002-09-18  Martin Baulig  <martin@gnome.org>
31729
31730         * debug-mono-symfile.c: Set version number to 21.
31731
31732 2002-09-18  Dick Porter  <dick@ximian.com>
31733
31734         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
31735         on netbsd.  Fixes bug 30051.
31736
31737 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31738
31739         * reflection.c:
31740         (set_version_from_string): little fix.
31741
31742 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31743
31744         * monosn.c, Makefile.am: added strong name utility.
31745         * reflection.h, reflection.c: implemented delayed signing,
31746         locale, version and hash id assembly attributes.
31747
31748 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
31749
31750         * loader.c, metadata.c: load param attributes in signatures.
31751
31752 2002-09-16  Martin Baulig  <martin@gnome.org>
31753
31754         * debug-mono-symfile.c: Added string table with all method names.
31755
31756 2002-09-14  Martin Baulig  <martin@gnome.org>
31757
31758         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
31759         fast method lookup.
31760
31761 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31762
31763         * reflection.c: record the public key token of referenced assemblies.
31764
31765 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31766
31767         * image.c, image.h: added functions to get the strong name and the
31768         public key of an assembly.
31769         * pedump.c: use them.
31770
31771 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
31772
31773         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
31774
31775 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
31776
31777         * marshal.c (mono_marshal_get_managed_wrapper): Added
31778         MONO_TYPE_BOOLEAN 
31779
31780 2002-09-11  Martin Baulig  <martin@gnome.org>
31781
31782         * gc.c: Call GC_unregister_disappearing_link() on all links when
31783         finalizing them, this is necessary to aviod a crash in boehm's
31784         finalize handler.
31785
31786 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31787
31788         * gc.c: handle GetTarget for finalized objects spotted and fixed by
31789         nick@chemlab.org.
31790
31791 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
31792
31793         * icall.c: implemented MonoType::Module.
31794         * reflection.c, reflection.h: mono_module_get_object () from
31795         Tomi Pakarinen <tomi.pakarinen@welho.com>.
31796
31797 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
31798
31799         * icall.c: ignore overridden methods in GetMethods ().
31800         Fix for FieldInfo::SetValue().
31801         * object.c: handle float/double in runtime invoke.
31802
31803 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
31804
31805         * object.c: allow a constructor to be called again on an object.
31806
31807 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31808
31809         * class.h, class.c: move field layout code to it's own function and
31810         export it. Get an interface id earlier. Move fields in MonoClass
31811         so they are more cache friendly and align the bitfields.
31812         * loader.c: temporary handle get_param_names() for a runtime method.
31813         * reflection.c, reflection.h: more code to handle runtime creation of
31814         types.
31815
31816 2002-09-09  Martin Baulig  <martin@gnome.org>
31817
31818         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
31819         signature with the pinvoke field being set for the actual call.
31820
31821 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
31822
31823         * icall.c: removed some unused icalls. Start of map of glib charsets
31824         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
31825
31826 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
31827
31828         * debug-helpers.c: break infinite loop (found and fixed by
31829         Holger Arnold <harnold@gmx.de>).
31830
31831 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31832
31833         * icall.c: target may be null in create_delegate.
31834
31835 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31836
31837         * marshal.c: handle a boolean return type.
31838
31839 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31840
31841         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
31842
31843 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
31844
31845         * gc.c: fix weakreferences.
31846
31847 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
31848
31849         * icall.c: added icall to get default codepage.
31850
31851 2002-09-03  Dick Porter  <dick@ximian.com>
31852
31853         * threads.h: 
31854         * threads.c: Use MonoThread instead of MonoObject where
31855         apropriate.
31856
31857         Store running thread objects in a hash table, so that we have all
31858         the info to hand when waiting for them to finish
31859         (means we don't need OpenThread() any more, so mingw builds should
31860         be fully functional again.)
31861
31862         * verify.c:
31863         * object.h: Added thread ID to MonoThread
31864
31865 2002-09-03  Martin Baulig  <martin@gnome.org>
31866
31867         * icall.c (System.Reflection.Assembly::get_location): New interncall.
31868
31869 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31870
31871         * icall.c: fixed leak in get_temp_path. Thanks lupus.
31872
31873 2002-09-03  Martin Baulig  <martin@gnome.org>
31874
31875         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
31876         argument to store the end address of the disassembled instruction.
31877
31878         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
31879         here from debug-symfile.h.
31880         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
31881         JIT into this struct.
31882         (MonoSymbolFile): Added `char *image_file' field.
31883         (MonoDebugGetMethodFunc): Removed.
31884         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
31885         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
31886         (mono_debug_find_method): New method.
31887
31888         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
31889         create a full symbol file.
31890         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
31891         and static symbol files.
31892         (mono_debug_find_method): The symbol file keeps an internal method hash,
31893         call this to get a MonoDebugMethodInfo from a MonoMethod.
31894
31895         * debug-symfile.[ch]: Removed.
31896
31897 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
31898
31899         * image.c (do_mono_image_open): Remove linker version check.
31900
31901 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
31902
31903         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
31904         wrappers for instance methods.
31905         
31906 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31907
31908         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
31909
31910 2002-08-28  Dick Porter  <dick@ximian.com>
31911
31912         * Makefile.am: Export HOST_CC for w32 builds
31913
31914 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31915
31916         * file-io.c process.c: MonoString are null terminated, no
31917         need for mono_string_to_utf16() anymore.
31918
31919 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
31920
31921         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
31922
31923 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
31924
31925         * icall.c, reflection.h: speedup System.MonoType.
31926
31927 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
31928
31929         * reflection.c: allow null as the value of a string argument in
31930         custom attributes constructors.
31931
31932 2002-08-27  Martin Baulig  <martin@gnome.org>
31933
31934         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
31935         `trampoline_address' field.
31936
31937 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
31938
31939         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
31940         check (fixes bug #29486) 
31941
31942 2002-08-27  Martin Baulig  <martin@gnome.org>
31943
31944         * debug-mono-symfile.c: Changed the file format in a way that allows us
31945         open it read-only and to use a specially malloced area for all the
31946         dynamic data.  We can now also generate a symbol file on-the-fly if we're
31947         debugging IL code and there is no MCS generated symbol file for it.
31948
31949 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
31950
31951         * object.c: added a define for a good string and array
31952         creation speedup (not enabled by default because we need to deal with
31953         the synch stuff).
31954
31955 2002-08-26  Martin Baulig  <martin@gnome.org>
31956
31957         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
31958         function to create a dynamic symbol file.  This is used by the
31959         debugger to create a symbol file for IL code on-the-fly.
31960
31961 2002-08-26  Martin Baulig  <martin@gnome.org>
31962
31963         * loader.c (mono_lookup_pinvoke_call): Include the error message
31964         from g_module_error() in the error message.
31965
31966 2002-08-24  Martin Baulig  <martin@gnome.org>
31967
31968         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
31969         function to update the symbol file.  The symbol file is mmap()ed
31970         writable, but private.  This allows us to install the symbol file
31971         together with the assembly.
31972
31973 2002-08-24  Martin Baulig  <martin@gnome.org>
31974
31975         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
31976         but they can read the new symbol file format which mcs is now creating.
31977
31978         * debug-symfile.c (mono_debug_find_source_location): Moved to
31979         debug-mono-symfile.c; this is now operating on the new symbol file.
31980
31981 2002-08-23  Martin Baulig  <martin@gnome.org>
31982
31983         * debug-helpers.c (mono_method_desc_from_method): New function to get
31984         a MonoMethodDesc from a MonoMethod.
31985
31986 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
31987
31988         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
31989         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
31990
31991 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
31992
31993         * string-icalls.[ch]: make helper methods static.
31994
31995 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31996
31997         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
31998         types to it and to SetValueInternal.
31999
32000         * object.c: Moved handle_enum label to its proper place. This was the
32001         f... bug! ;-)
32002
32003         This time i compiled mcs and gtk-sharp and they both work.
32004
32005 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32006
32007         * icall.c: reverted partially my previous patch until 
32008         object.c:set_value handles enums correcly.
32009
32010 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32011
32012         * icall.c:
32013         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
32014         (ves_icall_System_Environment_get_MachineName): removed warning when
32015         compiling under cygwin.
32016
32017 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32018
32019         * object.c: fixed field_get_value() for reference types.
32020
32021 2002-08-22  Dick Porter  <dick@ximian.com>
32022
32023         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
32024         Don't free a buffer while it's still needed.  Patch from Jonathan
32025         Liger <Jonathan.liger@wanadoo.fr>
32026
32027 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
32028
32029         * icall.c (ves_icall_System_Environment_get_Platform): Add new
32030         internal call.
32031
32032 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
32033
32034         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
32035         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
32036
32037         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
32038         we call unmanaged code which throws exceptions.
32039
32040 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32041
32042         * appdomain.h: added per-domain entry_assembly.
32043         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
32044         arguments.
32045         * icall.c: Assembly::GetEntryAssembly icall.
32046         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
32047         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
32048
32049 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32050
32051         * appdomain.h, gc.c: added mono_domain_finalize ().
32052
32053 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32054
32055         * object.c:
32056         (mono_print_unhandled_exception): changed g_warning by g_printerr
32057         because g_log has a 1024 characters limit (yeah, i got a big stack
32058         trace). Don't print exception name, that should be in ToString 
32059         returned string.
32060
32061 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32062
32063         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
32064         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
32065
32066 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32067
32068         * object.c:
32069         (mono_print_unhandled_exception): after previous commit, i realized
32070         that MS calls ToString on the exception. I changed this function to
32071         do that. This way we get stack_trace for free.
32072
32073 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32074
32075         * object.c:
32076         (mono_print_unhandled_exception): invoke Message property instead of
32077         getting 'message' field from Exception. Don't allocate memory for
32078         'trace' and 'message' if not needed.
32079
32080 2002-08-18  Dick Porter  <dick@ximian.com>
32081
32082         * unicode.c: Fix asserts to match Encoder.cs checks
32083
32084 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32085
32086         * marshal.c: fix unaligned store issue and a few wrong
32087         opcode argument types.
32088
32089 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32090
32091         * icall.c: added GetUninitializedObjectInternal internal call.
32092
32093 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
32094
32095         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
32096         to the right domain.
32097
32098 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
32099
32100         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
32101
32102         * class.c (class_compute_field_layout): set blittable to false for Strings
32103
32104         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
32105
32106 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32107
32108         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
32109         first chunk of code to create types at runtime. Code to
32110         handle ReflectedType/DeclaringType. Make reflection handles
32111         domain specific.
32112
32113 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
32114
32115         * class.c: set correct name in arrays.
32116
32117 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
32118
32119         * appdomain.c (mono_domain_transfer_object): make it work with
32120         valuetypes. bug fixes.
32121
32122 2002-08-12  Dick Porter  <dick@ximian.com>
32123
32124         * object.h: Rename some parameters to avoid c++ keywords (Patch
32125         from Joseph Wenninger <kde@jowenn.at>)
32126
32127 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
32128
32129         * icall.c: added icall to implement Assembly.GetFile*.
32130
32131 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32132
32133         * reflection.h, reflection.c: code to embed managed resources.
32134
32135 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32136
32137         * class.c: move all the type size stuff into
32138         class_compute_field_layout().
32139
32140 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32141
32142         * class.c: ensure enums have always the correct instance size.
32143         * unicode.c: remove wrong assert.
32144
32145 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32146
32147         * assembly.c: fix mem corruption issue.
32148         * image.h, image.c: added mono_image_get_resource () to access
32149         managed resources.
32150         * icall.c: implemented Assembly.EntryPoint property and some
32151         Managed Resources related internalcalls.
32152
32153
32154 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32155
32156         * image.c, image.h: impemented mono_image_get_entry_point ().
32157         * appdomain.c: use mono_image_get_entry_point.
32158
32159 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32160
32161         * reflection.c: support the object type argument when loading
32162         custom attributes.
32163
32164 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
32165
32166         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
32167         String as return type.
32168
32169 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
32170
32171         * reflection.c: fix encoding of named args for custom attrs to match
32172         the ms implementation. Read them back when instantiating custom
32173         attributes.
32174
32175 2002-08-02  Radek Doulik  <rodo@ximian.com>
32176
32177         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
32178         by Dietmar as quick fix
32179         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
32180         16 as stack size, used on more places as quick fix before Dietmar
32181         will fix it properly
32182
32183 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32184
32185         * object.h, object.c: added accessors for fields and properties.
32186
32187 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32188
32189         * class.c, class.h: made mono_class_get_field_from_name ()
32190         loop on parent types.
32191         Added mono_class_get_property_from_name ().
32192
32193 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32194
32195         * class.c, class.h: move the code to setup the type vtable in its own
32196         function so that it can be reused also for types created at runtime.
32197         Eliminate the "class" identifier from the header file.
32198         * reflection.c: setup the vtable for enums so that we can create
32199         objects for use in SetConstant ().
32200
32201 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
32202
32203         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
32204         instead of the delegate itself as this pointer (bug #28383)
32205
32206 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
32207
32208         * marshal.c (mono_marshal_get_managed_wrapper): added return type
32209         conversions.
32210
32211 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32212
32213         * loader.c: don't set the pinvoke bit on icalls.
32214
32215 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
32216
32217         * debug-helpers.c (mono_method_full_name): only print a number to
32218         indicate wrapper type (so that the output is more readable in traces).
32219
32220 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
32221
32222         * class.c (mono_class_init): include method override patch from Paolo
32223
32224 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
32225
32226         * icall.c: fixed GetTypeCode().
32227
32228 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
32229
32230         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
32231         use real delegate invoke function to make it work with multicast
32232         delegates (fix bug# 28291).
32233
32234 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32235
32236         * object.c: load constant strings.
32237
32238 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32239
32240         * reflection.c: no magic numbers.
32241         * tabledefs.h: security action enum.
32242
32243 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32244
32245         * assembly.c: fix possible memory corruption.
32246
32247 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32248
32249         * reflection.h, reflection.c: added support for linking resources.
32250         * verify.c: check we have an updated corlib.
32251
32252 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
32253
32254         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
32255         string arrays.
32256         (mono_marshal_string_array): null terminate unmanaged string arrays.
32257         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
32258
32259 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32260
32261         * icall.c: Type.GetType () can now return also types from the
32262         calling assembly.
32263
32264 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
32265
32266         * loader.h, loader.c: stack walking support.
32267         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
32268         GetCallingAssembly.
32269
32270 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
32271
32272         * marshal.c: added optimisations for blittable types 
32273
32274         * class.c (mono_array_class_get): do not set blittable attribute on arrays
32275         (mono_class_setup_mono_type): set blittable attribute for single
32276         and double.
32277
32278         * marshal.c (mono_string_utf8_to_builder): impl.
32279         (mono_string_builder_to_utf8): impl.
32280         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
32281
32282 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
32283
32284         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
32285         (mono_marshal_get_managed_wrapper): impl. byref types
32286
32287 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32288
32289         * icall.c:
32290         (search_method): don't display debug message. 
32291
32292 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
32293
32294         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
32295
32296 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
32297
32298         * appdomain.c: set the missing filename when throwing exception.
32299
32300 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
32301
32302         * metadata.c (mono_type_size): code cleanup
32303         (mono_type_stack_size): removed some test code
32304
32305 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
32306
32307         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
32308         mono_get_exception_file_not_found now.
32309
32310         * exception.c (mono_exception_from_name_two_strings): New version
32311         that will call a constructor with two string arguments. 
32312         (mono_get_exception_file_not_found): New helper routine, used to
32313         report file-not-found errors.
32314
32315 2002-07-20  Dick Porter  <dick@ximian.com>
32316
32317         * process.h:
32318         * process.c: Pass file handles to CreateProcess
32319         
32320         * icall.c:
32321         * file-io.h:
32322         * file-io.c: Implemented CreatePipe
32323
32324 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
32325
32326         * metadata.c (mono_get_param_info): set alignment for value types
32327
32328 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32329
32330         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
32331         Constify mono_domain_assembly_open().
32332         * loader.c: handle null namespace in icalls.
32333
32334 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
32335
32336         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
32337         (emit_str_to_ptr_conv): marshal object as structs
32338
32339         * metadata.c (mono_type_to_unmanaged): marshal object as structs
32340
32341         * marshal.c (mono_marshal_get_runtime_invoke): support value types
32342
32343 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
32344
32345         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
32346         (mono_marshal_get_native_wrapper): we an now return value types
32347
32348 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32349
32350         * verify.c: more checks implemented.
32351
32352 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
32353
32354         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
32355         (fix bug #27695)
32356         (mono_marshal_get_native_wrapper): allow byref arguments
32357         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
32358         impl. PtrToStringXXX methods
32359         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
32360         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
32361         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
32362         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
32363         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
32364
32365 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32366
32367         * reflection.c: fix buglet in parsing an assembly name.
32368
32369 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
32370
32371         * marshal.c (emit_ptr_to_str_conv): first impl.
32372
32373 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32374
32375         * object.c, class.h: cache the vtable in the class as suggested by
32376         vargaz@freemail.hu (Zoltan Varga).
32377
32378 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32379
32380         * class.h, loader.c: added mono_field_from_token().
32381         * verify.c: first cut of type checking code.
32382
32383 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
32384
32385         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
32386
32387 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
32388
32389         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
32390         (fix bug #27782)
32391         (mono_marshal_get_remoting_invoke): impl.
32392         (mono_delegate_begin_invoke): impl.
32393         (mono_mb_emit_save_args): impl.
32394         (mono_delegate_end_invoke): impl.
32395         (mono_marshal_get_delegate_begin_invoke):
32396         (mono_marshal_get_delegate_end_invoke):
32397         (mono_marshal_get_delegate_invoke): generate a special name for
32398         those methods (including the signature) and associate them whith
32399         the delegate class. 
32400
32401 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
32402
32403         * reflection.[ch]: 
32404         (mono_reflection_type_from_name): now it has a MonoImage parameter
32405         which is used as the default image to search the type in. If the image
32406         is NULL or getting the type from it fails, it defaults to corlib.
32407
32408         * icall.c: changed 1 call to mono_reflection_type_from_name to match
32409         new parameter.
32410
32411 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32412
32413         * reflection.c: update the parameter table index.
32414
32415 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32416
32417         * domain.c: don't include the mark byte in the string hash.
32418
32419 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32420
32421         * icall.cs: icall for Type.GetTypeCode ().
32422         * verify: a couple of fixes and disabled local initialization checks.
32423
32424 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
32425
32426         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
32427
32428         * debug-helpers.c (mono_method_full_name): print the type of the
32429         runtime wrapper
32430
32431         * metadata.c (mono_signature_hash): a hash function for signatures
32432         (mono_signature_hash): better hash algorithm
32433
32434         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
32435
32436         * debug-helpers.c (mono_method_full_name): this can now generate
32437         method names with signatures
32438
32439         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
32440         method dont have this pointers.
32441
32442 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
32443
32444         * reflection.c: fixup typebuilder tokens.
32445         * image.c: fix buglet.
32446         * marshal.h: remove whitespace.
32447         * metadata.h, metadata.c: reinstate code that was removed.
32448         * verify.c: handle catch directives and fix another couple of bugs.
32449
32450 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
32451
32452         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
32453         (mono_marshal_get_native_wrapper): make it comp. with the old code
32454         (mono_marshal_get_native_wrapper): support boolean
32455         (mono_marshal_get_managed_wrapper): support more types
32456
32457 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
32458
32459         * class.c (class_compute_field_layout): compute class->blittable attribute.
32460
32461 2002-07-09  Dick Porter  <dick@ximian.com>
32462
32463         * threads.c: Make the thread cleaning up cope with threads that
32464         call ExitThread()
32465
32466 2002-07-08  Radek Doulik  <rodo@ximian.com>
32467
32468         * reflection.c (method_encode_code): use non-translated values to
32469         compute finally_start, this fixes exception handling on ppc, yay!
32470
32471         * decimal.h (struct signscale): fix endianess
32472
32473 2002-07-07  Radek Doulik  <rodo@ximian.com>
32474
32475         * reflection.c: swap box_val and not val
32476
32477 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
32478
32479         * reflection.c, reflection.h: handle full assembly info in type name.
32480         Handle Type arguments when loading custom attributes.
32481         * icall.c: updated to use new mono_reflection_type_from_name () method.
32482
32483 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32484
32485         * loader.c:
32486         (method_from_memberref): also print assembly name when method not found.
32487
32488 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32489
32490         * icall.c:
32491         (ves_icall_TypeGetProperties): fixed bug #27473. 
32492
32493 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32494
32495         * reflection.c: display image name and token when cannot find the
32496         .ctor for an attribute.
32497
32498 2002-07-05  Martin Baulig  <martin@gnome.org>
32499
32500         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
32501
32502 2002-07-04  Dick Porter  <dick@ximian.com>
32503
32504         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
32505         compile on mingw.  This will cause mingw builds to not wait for
32506         subthreads to terminate after the main thread does.  I've lodged a
32507         bug with the mingw developers for them to wrap OpenThread().
32508
32509 2002-07-03  Dick Porter  <dick@ximian.com>
32510
32511         * threads.c: Store thread IDs instead of handles, because
32512         GetCurrentThread() returns a pseudohandle and therefore stores
32513         useless values.  mono_thread_cleanup() continues checking the
32514         array of threads until it is empty, to cope with subthreads
32515         spawning new threads after the main thread has finished.
32516
32517         * profiler.h:
32518         * profiler.c:
32519         * profiler-private.h: Pass the thread ID to thread profiler
32520         functions, instead of a handle
32521
32522 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32523
32524         * verify.c: fixes to make it more usable.
32525         * pedump.c: added --verify code to verify IL code in an assembly.
32526
32527 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32528
32529         * reflection.c: turn errors into warnings to allow compiling corlib.
32530
32531 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
32532
32533         * reflection.c: add special cases to compile corlib.
32534
32535 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32536
32537         * reflection.c: handle properties with only a set method.
32538
32539 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32540
32541         * opcodes.h: add enum with opcodes in opval order.
32542
32543 2002-07-01  Dick Porter  <dick@ximian.com>
32544         
32545         * object.h:
32546         * object.c (mono_runtime_run_main): Removed unneeded argument
32547
32548 2002-06-28  Martin Baulig  <martin@gnome.org>
32549
32550         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
32551
32552 2002-06-27  Dick Porter  <dick@ximian.com>
32553
32554         * threads.c: Store the handle in both the parent thread and in the
32555         subthread, to minimise the time between starting a new thread and
32556         storing its ID.
32557
32558 2002-06-26  Dick Porter  <dick@ximian.com>
32559
32560         * appdomain.c (mono_runtime_cleanup): Close the socket library
32561         after all the threads have finished, not before
32562
32563 2002-06-26  Martin Baulig  <martin@gnome.org>
32564
32565         * debug-symfile.c (mono_debug_find_source_location): Added
32566         `guint32 *line_number' argument.  If it's not NULL, store the line number
32567         there and return the file name without the line number.
32568
32569 2002-06-25  Dick Porter  <dick@ximian.com>
32570
32571         * icall.c:
32572         * process.h:
32573         * process.c: Process forking and other support functions
32574
32575 2002-06-25  Dick Porter  <dick@ximian.com>
32576
32577         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
32578         things dont happen when the image is closed.
32579         (mono_image_lookup_resource): Walk the resource section looking
32580         for a particular entry
32581
32582         * cil-coff.h: PE resource section decoding
32583
32584 2002-06-25  Dick Porter  <dick@ximian.com>
32585         
32586         * assembly.h:
32587         * assembly.c: 
32588         (mono_assembly_foreach): Accessor functions to walk the list of
32589         loaded assemblies
32590         (mono_assembly_set_main):
32591         (mono_assembly_get_main): Process methods need to know which
32592         assembly is the "main" one
32593
32594         * object.c (mono_runtime_run_main): Record the main assembly
32595
32596         * debug-helpers.c: Fix typo
32597
32598 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
32599
32600         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
32601         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
32602
32603 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32604
32605         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
32606
32607 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
32608
32609         * image.c (do_mono_image_open): Initialize reference count,
32610         otherwise we leak the MonoImage.
32611
32612 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32613
32614         * reflection.c: small tweak to handle self-hosting.
32615
32616 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32617
32618         * reflection.c: fix type name parse code.
32619
32620 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32621
32622         * reflection.c: break out of the loop.
32623         * image.c: special case corlib.
32624
32625 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32626
32627         * reflection.c: add all the custom attrs at the end to ensure the
32628         ctors have been properly initialized when the attributes are defined
32629         in the current assembly.
32630
32631 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32632
32633         * reflection.c: handle correctly multiple-nested types.
32634
32635 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
32636
32637         * row-indexes.h: fix typos.
32638         * reflection.c: adjust for typos and fix method_def_or_ref
32639         encoding in MethodImpl table.
32640
32641 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32642
32643         * reflection.c: fix entry point patching (thanks Serge!).
32644
32645 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
32646
32647         * verify.c: add check for System.Exception
32648
32649 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32650
32651         * image.c, class.c: minifix for code just c&p'ed.
32652         * reflection.c: warning fix.
32653         * object.h, loader.h, domain.c: load also StringBuilder.
32654
32655 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32656
32657         * marshal.h, marshal.c: some support code to handle complex marshaling.
32658
32659 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32660
32661         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
32662         Better signatures with vtable error dump.
32663
32664 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
32665
32666         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
32667
32668 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
32669
32670         * icall.c (ves_icall_Type_GetField): impl.
32671
32672 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32673
32674         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
32675         to retrieve a marshal description blob for a field or param.
32676
32677 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32678
32679         * reflection.h, reflection.c: change order of nested type emission
32680         to avoid table corruption. The NestedTypes table is sorted.
32681         * icall.c: change order of GetConstructor results to workaround mcs bug.
32682
32683 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32684
32685         * reflection.h, reflection.c: handle field and param marshal
32686         information.
32687
32688 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32689
32690         * icall.c, marshal.c marshal.h: more Marshal class implementation.
32691
32692 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32693
32694         * reflection.c: fix call convention.
32695
32696 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32697
32698         * reflection.h, reflection.c: mono_image_get_memberref_token()
32699         takes a type instead of a class, now. Added
32700         mono_image_get_array_token() to create tokens for the special
32701         multi-dim array methods.
32702
32703 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32704
32705         * assembly.c: handle modules (no assembly table). Split
32706         loading references in its own function.
32707         * class.c: handle moduleref resolution scope.
32708         * image.c, image.h: cache module name in image.
32709
32710 2002-06-07  Martin Baulig  <martin@gnome.org>
32711
32712         * reflection.c (mono_image_get_type_info): Only add a class layout entry
32713         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
32714
32715 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32716
32717         * icall.c: more signature fixes that used uint instead of int.
32718
32719 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32720
32721         * reflection.c: fixed signature of field refs.
32722
32723 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32724
32725         * class.c, reflection.c: handle typerefs of nested types
32726         (both on read and when writing files).
32727
32728 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
32729
32730         * icall.c: fix method signatures that tried to workaround the previous
32731         typo, d'oh!
32732
32733 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32734
32735         * debug-helpers.c: fix typo.
32736
32737 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32738
32739         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
32740         rewrote the PE/COFF writing code (our programs are understood by the
32741         ms runtime, now).
32742
32743 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32744
32745         * gc.c, gc.h, icall.c: weakreference support.
32746
32747 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32748
32749         * Makefile.am, mono-config.c: use $(sysconfdir).
32750
32751 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32752
32753         * icall.c: changed default precision of Double.ToString() to 15.
32754         Fixed memory leak. Unified with Single.ToString.
32755
32756 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
32757
32758         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
32759
32760 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32761
32762         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
32763         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
32764         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
32765         and myself.
32766
32767 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32768
32769         * debug-symfile.c, sysmath.c: yet more compilation fixes.
32770
32771 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32772
32773         * reflection.c, socket-io.c: more compilation fixes.
32774
32775 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32776
32777         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
32778         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
32779         unicode.c: warning and compiler compatibility fixes.
32780
32781 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32782
32783         * class.h, metadata.c: fixed warnings/compilation errors.
32784
32785 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32786
32787         * Makefile.am, mono-config.c, mono-config.h: configuration file
32788         support routines.
32789         * loader.c, loader.h: make Dll mapping configurable at runtime in the
32790         config file. Export methods to insert and lookup mappings.
32791
32792 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32793
32794         * reflection.c: handle types and boxed objects in custom attr
32795         constructors.
32796
32797 2002-05-30  Martin Baulig  <martin@gnome.org>
32798
32799         * debug-symfile.c
32800         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
32801
32802 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
32803
32804         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
32805         to lookup the implmap row for a P/Invoke method.
32806         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
32807         P/Invoke method from the runtime on an as needed basis.
32808
32809 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
32810
32811         * metadata.c (mono_metadata_parse_signature): impl.
32812
32813 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32814
32815         * class.c: handle .pack directive.
32816
32817 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32818
32819         * object.c: initialize static fields with RVA data.
32820
32821 2002-05-25  Martin Baulig  <martin@gnome.org>
32822
32823         * debug-symfile.c
32824         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
32825
32826 2002-05-24  Martin Baulig  <martin@gnome.org>
32827
32828         * debug-symfile.c
32829         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
32830         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
32831         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
32832
32833 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32834
32835         * object.c: special case string ctros in invoke.
32836         * gc.c: silly whitespace changes.
32837
32838 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
32839
32840         * threadpool.[ch]: impl. a threadpool that can
32841         be used by mint and mono.
32842
32843 2002-05-22  Martin Baulig  <martin@gnome.org>
32844
32845         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
32846         The first argument is now a `MonoReflectionModuleBuilder *', the return
32847         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
32848         `methods' field to get the method builder.  The `token' argument is the
32849         unfixed token.
32850
32851         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
32852         invalid characters instead of g_assert_not_reached()ing.  This seems
32853         to be the behaviour of mscorlib.
32854
32855 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
32856
32857         * object.c (mono_runtime_invoke_array): applied patch from Rachel
32858         Hestilow to fix bug #25104
32859
32860 2002-05-21  Martin Baulig  <martin@gnome.org>
32861
32862         * debug-symfile.c (mono_debug_find_source_location): New function.
32863         Looks up an IL offset in the line number table and returns the source
32864         location as a string.
32865
32866 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32867
32868         * icall.c:
32869         (mono_double_ToStringImpl): changed %f by %g until we have something
32870         better.
32871
32872 2002-05-21  Nick Drochak  <ndrochak@gol.com>
32873
32874         * icall.c : Use different name for Math.Pow's icall.  Needed to check
32875         parameters first in C#.
32876
32877 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32878
32879         * icall.c, reflection.h: added icall to get info about an event.
32880
32881 2002-05-20  Radek Doulik  <rodo@ximian.com>
32882
32883         * object.c (mono_value_box): don't use memcpy for boxing on BIG
32884         endian
32885         (mono_value_box): don't use memcpy for small sizes on
32886         architectures with unaligned access
32887
32888 2002-05-20  Martin Baulig  <martin@gnome.org>
32889
32890         * reflection.c (mono_reflection_setup_internal_class): Don't crash
32891         if `tb->parent == NULL'.
32892         (mono_reflection_create_internal_class): New function.  This is
32893         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
32894         for enum types.
32895
32896         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
32897         New interncall.
32898
32899 2002-05-19  Martin Baulig  <martin@gnome.org>
32900
32901         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
32902         argument to get the length, don't default to the array length.
32903
32904 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
32905
32906         * assembly.c (mono_assembly_setrootdir): New function used to
32907         override the MONO_ASSEMBLIES directory.
32908
32909 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32910
32911         * icall.c: ValueType_GetHashCode() initialize local var.
32912
32913 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32914
32915         * reflection.c: sort custom attributes table.
32916
32917 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32918
32919         * reflection.c: support named args in custom attributes (write support).
32920
32921 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
32922
32923         * reflection.c: fix finally position calculation.
32924
32925 2002-05-15  Radek Doulik  <rodo@ximian.com>
32926
32927         * reflection.c: fixed endianess at many places
32928
32929         * icall.c (ves_icall_InitializeArray): comment out debug msg
32930
32931 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
32932
32933         * object.c (mono_unhandled_exception): new function to handle
32934         unhandled exceptions.
32935         (mono_unhandled_exception): call the UnhandledException event.
32936         (mono_runtime_delegate_invoke): impl.
32937
32938 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
32939
32940         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
32941         returns the RVA, not the direct pointer to the data. Handle the case
32942         when the class size is fixed.
32943
32944 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32945
32946         * reflection.c: fix some endianess issues.
32947
32948 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
32949
32950         * object.c (mono_runtime_invoke): is now able to catch exceptions.
32951
32952         * threads.c (mono_thread_init): added a callback which is invoked
32953         at thread start.
32954
32955 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
32956         
32957         * icall.c: make GetHashCode return non-negative values.
32958
32959 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
32960
32961         * object.c, icall.c, gc.c: revert to address-based hashcode.
32962
32963 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
32964
32965         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
32966
32967 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32968
32969         * icall.c, class.c: special case <Module>.
32970
32971 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
32972
32973         * icall.c: fix bug in GetNow().
32974
32975 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
32976
32977         * object.c (mono_runtime_class_init): make sure that we call all
32978         static class constructors.
32979
32980 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32981
32982         * reflection.c: sort methodsemantics table.
32983
32984 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32985
32986         * reflection.h, reflection.c: honour init locals setting.
32987
32988 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
32989
32990         * icall.c: copied Double ToStringImpl for Single ToStringImpl
32991
32992 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
32993
32994         * reflection.c: support ContructorBuilders in attribute blob creation.
32995
32996 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32997
32998         * reflection.c: some changes to build a binary that can be run
32999         directly in windows.
33000
33001 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
33002
33003         * loader.c: print a big message when an icall can't be found.
33004
33005 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33006
33007         * string-icalls.c: fix bug 24248.
33008
33009 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
33010
33011         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
33012         icall.c, reflection.h: separate assembly loading by pathname and by
33013         assembly name. Use the MONO_PATH env var to search for assemblies.
33014
33015 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33016
33017         * assembly.c, image.h: add some support for assemblies
33018         with multiple modules.
33019         * class.c, class.h: export mono_class_from_typeref().
33020         * loader.c: remove duplicated code and use mono_class_from_typeref(),
33021         instead.
33022
33023 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33024
33025         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
33026         documentation says (the ECMA one is correct).
33027
33028 2002-05-02  Dick Porter  <dick@ximian.com>
33029
33030         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
33031         Don't name the synchronisation mutex.
33032
33033 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
33034
33035         * rand.c
33036         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
33037         Make the prototypes match.
33038         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
33039         Same.
33040
33041         * icall.c
33042         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
33043         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
33044         all systems have tm.tm_zone, so use strftime() with %Z to print
33045         the timezone abreviation into a temp string.
33046
33047         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
33048         rather than mono_array_addr() on a MonoString on Big Endian
33049         machines.
33050
33051 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
33052
33053         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
33054         fix bug 24041
33055
33056 2002-04-30  Dick Porter  <dick@ximian.com>
33057
33058         * socket-io.c: Cope with SOCKET being an integer rather than a
33059         pointer now.
33060
33061         * threads.c: Added Thread_free_internal, to deal with thread
33062         handle cleanup.  Moved calls to handle_store() and handle_remove()
33063         to start_wrapper(), so each can only be called once.  Allocate
33064         synchronisation blocks with GC_malloc(), and use GC finalisation
33065         to close the handles.
33066
33067         * icall.c: added System.Threading.Thread::Thread_free_internal
33068
33069 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33070
33071         * icall.c: support Environment.Exit, CommandLineArgs().
33072
33073 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33074
33075         * object.c, object.h: added mono_runtime_run_main () and
33076         mono_runtime_get_main_args () for use in System.Environment.
33077
33078 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33079
33080         * gc.c: fix thinko, enable actual finalization since the jit is now
33081         fixed.
33082
33083 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33084
33085         * gc.c, object.c: take into account that an object may be offset wrt the address
33086         returned by GC_malloc().
33087
33088 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33089
33090         * image.c: handle files without entries in the assembly table (modules).
33091
33092 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
33093
33094         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
33095         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
33096         allowed to be null when it's System.Object class setup.
33097
33098 2002-04-27  Martin Baulig  <martin@gnome.org>
33099
33100         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
33101         if `tb->parent == NULL' rather than crashing.
33102
33103 2002-04-28  Nick Drochak  <ndrochak@gol.com>
33104
33105         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
33106         calling acos() where asin() should have been called.
33107
33108 2002-04-26  Martin Baulig  <martin@gnome.org>
33109
33110         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
33111         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
33112         there's a subdirectory called `System', but we don't want to read that
33113         subdirectory as an assembly.
33114
33115 2002-04-25  Martin Baulig  <martin@gnome.org>
33116
33117         * debug-symfile.c: Reflect latest MonoString changes.
33118
33119 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33120
33121         * rand.c, rand.h: instance method icalls need to have an explicit
33122         this pointer as first argument in the C implementation.
33123
33124 2002-04-25  Nick Drochak <ndrochak@gol.com>
33125
33126         * icall.c: Fix typo in map for GetNonZeroBytes
33127
33128 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33129
33130         * string-icalls.c : String does now passes unit tests without any 
33131         errors, the following changes has been made:
33132         
33133         Implemented replace methods.
33134         Renaming of methods to (try) follow the standard.
33135         Fixed compare ordinal
33136         Made all memory allocated directly to function instead of via icall function.
33137         Small performance fix in is_in_array function
33138                         
33139  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
33140
33141         c (mono_string_Internal_ctor_charp_int_int):
33142         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
33143         sindex < 0, throw ArgumentOutOfRangeException instead of
33144         ArgumentNullException.
33145
33146         Added new check for length == 0, however
33147         I need to make it return String.Empty from the C code.
33148         
33149         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
33150         that calculate the length for us here.
33151         
33152         (mono_string_Internal_ctor_sbytep_int_int): Replaced
33153         mono_string_new_utf16 with mono_string_new, since value is utf8.
33154
33155 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33156
33157         * object.c: register the object for finalization if needed.
33158         Allocate one more char in the string for the terminating 0 char.
33159
33160 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33161
33162         * class.c, class.h, image.c: check if a type implemenst a destructor.
33163         Use the proper key for array class lookups.
33164         * icall.c: register the icalls in the System.GC class.
33165         * gc.c, gc.h: GC-related functions and icalls.
33166
33167 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33168
33169         * icall.c:
33170         * socket-io.c:
33171         * unicode.c: free some strings gotten from mono_string_to_utf8 and
33172         changed a couple of free () by g_free ().
33173
33174         * decimal.c: one-liner in the comments for decimal2string ().
33175
33176 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33177
33178         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
33179
33180 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33181
33182         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
33183         * object.c (mono_runtime_invoke_array) : handle null in params
33184
33185 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33186
33187         * string-icalls.c: fixed bug in split (one off bug)
33188
33189 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33190
33191         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
33192         * icalls.c: added String::Equals as internal method
33193
33194 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33195
33196         * threads.c: fixed bug in the double interlocked functions
33197
33198 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
33199
33200         * threads.c: implemented all of the new interlocked icalls.
33201         * string-icalls.c: fix a bug in insert.
33202         * icalls.c: added the icalls for interlocked, removed old string functions.
33203         
33204 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33205
33206         * loader.c: fix off-by-one error when reading argument names.
33207
33208 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33209
33210         * profiler.c: win32 counter implementation (untested).
33211         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
33212         (the latter needs testing and more complete impl. from win32 folks).
33213
33214 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
33215
33216         * object.c: mono_array_new_full workaround mono_array_class_get
33217         problem.
33218
33219 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33220
33221         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
33222         * object.h (mono_string_chars): Changed casting type.
33223
33224 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33225
33226         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
33227                            method signatures to use gunichar2 instead of gint16.
33228
33229 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
33230
33231         * object.h, object.c: domain-specific versions of mono_object_new and
33232         mono_array_new.
33233
33234 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
33235
33236         * object.c: changed String layout
33237
33238         * string-icalls.c (mono_string_Internal_ctor_chara): added
33239         internal string constructors.
33240
33241 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
33242
33243         * threads.c: pass 'this' to the thread start routine.
33244
33245 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33246
33247         * string-icalls.c: fix IndexOf and LastIndexOf. Now
33248         InternalCompareStr don't call twice mono_string_cmp_char for the last
33249         character. Improved performance in mono_string_cmp_char.
33250
33251 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33252
33253         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
33254         code into its own library: libmonoruntime.
33255
33256 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
33257
33258         * object.h, object.c: changed array format so that szarrays do not
33259         require a bounds structure.
33260         * icall.c, appdomain.c: support for new szarray format.
33261
33262 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
33263
33264         * metadata.c: compare also the retuns type when comparing signatures:
33265         we didn't do this as an optimization since really overloaded methods
33266         must differ also in the arguments, but this doesn't work with
33267         low-level IL code (or when using explicit conversion operators: see
33268         bug#23498 for an example).
33269
33270 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33271
33272         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
33273
33274 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33275
33276         * icall.c: make MonoType::GetElementType its own icall.
33277
33278 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33279
33280         * icall.c: remove MonoMethod_get_Name().
33281         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
33282         object.
33283
33284 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33285
33286         * string-icalls.c: optimized a few methods.
33287
33288 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33289
33290         * icall.c: added all new string internal calls
33291         * string-icalls.c: added, new string internal call implementation.
33292         * object.c: added mono_string_new_size for allocating a string a size
33293
33294 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
33295
33296         * object.c (mono_object_isinst): use the same code as in the
33297         optimized x86 version.
33298
33299 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33300
33301         * profiler.c: TSC-based timer code (faster and more accurate).
33302         Not hooked up in configure, yet (set USE_X86TSC to 1).
33303
33304 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
33305
33306         * profiler.c, profiler.h: track time spent compiling methods.
33307         * threads.c: track thread creation/destruction.
33308
33309 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
33310
33311         * profiler.c, profiler.h, profiler-private.h: profiling interface
33312         and sample implementation. Moved here so that it can be used also by
33313         the jit.
33314
33315 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
33316
33317         * reflection.c, reflection.h: keep types and other handles separate in
33318         the hash tables for referred tokens. Add guid for modules.
33319
33320 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
33321
33322         * assembly.c: fix bugs found with valgrind.
33323         * metadata.h, metadata.c: added mono_metadata_guid_heap().
33324
33325 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
33326
33327         * threads: added icall support for getting current domain for
33328                    the thread.
33329  
33330 2002-04-13  Martin Baulig  <martin@gnome.org>
33331
33332         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
33333         (MonoDebugVarInfo): Added `index' field for register based addresses.
33334         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
33335         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
33336         `MonoDebugVarInfo *params' and `guint32 this_offset' with
33337         `MonoDebugVarInfo *this_var'.
33338
33339         * debug-symfile.c (relocate_variable): New static function to write
33340         a location description for a local variable or method parameter.
33341
33342 2002-04-12  Martin Baulig  <martin@gnome.org>
33343
33344         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
33345         stack offset and begin/end scope address of a local variable.
33346         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
33347         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
33348         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
33349
33350         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
33351         Added new relocation types for start/end scope of a local variable.
33352
33353 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33354
33355         * object.h: add mono_object_domain() macro.
33356         * reflection.c: handle typespecs.
33357         * icall.c: MonoMethod::get_Name() implementation.
33358
33359 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33360
33361         * icall.c: String::GetHashCode() icall implementation.
33362
33363 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33364
33365         * icall.c: String::IndexOfAny icall.
33366         * object.c, object.h: make array->max_length more useful.
33367         Intrduced mono_object_class() and mono_string_length() macros.
33368
33369 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33370
33371         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
33372         instead of g_unichar_isdigit.
33373
33374 2002-04-11  Nick Drochak  <ndrochak@gol.com>
33375
33376         * icall.c: Implement a simple Double.ToString().
33377
33378 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33379
33380         * appdomain.h: only io-layer.h is supposed to be included.
33381         * icall.c: explicitly import environ. Fix warning.
33382
33383 2002-04-10  Nick Drochak  <ndrochak@gol.com>
33384
33385         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
33386                 return true even if it's not Daylight Savings time.
33387                 Only return false for the case where the function isn't
33388                 implemented for a plaform (read Windows).
33389
33390 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33391
33392         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
33393         data with a mutex.
33394
33395 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
33396
33397         * mempool.c (mono_mempool_alloc): only use g_malloc when
33398         absolutely necessary.
33399
33400 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
33401
33402         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
33403
33404         * class.c (mono_class_vtable): use domain mempool to allocate vtable
33405         (mono_class_proxy_vtable): use domain mempool
33406
33407 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33408
33409         * appdomain.h, appdomain.c: split initialization that requires the
33410         execution engine support into mono_runtime_init().
33411
33412 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
33413
33414         * class.c (mono_class_init): don't include vtable inside MonoClass
33415         to save some memory, gather some statistics.
33416         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
33417
33418 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33419
33420         * icall.c: internalcall implementation for ValueType.Equals().
33421
33422 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
33423
33424         * object.c (mono_message_init): moved 
33425         (mono_runtime_exec_main): new arch. independent impl.
33426         (mono_runtime_invoke_array): new method - like
33427         mono_runtime_invoke, but you can pass an array of objects.
33428         (mono_remoting_invoke): new arch. independent impl.
33429         (mono_message_invoke): new arch. independent impl.
33430         (mono_runtime_class_init): new arch. independent impl.
33431         (mono_runtime_object_init): new arch. independent impl.
33432
33433 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33434
33435         * metadata.c, object.c, reflection.c: documented the exported
33436         functions.
33437
33438 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33439
33440         * icall.c: simpler code to pass the assembly builder data to corlib.
33441         Implement GetNestedTypes() internalcall.
33442
33443 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33444
33445         * class.c: warn if a type can't be loaded.
33446
33447 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
33448
33449         * image.h: typedef MonoImageOpenStatus
33450         * types.h: removed unused file
33451         
33452 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
33453
33454         * icall.c: Enum_ToObject accepts enum value arguments.
33455
33456 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33457
33458         * class.c: move initialization of properties, events and nested
33459         classes, so that they happen for interfaces, too.
33460
33461 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33462
33463         * icall.c: cleanup some ugly casts in Array_SetValue*.
33464
33465 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33466
33467         * icall.c: the values array fro enums is of the correct type, now.
33468         Implement (correctly) getFullName instead of assQualifiedName for
33469         MonoType.
33470         * reflection.h, reflection.c: added mono_type_get_name ().
33471
33472 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33473
33474         * assembly.c, image.h: for each MonoImage, record from wich assembly
33475         it was loaded.
33476         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
33477         Make Type.Assembly work.
33478
33479 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
33480
33481         * debug-symfile.h: use char* instead of gpointer to avoid
33482         unnecessary casts.
33483
33484         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
33485
33486         * icall.c (ves_icall_InternalExecute): impl. FielSetter
33487         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
33488
33489 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
33490
33491         * icall.c (mono_message_init): impl. (code cleanup)
33492         (ves_icall_InternalExecute): impl. FieldGetter
33493
33494         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
33495         defined we call all (non-static)methods through the vtable. 
33496
33497 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
33498
33499         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
33500         finalizer even though the memory is still referenced (and the chunk of
33501         memory is not freed).
33502
33503 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
33504
33505         * assembly.c: fix brokeness.
33506
33507 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
33508
33509         * class.c: kill some warnings. Check explicit interface method
33510         implementation also without considering the namespace.
33511         Load also literal strings in static class data.
33512
33513 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
33514
33515         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
33516         (default_assembly_name_resolver): Make the resolver take the
33517         "base" directory where the assembly was originally defined, so we
33518         can load DLLs that are in the same directory as the assembly that
33519         is being referenced.
33520
33521 2002-03-28  Dick Porter  <dick@ximian.com>
33522
33523         * file-io.h: 
33524         * file-io.c:
33525         * socket-io.c: 
33526         * unicode.h: 
33527         * unicode.c: Warning cleanups
33528
33529 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
33530
33531         * object.h, reflection.h: use the correct type instead of MonoObject.
33532
33533 2002-03-28  Martin Baulig  <martin@gnome.org>
33534
33535         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
33536         (mono_debug_update_symbol_file): Initialize classes if necessary.
33537
33538 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
33539
33540         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
33541         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
33542
33543 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
33544
33545         * assembly.h: fix function prototype.
33546         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
33547         * mono-endian.h: use const cast.
33548
33549 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
33550
33551         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
33552
33553 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
33554
33555         * loader.c: don't assert when a typeref can't be loaded, give
33556         a chance to the runtime to trow an exception instead.
33557         * loader.h: fix warning.
33558
33559 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
33560
33561         * class.c (mono_class_proxy_vtable): added proxy support
33562
33563 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
33564
33565         * icall.c: removed last of PAL calls, added System.Environment
33566         * file-io.h, file-io.c: MonoIO implementation
33567         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
33568
33569 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
33570
33571         * appdomain.c: do not use the byte marker in ldstr table lookup.
33572         * debug-helpers.c: allow two ':' to separate class and method name.
33573         * object.c: allocate arrays bounds with the GC, too.
33574         * verify: add a few more checks.
33575
33576 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
33577
33578         * reflection.c: output also literal strings. Allocate parameter data
33579         with GC_malloc() (thanks, Martin, for catching this!).
33580
33581 2002-03-26  Martin Baulig  <martin@gnome.org>
33582
33583         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
33584         include the `this' offset in the `param_offsets'.
33585
33586 2002-03-25  Martin Baulig  <martin@gnome.org>
33587
33588         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
33589         mono_debug_get_class() function to get the classes. Added new
33590         relocation types for arrays and strings.
33591         (mono_debug_get_class): New static function to search in all
33592         referenced assemblies for a metadata token.
33593
33594         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
33595
33596 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33597
33598         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
33599         hold gc-allocated objects. Make the string heap a stream like the
33600         others. Removed duplicated code when writing stream info.
33601         Added asserts to catch possible buffer overflows. Set the sorted map
33602         for tables that need sorting. Added some documentation.
33603
33604 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
33605
33606         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
33607         for interned strings and vtables.
33608
33609 2002-03-24  Martin Baulig  <martin@gnome.org>
33610
33611         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
33612         it in the array since it was created with g_slist_prepend().
33613
33614 2002-03-24  Martin Baulig  <martin@gnome.org>
33615
33616         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
33617         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
33618         (mono_debug_method_from_token): Renamed to
33619         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
33620         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
33621
33622         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
33623         relocation types.
33624
33625         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
33626
33627 2002-03-24  Martin Baulig  <martin@gnome.org>
33628
33629         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
33630         (mono_debug_method_from_token): New func.
33631
33632         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
33633         New interncall, calls mono_debug_local_type_from_signature().
33634         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
33635         calls mono_debug_method_from_token().
33636
33637 2002-03-23  Martin Baulig  <martin@gnome.org>
33638
33639         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
33640         specifies the number of bytes to be converted, not the array size.
33641         Return the number of chars, not the number of bytes.
33642         (ves_icall_iconv_get_chars): The `byteCount' argument
33643         specifies the number of bytes to be converted, not the array size.
33644
33645 2002-03-23  Martin Baulig  <martin@gnome.org>
33646
33647         * reflection.h (MonoReflectionSigHelper): New type.
33648
33649         * reflection.c (mono_reflection_sighelper_get_signature_local),
33650         (mono_reflection_sighelper_get_signature_local): New functions.
33651
33652         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
33653         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
33654         interncalls.
33655
33656 2002-03-23  Martin Baulig  <martin@gnome.org>
33657
33658         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
33659         is_writeable is set.
33660         (mono_raw_buffer_update): New function to write the modified map
33661         back to disk.
33662
33663         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
33664
33665         * debug-symfile.c (mono_debug_update_symbol_file): Call
33666         mono_raw_buffer_update() when done writing.
33667
33668 2002-03-23  Martin Baulig  <martin@gnome.org>
33669
33670         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
33671
33672         * debug-symfile.c: Added support for arguments and local variables.
33673
33674 2002-03-23  Dick Porter  <dick@ximian.com>
33675
33676         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
33677         protected by ifdefs, hence breaking the w32 build.
33678
33679 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33680
33681         * object.c: implement is_interned() the right way.
33682
33683 2002-03-21  Martin Baulig  <martin@gnome.org>
33684
33685         * debug-symfile.[ch]: New files to handle debugging information
33686         files. There's also support to dynamically update these symbol
33687         files to include machine dependent information.
33688
33689 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
33690
33691         * threads.c (mono_thread_create): new function to create thread
33692         from C
33693
33694 2002-03-20  Martin Baulig  <martin@gnome.org>
33695
33696         * icall.c (ves_icall_InternalInvoke): Create a new object if the
33697         method is a constructor.
33698         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
33699         points to ves_icall_InternalInvoke().
33700
33701 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
33702
33703         * file-io.c: Flush shouldn't throw exceptions.
33704
33705 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
33706
33707         * file-io.c: FileStream flush support; FileSetLength now
33708         restores file pointer.
33709
33710 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
33711
33712         * class.c: set image for pointer classes.
33713
33714 2002/03/19  Nick Drochak <ndrochak@gol.com>
33715
33716         * sysmath.c: Forgot one.
33717
33718 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
33719
33720         * sysmath.c: Avoid redefining existing names.
33721
33722 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
33723
33724         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
33725         handled by runtime as icall rather than dllimport from libm.so
33726         * file-io.c, file-io.h: fixed handle argument type.
33727
33728 2002-03-18  Dick Porter  <dick@ximian.com>
33729
33730         * reflection.c (mono_image_get_type_info): rename interface to
33731         iface, because of "#define interface struct" on windows.
33732
33733 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
33734
33735         * class.c, class.h: rename and export mono_ptr_class_get().
33736         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
33737         * reflection.c, reflection.h, icall.c: better/saner type name
33738         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
33739         method signatures.
33740
33741 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
33742
33743         * class.c (mono_class_init): removed hardcoded GHC_SLOT
33744
33745         * icall.c (ves_icall_InternalInvoke): impl.
33746
33747 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33748
33749         * reflection.c: output the interface map table, too.
33750
33751 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
33752
33753         * class.c (class_compute_field_layout): separate computation of 
33754         static field layout
33755
33756 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
33757
33758         * icall.c: added System.Buffer support.
33759         * file-io.c: moved file icalls from PAL to FileStream.
33760
33761 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
33762
33763         * icall.c (ves_icall_System_Object_GetHashCode): impl.
33764
33765 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
33766
33767         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
33768
33769 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33770
33771         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
33772
33773 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
33774
33775         * debug-helpers.{c,h}: moved here from monograph some useful functions
33776         to locate a method by name/signature in a class or image. Included
33777         also a small and flexible IL disassembler.
33778
33779 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33780
33781         * reflection.c: fixup tokens in methods with small header size, too.
33782
33783 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
33784
33785         * object.c (mono_string_to_utf8): remove assert(!error), instead
33786         print a warning. 
33787
33788 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
33789
33790         * icall.c: update to the new mono_Array_class_get interface.
33791
33792 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
33793
33794         * appdomain.c, object.c: Boehm-GC enable.
33795         * icall.c: make get_data_chunk() support split data requests.
33796         Ensure a class is initialized in more cases. Return only the first
33797         property found in GetProperties() or the compiler gets confused. 
33798         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
33799         * reflection.h, reflection.c: add fixup mechanism for field and method
33800         tokens. Initialize assembly->typeref in a single place. Output
33801         properties after events. Support custom attributes for events, too.
33802         Typo fix for paramter custom attrs.
33803
33804 2002-03-07  Martin Baulig  <martin@gnome.org>
33805
33806         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
33807
33808 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
33809
33810         * class.c (mono_array_class_get): fix. for multi. dim. arrays
33811
33812 2002-03-06  Martin Baulig  <martin@gnome.org>
33813
33814         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
33815         non-zero lower bounds. See testcases #F10-#F13.
33816
33817 2002-03-05  Martin Baulig  <martin@gnome.org>
33818
33819         * exception.c (mono_get_exception_argument_out_of_range): New exception.
33820
33821         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
33822         ves_icall_System_Array_GetValue(), only calculate the absolute array position
33823         here.
33824         (ves_icall_System_Array_SetValue): Likewise.
33825         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
33826         as argument and does the actual work. This function is used when copying a
33827         multi-dimensional array.
33828         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
33829         now do all the widening conversions of value types.
33830         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
33831
33832 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33833
33834         * class.c: remove some magic numbers and use the smbolic names,
33835         instead. Added init_events() to load event info at class init time.
33836         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
33837         and mono_metadata_methods_from_event().
33838         * reflection.h, reflection.c: added support for writing out the evnets
33839         related information.
33840
33841 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
33842
33843         * reflection.h, icall.c: use a different method (GetInterfaces)
33844         to gather interface info and add isbyref, isprimitive and
33845         ispointer to the ves_icall_get_type_info() return value.
33846
33847 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
33848
33849         * class.h: stared adding support for events.
33850         * icall.c: split find_members implementation. Added debug icall to get
33851         the address of an object.
33852         * reflection.c: handle TypeBuilders in mono_type_get_object().
33853
33854 2002-03-01  Martin Baulig  <martin@gnome.org>
33855
33856         * icall.c (ves_icall_System_Array_GetLength): This must throw an
33857         ArgumentOutOfRangeException(), not an ArgumentException().
33858         (ves_icall_System_Array_GetLowerBound): Likewise.
33859         (ves_icall_System_Array_GetValue): Improved argument checking.
33860         (ves_icall_System_Array_SetValue): Improved argument checking.
33861
33862 2002-03-01  Martin Baulig  <martin@gnome.org>
33863
33864         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
33865         called with invalid arguments rather than just dying with g_assert().
33866         (ves_icall_System_Array_SetValue): Likewise.
33867         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
33868         raise a NotImplementedException instead.
33869         (ves_icall_System_Array_GetLength): Added argument checking.
33870         (ves_icall_System_Array_GetLowerBound): Added argument checking.
33871
33872 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
33873
33874         * object.h (mono_assert): new macros mono_assert and
33875         mono_assert_not_reached
33876
33877 2002-02-28  Martin Baulig  <martin@gnome.org>
33878
33879         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
33880         and "System::String::IsInterned" to "System::String::_IsInterned".
33881
33882 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
33883
33884         * icall.c: remove hacks for typebuilder. Added icall to create a
33885         modified type from a tybebuilder.
33886         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
33887         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
33888         to create a backing MonoClass for a TypeBuilder.
33889
33890 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33891
33892         * class.c, class.h: more refactoring of class init.
33893         Export mono_class_setup_mono_type() and mono_class_setup_parent().
33894
33895 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
33896
33897         * marshal.c, marshal.h: start of marshaling interface.
33898
33899 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
33900
33901         * icall.c: fix order in assembly qualified name icall.
33902
33903 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
33904
33905         * class.c: do not free str, since we store it in the hash table.
33906         * reflection.h: add label field to MonoILExceptionInfo.
33907         * reflection.c: handle references to more than one assembly. Handle
33908         case when there isn't a module created in the assembly.
33909
33910 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
33911
33912         * class.c: Fix typo. Start refactoring of class init code.
33913
33914 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
33915
33916         * appdomain.c: exit with 1 on error.
33917         * class.c: we already have the name in MonoClassField.
33918         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
33919         MonoStreamHeader instead of an offset of image->raw_metadata.
33920
33921 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
33922
33923         * appdomain.c (mono_init): Be even more descriptive about the error.
33924
33925 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
33926
33927         * appdomain.c: give the user an informative message when corlib can't
33928         be loaded.
33929
33930 2002-02-26  Martin Baulig  <martin@gnome.org>
33931
33932         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
33933         New icall to get the time zone data.
33934
33935 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33936
33937         * reflection.c: set virtual and raw size of section correctly.
33938         * threads.c: transfer domain information to newly created threads.
33939
33940 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
33941
33942         * class.c: when instancing a class in a domain, load the default
33943         vaules for static fields from the constant table. Fix System.Enum to
33944         not be an enum.
33945         * icall.c: implement Object::GetType() internalcall. Implemented
33946         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
33947         Fixed checking of binding flags in find_members().
33948         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
33949         * reflection.c: handle enumerations when writing to the constant
33950         table. Use a different object cache for types.
33951
33952
33953 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
33954
33955         * object.c (mono_object_isinst): fix for arrays
33956
33957         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
33958
33959 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
33960
33961         * object.c: don't use mprotect ()  and fix intern pool hash table
33962         lookup for big endian systems.
33963
33964 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33965
33966         * icall.c: change type_is_subtype_of () signature.
33967
33968 2002-02-21  Mark Crichton  <crichton@gimp.org>
33969
33970         * rand.c, rand.h: Added random number generator for
33971         System.Security.Cryptography classes.
33972
33973         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
33974
33975         * icall.c: Added System.Security.Cryptography calls.
33976
33977 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33978
33979         * class.c, icall.c, metadata.c: better support for pointer types.
33980         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
33981         * reflection.c: Add support for getting custom attrs for properties
33982         and simplify some code.
33983
33984 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33985
33986         * icall.c: change getToken () and add custom attribute GetBlob()helper
33987         method.
33988         * reflection.h: add custom attrs array to the reflection builder structures.
33989         * reflection.c: encode and emit custom attributes for all the relevant
33990         reflection objects. Cache fieldref and methodref tokens. Change
33991         mono_image_create_token() interface to take a MonoDynamicAssembly.
33992         More complete custom attributes decoder. Load custom attributes for
33993         Assembly, Field, Method and Constructor objects, too. Make the
33994         returned array an Attribute[] one, not object[]. Added
33995         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
33996         custom attribute constructor.
33997
33998 2002-02-20  Dick Porter  <dick@ximian.com>
33999
34000         * icall.c:
34001         * rawbuffer.c:
34002         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
34003         problem code out for now).
34004
34005 2002-02-19  Radek Doulik  <rodo@ximian.com>
34006
34007         * object.c (mono_ldstr): use hash table to avoid multiple swapping
34008
34009 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
34010
34011         * icall.c: register the GetCustomAttributes method.
34012         * object.c, object.h: add mono_string_new_len ().
34013         * reflection.h, reflection.c: added mono_runtime_invoke(),
34014         mono_install_runtime_invoke(). Added
34015         mono_reflection_get_custom_attrs () to load custom attributes and
34016         create the attribute objects.
34017
34018 2002-02-19  Dick Porter  <dick@ximian.com>
34019         * threads-dummy-types.c:
34020         * threads-dummy-types.h:
34021         * threads-dummy.c:
34022         * threads-dummy.h:
34023         * threads-pthread-types.c:
34024         * threads-pthread-types.h:
34025         * threads-pthread.c:
34026         * threads-pthread.h:  Deleted obsolete files
34027
34028 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
34029
34030         * class.c (mono_class_vtable): runtime init the class when we
34031         allocate static class data.
34032
34033         * icall.c (ves_icall_System_Array_SetValue): check for null values.
34034
34035         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
34036         and String - but we will need generic marshalling support in the
34037         future. 
34038         (mono_init): set the domain name in a ms compatible way
34039
34040         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
34041         String[].
34042
34043 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
34044
34045         * object.c (mono_array_clone): use alloca() instead of g_malloc  
34046         for sizes
34047
34048         * appdomain.c (mono_domain_unload): impl.
34049
34050 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34051
34052         * appdomain.c, object.c: fix intern pool implementation.
34053         * class.c: fix alignment code.
34054
34055 2002-02-16  Radek Doulik  <rodo@ximian.com>
34056
34057         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
34058         and s2 > s1, just copy lower bytes to be compatible with little
34059         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
34060         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
34061
34062         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
34063         force big_endian to be 1 for big endian machines 
34064         (ves_icall_iconv_new_decoder): ditto
34065
34066 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
34067
34068         * socket-io.c (convert_sockopt_level_and_name): If the system
34069         doesn't define SOL_IP or SOL_TCP, get them by hand using
34070         getprotobyname() and caching the values (because this could be a
34071         slow operation).
34072         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
34073         Use the appropriate struct when the system does support it. Ie,
34074         not all systems have struct ip_mreqn so use struct ip_mreq when
34075         appropriate.
34076
34077 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
34078
34079         * reflection.c: handle finally clauses.
34080
34081 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
34082
34083         * socket-io.c: use g_snprintf() instead of snprintf.
34084
34085 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34086
34087         * reflection.c (mono_param_get_objects): Cast second argument to
34088         mono_method_get_param_names to a const char** to silence the
34089         compiler warning.
34090
34091         * appdomain.c (mono_domain_assembly_open): Put parens around the
34092         truth statement in the for-loop.
34093
34094         * unicode.c (iconv_convert): Got rid of a compiler warning about
34095         int i being unused when the system has a new iconv.
34096         (iconv_get_length): Same.
34097
34098         * image.c (load_class_names): Cast the second argument to
34099         g_hash_table_insert() to char* to hush compiler warnings about the
34100         arg being a const.
34101         (mono_image_open): Same here.
34102
34103         * socket-io.c: Don't conditionally include sys/filio.h or
34104         sys/sockio.h here anymore since we now get them from
34105         io-layer/io-layer.h
34106         (inet_pton): If the system doesn't support inet_aton, implement
34107         using inet_addr and also #define INADDR_NONE if it isn't defined
34108         by the system.
34109
34110 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
34111
34112         * metadata.c, metadata.h: added function to get packing and size info
34113         of a typedef.
34114         * reflection.h, reflection.c: handle field RVA data. Save info about
34115         the table layout if needed. Assign typedef indexes to all the types
34116         before dumping the info about them to avoid forward reference problems.
34117
34118 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
34119
34120         * socket-io.c (convert_sockopt_level_and_name): ifdef
34121         SO_ACCEPTCONN because it is not defined on my system (old debian)
34122
34123 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34124
34125         * opcode.c: use stddef.h to get NULL.
34126
34127 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34128
34129         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
34130         for FIONBIO, FIONREAD and SIOCATMARK.
34131         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
34132         define INADDR_NONE and besides, inet_addr() is deprecated and
34133         should not be used. Use inet_pton() instead - it also has the
34134         added bonus that it can easily handle IPv6 addresses as well.
34135         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
34136
34137 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
34138
34139         * decimal.c: remove _MSC_VER conditional.
34140
34141 2002-02-13  Dick Porter  <dick@ximian.com>
34142
34143         * socket-io.c: 
34144         * icall.c: Internal calls for Blocking, Select, Shutdown,
34145         GetSocketOption and SetSocketOption
34146
34147 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34148
34149         * assembly.cs: better resolver: use it instead of some kludgy
34150         code.
34151
34152 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
34153
34154         * reflection.c: the best way to speed-up the compiler is to avoid
34155         infinite loops.
34156
34157 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
34158
34159         * class.c (mono_class_vtable): changed the object layout
34160         (obj->vtable->class). 
34161         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
34162
34163 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34164
34165         * assembly.c: look for assemblies in the assembly dir, too.
34166
34167 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34168
34169         * class.c: fix thinko in mono_class_from_type().
34170
34171 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34172
34173         * exception.h, exception.c: added TypeLoadException.
34174         * object.h, object.c: added mono_array_clone ().
34175         * icall.c: handle throwOnError in AssemblyGetType().
34176         Added Array.Clone().
34177         * opcode.h, opcode.c: use a single value for the opcode val.
34178         Compile fix for non-gcc compilers.
34179
34180 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
34181
34182         * opcodes.c, opcodes.h: export interesting info about opcodes.
34183
34184 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
34185
34186         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
34187         icalls. 
34188
34189         * class.c (class_compute_field_layout): set element_class for enums
34190         (mono_class_create_from_typedef): set element_class for normal classes
34191
34192         * icall.c (ves_icall_System_Enum_get_value): impl.
34193
34194         * class.c (mono_class_create_from_typedef): do not set valuetype
34195         flag for System.ValueType and System.Enum
34196
34197 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
34198
34199         * unicode.c (iconv_convert): fix big endian problem.
34200
34201 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34202
34203         * class.c: add asserts if we are ever going to scribble over memory.
34204         * socket-io.c: not all systems have AF_IRDA defined.
34205
34206 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
34207
34208         * class.c (class_compute_field_layout): do not consider static
34209         fields to compute alignment
34210
34211 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
34212
34213         * appdomain.c (mono_appdomain_get): impl.
34214         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
34215
34216 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
34217
34218         * icall.c: ignore "file://" prefix when loading an assembly.
34219
34220 2002-01-23  Dick Porter  <dick@ximian.com>
34221
34222         * socket-io.c:
34223         * icall.c:
34224         * Makefile.am: Added socket support
34225
34226 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
34227
34228         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
34229         code back.  This should return the assemblies that are loaded by
34230         the runtime on behalf of an application domain. 
34231
34232         The current implementation is still broken, it just returns every
34233         assembly loaded, but until we get real applications domain this
34234         will do.
34235
34236 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
34237
34238         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
34239         AppDomain object.
34240
34241 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
34242
34243         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
34244         the mono_class_from_name lookup.
34245         (ves_icall_get_parameter_info): ditto.
34246         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
34247         method.
34248         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
34249
34250 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
34251
34252         * class.c: load also nested classes on class init.
34253         System.ValueType instance methods gets passed boxed
34254         values, unless methods in derived classed that get a pointer to the
34255         data.
34256         * icall.c: use better name parsing code in GetType().
34257         * image.c, image.h: add mono_image_loaded ().
34258         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
34259         * reflection.c, reflection.h: added mono_reflection_parse_type().
34260
34261 2002-01-22  Veronica De Santis <veron78@interfree.it>
34262
34263         * icall.c : Added mapping of internal calls for Manual and Auto reset events
34264         * threads.c : Added the implementation of internal calls for events
34265         * threads.h : Added prototypes of internal calls for events
34266         
34267 2002-01-21  Radek Doulik  <rodo@ximian.com>
34268
34269         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
34270
34271 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
34272
34273         * class.c (mono_class_init): set min_align to 1 (instead of 0)
34274         (mono_class_value_size): use min_align
34275
34276 2002-01-20  Dick Porter  <dick@ximian.com>
34277
34278         * threads.h:
34279         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
34280         so it compiles on w32.
34281
34282 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
34283
34284         * metadata.c (mono_type_stack_size): impl.
34285
34286         * class.c (mono_class_get_field): impl. memberref token
34287
34288 2002-01-16 Veronica De Santis <veron78@@interfree.it>
34289
34290         * icall.h : Added the internal calls mapping for CreateMutex_internal
34291                     and ReleaseMutex_internal.
34292         * threads.h : Added the prototype of mutexes internal calls.
34293         * threads.c : Added the implementations of mutexes internal calls.
34294
34295 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
34296
34297         * metaparse.h: removed unused file.
34298         * reflection.c, reflection.h: added stream_data_align () function 
34299         to align data in streams and keep stream aligned. Add support for
34300         exception support in method headers.
34301
34302 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
34303
34304         * unicode.c: make iconv_convert () return the number of bytess written
34305         in the output buffer.
34306
34307 2002-01-15  Dick Porter  <dick@ximian.com>
34308         * threads.c: Make the runtime's idea of infinite timeouts coincide
34309         with the class library's
34310
34311         Fix a particularly egregious bug in mono_thread_cleanup(). That
34312         code was so utterly bogus it must have been written on a Monday.
34313
34314 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
34315
34316         * reflection.h: add subtypes field to TypeBuilder.
34317         * reflection.c: encode constants for literal fields.
34318         Handle subtypes. Fix user string token (and add a zero byte)
34319         at the end.
34320         
34321 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
34322
34323         * class.c (mono_class_init): bug fix: assign slot numbers for
34324         abstract methods.
34325
34326 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34327
34328         * reflection.c: don't try to output a code RVA for abstract methods.
34329         Small fixes for method header format. Output parameter info to the
34330         ParamDef table. Save method overriding info to MethodImpl table.
34331         Fix property support. Allow typedef.extends to be a type in the
34332         building assembly.
34333         * verify.c: fix off-by-one error.
34334
34335 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
34336
34337         * class.c: fix mono_class_from_mono_type () for szarray types.
34338         Remove unused cache check in mono_class_from_type_spec().
34339         * icall.c: *type_from_name () functions handle simple arrays and byref.
34340         * reflection.c: handle byref and szarray types. Handle methods without
34341         body (gets P/Invoke compilation working). Handle types and fields in
34342         get_token ().
34343         * reflection.h: add rank to MonoTypeInfo.
34344
34345 2002-01-10  Dick Porter  <dick@ximian.com>
34346
34347         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
34348         internal calls
34349
34350 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
34351
34352         * icall.c: initialize class in type_from_handle ().
34353         Loop also in parent classes for get_method ().
34354         * reflection.c: properly encode class and valuetype types.
34355         Start on encoding TypeBuilder types. Handle fieldrefs.
34356         Use correct length when registering a user string.
34357         Handle ConstructorBuilder and MonoMethod in get_token ().
34358         Make mono_type_get_object () aware of cached types.
34359         * object.c: back out change to mono_string_new ().
34360
34361 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
34362         * object.c: mono_string_new should return a NULL when the string 
34363         passed in is NULL -- not try to deference it.
34364         
34365 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
34366
34367         * icall.c: hack to make IsSubType work for TypeBuilders.
34368         * reflection.c: emit constructors before methods.
34369         Retrieve param names in mono_param_get_objects().
34370
34371 2002/01/05  Nick Drochak  <ndrochak@gol.com>
34372
34373         * Makefile.am: fix list of headers and sources so automake 1.5
34374         doesn't complain. Removed \# at end of list.
34375
34376 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
34377
34378         * reflection.c: get token for a method ref. Set return type of
34379         constructor to void.
34380         * loader.c: debug message.
34381         * class.c: typo fix.
34382
34383 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
34384
34385         * icall.c: fix array init with rank > 1. FindMembers
34386         loops in parent class as well.
34387         * image.c: do not insert nested types in name cache.
34388         * reflection.c: warning fix.
34389         * reflection.h: add override method (for interface impl).
34390
34391 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
34392
34393         * metadata.c: fix customattr decoding.
34394
34395 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
34396
34397         * rawbuffer.cs: Added native Win32 implementation, avoids using
34398         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
34399
34400 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
34401
34402         * class.c: make the low-level routines handle the cache.
34403
34404 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
34405
34406         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
34407
34408 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
34409
34410         * class.c: fix mono_array_element_size() for objects.
34411         * class.h, class.c: add properties to MonoClass and load them
34412         at init time.
34413         * icall.c: check with isinst() when assigning a value to an array
34414         instead of requiring the classes to match exactly.
34415         Implemented icall for System.Type::GetType().
34416         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
34417         enums. Handle bindingflags when looking for methods and fields.
34418         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
34419         and mono_metadata_methods_from_property().
34420         * reflection.h, reflection.c: added structures for propreties,
34421         parameters and enums. Implemented mono_property_get_object() and
34422         mono_param_get_objects().
34423
34424 2001-12-18  Dick Porter  <dick@ximian.com>
34425
34426         * file-io.c: Use mono_string_to_utf16() instead of
34427         mono_string_chars()
34428
34429         * object.c: Added mono_string_to_utf16(), which copies the non
34430         NULL-terminated MonoString into a new double-null-terminated
34431         buffer.
34432
34433 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
34434
34435         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
34436
34437 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
34438
34439         * file-io.c: raise exceptions if handle is invalid.
34440
34441 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
34442
34443         * assembly.c: yet another check for mscorlib.
34444         * class.c, class.h: load nesting info for classes.
34445         * icall.c: many new functions to support the Reflection classes.
34446         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
34447         * reflection.h, reflection.c: mono_image_create_token(),
34448         mono_assembly_get_object(), mono_type_get_object(),
34449         mono_method_get_object(), mono_field_get_object(): methods to return
34450         objects that parallel the C representation of assemblies, types,
34451         methods, fields.
34452
34453 2001-12-11  Dick Porter  <dick@ximian.com>
34454
34455         * icall.c:
34456         * file-io.c: Internal calls for file IO.
34457
34458 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
34459
34460         * tabledefs.h: missing FileAttributes.
34461         * verify.h, verify.c: use is_valid_string () to simplify and check for
34462         valid strings more correctly. Fix warnings and speeling.
34463         Check more tables: Filed, File, ModuleRef, StandAloneSig.
34464         Check code: branches, maxstack, method calls.
34465
34466 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
34467
34468         * object.c (mono_object_allocate): removed static, so that the jit
34469         can allocate value types.
34470
34471         * icall.c (ves_icall_System_DateTime_GetNow): impl.
34472
34473 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34474
34475         * class.c: init enum types right away and register the
34476         token->MonoClass map in mono_class_create_from_typedef ().
34477         * verify.h, verify.c: first cut of the verifier.
34478         * pedump.c: add --verify switch to verify metadata tables.
34479         * tabledefs.h: add some missing enums.
34480
34481 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
34482
34483         * class.c (mono_install_runtime_class_init): impl.
34484         (mono_class_init): renamed mono_class_metadata_init to
34485         mono_class_init, also removed the metadata_inited flag
34486
34487         * object.c (mono_object_isinst): use faster algorithm
34488
34489 2001-11-30  Radek Doulik  <rodo@ximian.com>
34490
34491         * mono-endian.h: reverted last change
34492         added function prototypes
34493
34494         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
34495         add mono-endian.c back
34496
34497         * mono-endian.c: returned back, as Paolo pointed out, it's needed
34498         for unaligned access, I've mistaked it with endianess. I am
34499         sorry.
34500         (mono_read16): fix reverted endianess
34501         (mono_read64): ditto
34502         (mono_read32): ditto
34503
34504 2001-11-30  Dick Porter  <dick@ximian.com>
34505
34506         * exception.c: Implement mono_exception_from_name()
34507
34508 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
34509
34510         * metadata.h, metadata.c: remove params_size and locals_size and their
34511         calculation from the metadata code: they are only usefult to the
34512         interp.
34513
34514 2001-11-29  Radek Doulik  <rodo@ximian.com>
34515
34516         * object.c (mono_ldstr): swap bytes here, it's probably not the
34517         best place, but works for me now, I'll redo it once I know mono
34518         better, also note that I add PROT_WRITE and don't reset back, also
34519         note that it's only affects big endians, so x86 should be OK
34520
34521         * mono-endian.h (read16): use just glib macros for both endians
34522
34523         * mono-endian.c: removed as glib macros are used in in
34524         mono-endian.h so we don't need to care about endianess for read
34525         macros as glib does that for us already
34526
34527 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
34528
34529         * class.h, class.h: take minimum alignment into consideration so
34530         that the fields of a class remain aligned also when in an array.
34531
34532 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34533
34534         * loader.h, loader.c: add mono_method_get_param_names().
34535         * class.c: 0-init class fields.
34536
34537 2001-11-26  Dick Porter  <dick@ximian.com>
34538
34539         * icall.c:
34540         * threads-types.h:
34541         * threads.c: New file that handles System.Threading on all platforms
34542
34543         * object.c: 
34544         * object.h: Remove the synchronisation struct from MonoObject,
34545         replace it with a pointer that gets initialised on demand
34546
34547         * Makefile.am: Replace all the system-specific threading code with
34548         a single file that uses the new wrapper library
34549
34550 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
34551
34552         * class.c, class.h: add mono_install_trampoline() so that the runtime
34553         can register a function to create a trampoline: removes the ugly
34554         requirement that a runtime needed to export arch_create_jit_trampoline.
34555         * object.h, object.c: added mono_install_handler() so that the runtime
34556         can install an handler for exceptions generated in C code (with
34557         mono_raise_exception()). Added C struct for System.Delegate.
34558         * pedump.c: removed arch_create_jit_trampoline.
34559         * reflection.c: some cleanups to allow registering user strings and
34560         later getting a token for methodrefs and fieldrefs before the assembly
34561         is built.
34562         * row-indexes.h: updates and fixes from the new ECMA specs.
34563
34564 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
34565
34566         * class.h, class.c: add enum_basetype field to MonoClass.
34567         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
34568         to get index in the constant table reated to a field, param or
34569         property.
34570         * reflection.h, reflection.c: handle constructors. Set public-key and
34571         version number of the built assembly to 0.
34572         * row-indexes.h: update from new ECMA spec.
34573
34574 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
34575
34576         * class.h, class.c: add a max_interface_id to MonoClass.
34577         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
34578         since it's used to do that. Added mono_type_type_from_obj().
34579         Make GetType() return NULL instead of segfaulting if the type was not
34580         found. Handle simple arrays in assQualifiedName.
34581         * object.h: add a struct to represent an Exception.
34582         * reflection.c: output call convention in method signature.
34583         Add code to support P/Invoke methods and fixed offsets for fields.
34584
34585 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
34586
34587         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
34588         the value.
34589         * icall.c: use mono_array_addr instead of array->vector: fixes the
34590         reflection image writing.
34591         * reflection.c: init call convention byte to 0 in method signature.
34592         Encode the property signature. Don't output property-related methods
34593         twice. Really process the properties for a type (don't cast a field to
34594         a property, my mom always told me that).
34595         Fix 64 bit issues in pointer alignment in a different and more
34596         readable way.
34597
34598 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
34599
34600         * loader.h: Removed type class from MonoDefaults, added monotype
34601
34602         * loader.c: Loaded MonoType, removed loading of Type
34603
34604         * icall.c (my_mono_new_object): Now returns a System.MonoType,
34605         and fills in System.Type._impl with a RuntimeTypeHandle rather
34606         than the actual MonoClass *
34607
34608         (ves_icall_type_from_handle): change from type_class to
34609         monotype_class
34610
34611         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
34612         implemented
34613
34614         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
34615         implemented
34616
34617         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
34618
34619         (ves_icall_System_Reflection_Assembly_GetType): implemented
34620
34621         (ves_icall_System_MonoType_assQualifiedName): implemented
34622
34623         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
34624
34625 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
34626
34627         * assembly.c (mono_assembly_open): Implement a cache for the
34628         assemblies. 
34629
34630         (mono_assembly_close): only destroy the assembly when the last
34631         reference is gone.
34632         
34633 2001-11-09  Dick Porter  <dick@ximian.com>
34634
34635         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
34636
34637 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
34638
34639         * class.c (mono_class_metadata_init): bug fix: compute the right slot
34640
34641 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
34642
34643         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
34644         from Martin Weindel.
34645         * object.h: add mono_string_chars ().
34646
34647 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
34648
34649         * reflection.c (build_compressed_metadata): Eliminates warnings
34650         and uses 64-bit clean code.
34651
34652         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
34653         (mono_type_equal): Change signature to eliminate warnings.
34654
34655 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34656
34657         * icall.c, loader.c: remove the internalcall array constructors.
34658         Changes to match the new MonoArray structure.
34659         * object.h, object.c: an array object doesn't allocate an extra
34660         vector. Add mono_array_new_full () to create jagged arrays easily.
34661
34662 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
34663
34664         * metadata.h, metadata.c: add mono_metadata_field_info () to
34665         retreive all the info about a field from vairous tables.
34666         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
34667         * class.h, class.c: augment MonoClassField with more info.
34668         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
34669         policy and load a field's RVA if needed.
34670
34671 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
34672
34673         * class.c (mono_class_metadata_init): create a trampoline for all
34674         virtual functions instead of actually compiling them.
34675
34676 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
34677
34678         * class.h, class.c: include name in MonoClassField.
34679         * class.c: fix fundamental type of System.Object and System.String.
34680         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
34681         tokens in ldtoken.
34682         * icall.c: remove internalcalls for the Reflection stuff that is now
34683         done in C# code.
34684         * loader.c: mono_field_from_memberref () implementation.
34685         * mono-endian.c: thinko (s/struct/union/g).
34686         * object.c, object.h: make the mono_string_* prototypes actually use
34687         MonoString instead of MonoObject.
34688         * reflection.c, reflection.h: updates for changes in the reflection
34689         code in corlib: we use C structures that map to the actual C# classes.
34690         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
34691         fat method header if needed and use the info from the ILGenerator for
34692         methods. Handle fields in types. Misc fixes.
34693
34694 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
34695
34696         * class.c (mono_class_metadata_init): bug fix: always allocate
34697         space for static class data
34698
34699 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
34700
34701         * class.c (mono_compute_relative_numbering): use relative
34702         numbering to support fast runtime type checks.
34703
34704 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
34705
34706         * class.c (mono_class_create_from_typeref): added debugging output
34707         to print class name when MonoDummy is returned instead of real class
34708
34709 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
34710
34711         * class.c (mono_class_metadata_init): interface offset table now
34712         contains pointers into the vtable - this is more efficient for the jit
34713
34714 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
34715
34716         * class.c (mono_class_metadata_init): use a temporary vtable (the
34717         old algorithm only worked for the interpreter, but not for the jit)
34718
34719 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
34720
34721         * loader.c (method_from_memberref): use mono_class_get to get the
34722         class of an array instead of using System.Array directly.
34723         (mono_get_method): also add MEMBERREF methods to the method cache
34724         which usefull for arrays.
34725
34726 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
34727
34728         * pedump.c (arch_compile_method): added to compute vtable entry
34729
34730         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
34731         number of interfaces.
34732         
34733         * class.h: merged MonoArrayClass into MonoClass
34734
34735         * class.c (mono_class_create_from_typedef): compute the vtable size and
34736         allocate space to include the vtable inside MonoClass
34737         (mono_class_metadata_init): initialize the vtable
34738
34739 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
34740
34741         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
34742         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
34743         * image.c: endian fixes by Laurent Rioux.
34744         * object.h, object.c: rename MonoStringObject to MonoString and
34745         MonoArrayObject to MonoArray. Change some function names to conform to
34746         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
34747         guint16* as first argument, so don't use char*.
34748         Provide macros to do the interesting things on arrays in a portable way.
34749         * threads-pthread.c: updates for the API changes and #include <sched.h>
34750         (required for sched_yield()).
34751         * icall.c: updates for the API changes above.
34752         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
34753         platforms that need them.
34754
34755 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
34756
34757         * class.c: set the correct type for all the fundamental
34758         type when loading the class.
34759
34760 2001-10-05  Dick Porter  <dick@ximian.com>
34761
34762         * threads-pthread.c (pthread_mutex_timedlock): Simple
34763         compatibility version for C libraries that lack this call.
34764
34765 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34766
34767         * class.c: MonoTypes stored in MonoClass are stored as
34768         fundamental MonoTypes when the class represents a
34769         fundamental type (System.Int32, ...).
34770         The TypeHandle return by ldtoken is a MonoType*.
34771         * icall.c: ves_icall_get_data_chunk () write out all the
34772         PE/COFF stuff. Implement ves_icall_define_method (),
34773         ves_icall_set_method_body (), ves_icall_type_from_handle ().
34774         * image.c: properly skip unknown streams.
34775         * loader.h, loader.c: add type_class to mono_defaults.
34776         * metadata.c, metadata.h: export compute_size () as
34777         mono_metadata_compute_size () with a better interface.
34778         Typo and C&P fixes.
34779         * pedump.c: don't try to print the entry point RVA if there is no entry point.
34780         * reflection.c, reflection.h: many cleanups, fixes, output method
34781         signatures and headers, typedef and typeref info, compress the metadata
34782         tables, output all the heap streams, cli header etc.
34783         * row-indexes.h: typo fixes.
34784
34785 2001-10-04  Dick Porter  <dick@ximian.com>
34786
34787         * object.h: Add a synchronisation mutex struct to MonoObject
34788
34789         * object.c (mono_new_object): Initialise the object
34790         synchronisation mutexes
34791
34792         * icall.c: System.Threading.Monitor internal calls
34793         
34794         * threads-pthread.h:
34795         * threads-pthread.c: System.Threading.Monitor internal calls
34796
34797         * threads-types.h: New file, includes the system-specific thread
34798         structures
34799         
34800         * threads-pthread-types.h:
34801         * threads-pthread-types.c: New files, handle pthread-specific
34802         synchronisation types
34803
34804         * threads-dummy-types.h: 
34805         * threads-dummy-types.c: New files of dummy support for
34806         thread-specific types
34807
34808         * metadata.c:
34809         * image.c:
34810         * pedump.c: include mono-endian.h not endian.h
34811         
34812         * Makefile.am: More threads files.
34813         Name mono-endian.h not endian.h
34814
34815 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
34816
34817         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
34818         stuff and implement a few more bits.
34819         * icall.c: a field needs to be dereferenced twice. Do not use the same
34820         name for two variables in the same scope.
34821         * image.c, image.h: cleanups.
34822
34823 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
34824
34825         * class.c (mono_class_metadata_init): bug fix: compute the right size
34826
34827 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
34828
34829         * icall.c: implemented some of the Reflection internalcalls.
34830         * image.c, image.h: start writing out the PE/COFF image.
34831         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
34832         that does the reverse than decode_blob_size ().
34833         * object.c: use mono_metadata_encode_value (). Move here
34834         temporary implementation of mono_string_to_utf8 ().
34835         * rawbuffer.c: make malloc_map static.
34836
34837 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34838
34839         * metadata.c: fix type comparison for arrays.
34840         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
34841         Added a couple of new classes to monodefaults.
34842         * icall.c: added a couple of Reflection-related internalcalls.
34843         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
34844         Added a byval_arg MonoType to MonoClass.
34845
34846 2001-09-28  Dick Porter  <dick@ximian.com>
34847
34848         * icall.c:
34849         * threads-pthread.h: 
34850         * threads-pthread.c: Implemented internal calls for
34851         LocalDataStoreSlot operations.  Applied mutexes around all shared
34852         data.  Reworked the thread creation and Start() operations to
34853         avoid a race condition.
34854         
34855         * threads-dummy.h:
34856         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
34857
34858 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
34859
34860         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
34861
34862 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
34863
34864         * class.c, loader.c: warn and return NULL instead of erroring out.
34865         * icall.c: added System.AppDomain::getCurDomain().
34866         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
34867
34868 2001-09-25  Dick Porter  <dick@ximian.com>
34869
34870         * threads-pthread.h:
34871         * threads-pthread.c: Implemented timed thread joining and added
34872         System.Threading.Thread::Join_internal internal call
34873
34874         * icall.c: Added System.Threading.Thread::Join_internal internal call
34875
34876         * threads-dummy.h:
34877         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
34878
34879 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
34880
34881         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
34882         mono_string_intern () to implement the semantics of the ldstr opcode
34883         and the interning of System.Strings.
34884         * icall.c: provide hooks to make String::IsIntern and String::Intern
34885         internalcalls.
34886
34887 2001-09-23  Dick Porter  <dick@ximian.com>
34888
34889         * threads-dummy.c: 
34890         * threads-dummy.h: New files of dummy threading routines
34891
34892         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
34893         support code based on system specifics
34894
34895         Rename PTHREAD_LIBS to THREAD_LIBS
34896         
34897 2001-09-23  Dick Porter  <dick@ximian.com>
34898
34899         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
34900         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
34901         internal calls.
34902         (mono_thread_init): Set up a Thread object instance to return when
34903         the main thread calls Thread.CurrentThread
34904         (mono_thread_cleanup): Wait for all subthreads to exit
34905
34906         * icall.c: New internal calls for System.Threading.Thread::Sleep
34907         (including Schedule) and CurrentThread
34908
34909         * threads.h: New file, to insulate thread-specific stuff from the
34910         rest of the code
34911
34912 2001-09-21  Dick Porter  <dick@ximian.com>
34913
34914         * threads-pthread.h: 
34915         * threads-pthread.c: New file, for handling pthreads-style
34916         threading support.  Start() now starts a new thread and executes
34917         the ThreadStart delegate instance.
34918
34919         * icall.c: Added the internalcall for
34920         System.Threading.Thread::Start_internal
34921
34922         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
34923
34924 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
34925
34926         * loader.c: work around the different signatures for delegates
34927         constructors csc generates in compiled code vs the ones compiled in mscorlib.
34928
34929 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
34930
34931         * class.h, class.c: add mono_class_get_field_from_name ().
34932         * *: Fix C comments and other ANSI C issues.
34933
34934 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
34935
34936         * endian.h, assembly.c: fix some endianness issues.
34937
34938 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
34939
34940         * loader.h, load.c: add delegate_class to mono_defaults.
34941         Handle runtime provided methods in mono_get_method ().
34942
34943 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
34944
34945         * loader.c (mono_get_method): use pinvoke for internal call
34946
34947         * icall.c: use pinvoke for internal call
34948
34949         * loader.c (method_from_memberref): set the method name
34950
34951 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
34952
34953         * metadata.c: help the compiler generate better code for
34954         mono_class_from_mono_type ().
34955
34956 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
34957
34958         * class.c (mono_class_metadata_init): delayed computing of the
34959         class size to mono_class_metadata_init ()
34960
34961 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
34962
34963         * class.c, class.h: add an interfaces member to MonoClass.
34964         * image.c, image.h: add assembly_name field to MonoImage
34965         from the assembly table.
34966         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
34967
34968 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
34969
34970         * class.c: Handle Array in mono_class_from_mono_type ().
34971         * metadata.c, pedump.c: some endian fixes.
34972
34973 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
34974
34975         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
34976         * metadata.c: fix small problem introduced with the latest commit.
34977
34978 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
34979
34980         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
34981         We don't need a MonoMetadata pointer anymore to compare signatures in
34982         mono_metadata_signature_equal (), update callers.
34983         Reduced memory usage an number of allocations for MonoMethodHeader and
34984         MonoMethodSignature.
34985
34986 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
34987
34988         * metadata.c: added compare for szarray.
34989
34990 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
34991
34992         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
34993         and add a couple more types to it and mono_defaults. Give an hint on
34994         classes that need implementing in our corlib and are referenced
34995         in mscorlib.
34996
34997 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
34998
34999         * class.h, class.c: keep track if a class is also an Enum.
35000         * loader.c: Implement a couple more types for use in libffi
35001         marshalling. Gives better diagnostics when failing to dlopen
35002         a library. Set method->klass for P/Invoke methods, too.
35003
35004 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
35005
35006         * class.c, class.h: add a MonoType this_arg to MonoClass that
35007         represents a pointer to an object of the class' type that
35008         can be used by the interpreter and later the type cache.
35009         Add best guess alignment info for valuetype objects.
35010
35011 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
35012
35013         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
35014         into MonoType: one less level of indirection and allocation and
35015         simplifies quite a bit of code. Added cache for MonoTypes that are
35016         used frequently, so that we don't need to allocate them all the time.
35017
35018 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
35019
35020         * class.c (mono_class_create_from_typedef): System.Enum is also a
35021         value type, although it does not derive from System.ValueType
35022         (maybe a bug in the ms compiler?)
35023
35024         * metadata.c (mono_type_size): return the right size for value types
35025
35026         * loader.c (mono_get_method): only initialize method header if not abstract
35027
35028         * class.c (mono_class_from_mono_type): use mono_default values. 
35029
35030 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
35031
35032         * *: use MonoClass pointers instead of <type_tokens>
35033         
35034         * class.h: new flag: metadata_inited.
35035
35036         * class.c (mono_class_metadata_init): impl.
35037         (mono_class_instance_size): impl.
35038         (mono_class_data_size): impl.
35039
35040 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35041
35042         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
35043         MonoClass now has the name and name_space fields. 
35044         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
35045         mono_get_method () takes and optional MonoClass as argument.
35046         Removed mono_typedef_from_name() and added mono_class_token_from_name()
35047         instead that takes advantage of a map from class names to typedef
35048         tokens in MonoImage.
35049
35050 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
35051
35052         * metadata.c: zero is not a valid alignment boundary.
35053         Merge MONO_TYPE_VOID in default decoding code.
35054
35055 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
35056
35057         * image.h: merged MonoMetadata into MonoImage
35058
35059         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
35060         identify the type of elements.
35061
35062 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
35063
35064         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
35065         * cil-coff.h: split MonoMSDOSHeader and add size info.
35066         * image.c: add some consistency checks.
35067         * metadata.c: fix row size computation: one programmer
35068         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
35069         add explanation for the locator routine.
35070         Fix decoding of size in method header.
35071         
35072 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
35073
35074         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
35075         (g_concat_dir_and_file): Bring g_concat_dir_and_file
35076         function from gnome-libs.  This uses the right path separator
35077         based on the OS, and also works around a bug in some systems where
35078         a double slash is not allowed. 
35079         (default_assembly_name_resolver): Use g_concat_dir_and_file
35080         (mono_assembly_open): ditto.
35081
35082 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
35083
35084         * metadata.c (mono_metadata_signature_equal): impl.
35085
35086         * *: void is now a realy MonoType (instead of using NULL)
35087         
35088         * metadata.c (do_mono_metadata_parse_type): use
35089         mono_metadata_parse_type to parse void value.
35090
35091 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
35092
35093         * metadata.c, metadata.h: in the signature and method header store
35094         only the space required for holding the loca vars and incoming arguments.
35095
35096 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
35097
35098         * metadata.c (do_mono_metadata_parse_type): treat void like any
35099         other type (instead of assigning NULL);
35100
35101 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
35102
35103         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
35104
35105 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
35106
35107         * image.c (do_mono_image_open): added a cache for arrays.
35108
35109 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35110
35111         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
35112         decode a single column from a row in a metadata table and changes
35113         to take advantage of it in the typedef locator (gives a nice speed up).
35114         Store offset info for function params.
35115
35116 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
35117
35118         * image.h (MONO_IMAGE_IS_CORLIB): removed 
35119
35120 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
35121
35122         * assembly.c: how could mono_assembly_close () had ever worked?
35123         * metadata.c, metadata.h: provide offset info for local vars.
35124         Implement mono_type_size () to take care of alignment as well
35125         as size (it was mono_field_type_size in cli/class.c before).
35126
35127 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
35128
35129         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
35130
35131         * assembly.h (CORLIB_NAME): set to corlib.dll
35132
35133         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
35134
35135 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35136
35137         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
35138         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
35139         tokentype.h: massive namespace cleanup.
35140
35141 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
35142
35143         * metadata.h, metadata.c: decode exception clauses when parsing method header.
35144
35145 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
35146
35147         * metadata.c (mono_metadata_free_type): added check for type !=
35148         NULL (void) before calling mono_metadata_free_type()
35149
35150 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
35151
35152         * metadata.h, row_indexes.h: added header with enumerations to use
35153         to index in the columns from tables in metadata and to decode coded
35154         tokens: we should start using this instead of embedding magic numbers
35155         all over the code.
35156
35157 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
35158
35159         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
35160         Move metadata_t info from cli_image_info_t to MonoImage, where
35161         it's easily accessible. Changed all the uses accordingly.
35162         Added the method and class caches to MonoImage.
35163         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
35164         and mono_metadata_decode_value () signature to be more consistent
35165         with the other parse functions (and simplify code). Taken advantage
35166         of zero-length array allocation with GCC. Removed reduntant (and
35167         wrong) MonoFieldType struct and use MonoParam instead. Changed
35168         mono_metadata_parse_field_type () to use common code for parsing.
35169         Added mono_metadata_typedef_from_field () and
35170         mono_metadata_typedef_from_method () to lookup a typedef index from a
35171         field or method token.
35172         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
35173
35174 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
35175
35176         * metadata.c (mono_metadata_parse_field_type): Implement. 
35177         (do_mono_metadata_parse_type): Split engine from
35178         mono_metadata_parse_type, so that we can create smaller structures
35179         for things that just have one pointer to the MonoType (look at
35180         the MonoFieldType)
35181
35182 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
35183
35184         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
35185         as Jan Gray found out, it is incorrect. 
35186
35187 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
35188
35189         * assembly.c: Implement asssembly loading.  This loads an image
35190         and loads all the referenced assemblies.  Come to think of it, we
35191         could always do lazy loading of the assemblies. 
35192
35193         * image.c (mono_image_open): Keep loaded images in a hashtable.
35194
35195         * image.h (MonoImage): Add reference count.
35196
35197 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
35198
35199         * assembly.c (mono_assembly_open): Keep track of the file name in
35200         case the assembly has no ASSEMBLY table.
35201
35202         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
35203         from get.c here.
35204
35205 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
35206
35207         * metadata.c, metadata.h: decode local vars in method header
35208         parse function. Change callers accordingly.
35209
35210 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
35211
35212         * metadata.h, cil-coff.h: protect against multiple inclusion.
35213         Added some new structures to hold information decoded from metadata:
35214         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
35215         and relevant decoding/free functions.
35216         * metadata.c: implement decoding functions. Add warning for out of bounds
35217         index in mono_metadata_locate(). Implement mono_get_method () to retreive
35218         all the info about a method signature and invocation. Remove check on
35219         uninitialized local var in parse_mh() and fix memory leak.
35220
35221 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
35222
35223         * metadata.h: More macros.
35224
35225         * tokentype.h: New file.
35226
35227 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
35228
35229         * assembly.c: added a consistency check and initialize
35230         some structures with g_new0().
35231         * metadata.c: fixed a couple more bugs in table size computation
35232         and add other checks for out-of bound access to metadata.
35233
35234 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
35235
35236         * metatada.c: fix bugs computing table sizes. Spew a
35237         warning when index in string heap is out of bounds.
35238
35239 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
35240
35241         * metadata.h: Add a couple of macros to manipulate tokens. 
35242
35243 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
35244
35245         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
35246         cli_section_tables).
35247
35248 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
35249
35250         * metadata.c (mono_metadata_user_string): New function, provides
35251         access to the UserString heap. 
35252
35253 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
35254
35255         * metadata.c: Add inline documentation.
35256
35257 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
35258
35259         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
35260         files. 
35261
35262 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
35263
35264         * typeattr.h: New file, TypeAttribute flags. 
35265
35266 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
35267
35268         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
35269         mono_assembly_ensure_section): Section loading code.
35270         (load_section_tables): Load the sections.
35271
35272         * mono/metadata/metadata.c (mono_metadata_locate_token,
35273         mono_metadata_locate): Functions to locate the information
35274         definition given a token or a table and an index.
35275         (mono_metadata_compute_table_bases): New.
35276         (compute_size): New function to compute the sizes of the various
35277         tables.
35278
35279         * mono/metadata/metadata.h: Finish listing the different index
35280         types. 
35281
35282         * mono/metadata/pedump.c: Improve to dump new information.
35283
35284 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
35285
35286         * mono/metadata/metadata.c: Entered all the tables matching
35287         Beta2. 
35288
35289         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
35290
35291
35292
35293