2009-09-15 Mark Probst <mark.probst@gmail.com>
[mono.git] / mono / metadata / ChangeLog
1 2009-09-15  Mark Probst  <mark.probst@gmail.com>
2
3         * class.c (mono_class_init): Always set an exception in a class if
4         vtable setup fails.  Fixes #538577.
5
6         * generic-sharing.c: Raise an exception if mono_class_vtable()
7         returns NULL.
8
9 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
10
11         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
12         methods of vtypes, as they could be incorrectly shared with static methods
13         taking an IntPtr argument.
14
15 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
16
17         * domain.c:
18         * object.c:
19         * class-internals.h: renamed waithandle_class to
20         manualresetevent_class.
21         * marshal.c: propagate the exception if a remoting BeginInvoke call
22         fails.
23
24 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
25
26         * object.c: Properly handle vtable failures.
27
28 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
29
30         * socket-io.c: Assert on vtable failure.
31
32         * mono-mlist.c: Assert on vtable failure.
33
34 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
35
36         * marshal.c: Assert on vtable failure.
37
38 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
39
40         * icall.c: Properly handle vtable failures.
41
42 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
43
44         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
45
46 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
47
48         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
49
50         * console-unix.c (do_console_cancel_event): Same.
51
52 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
53
54         * class-internals.h: Add mono_class_vtable_full function that allows control
55         if an exception should be raised or not.
56
57         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
58         to do what its documentation say, that is to return NULL and set exception_type on
59         failure.
60
61         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
62         and change the code to honor it.
63
64 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
65
66         * verify.c: Fix typo in error message.
67
68 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
69
70         * security-core-clr.c: Fix default_platform_check so it can run
71         the runtime coreclr tests (without an infinite recursion when
72         throwing an exception).
73
74 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
75
76         object.c (mono_delegate_ctor_with_method): Guard against null method.
77
78 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
79
80         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
81         that should be replaced with error handling later.
82
83 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
84
85         * marshal.c (mono_delegate_end_invoke): Fix warning.
86
87 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
88
89         * loader.c (mono_field_from_token): Properly handle invalid
90         dynamic tokens.
91
92 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
93
94         * pedump.c (verify_image_file): Skip types that can't be
95         decoded.
96
97 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
98
99         * verify.c: Look for recursive valuetypes only against the
100         type been initialized as this is a lot simpler and works.
101
102 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
103
104         * verify.c: Ensure that fields are properly loaded before
105         checking them.
106
107 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
108
109         * object.c (mono_object_get_virtual_method) : Call 
110           mono_cominterop_get_invoke if the object is a COM object.
111
112         Code is contributed under MIT/X11 license.
113
114 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
115
116         * verify.c: Check for recursive valuetype definitions.
117
118 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
119
120         Use inheritance-aware interface offsets. Inherited types use the same offsets
121         of their parents. This reduce offset duplication in case more than one type in
122         the inheritance tree explicitly implements the same interface.
123
124         This also removes a source of vtable bubbles found in #532409. An abstract type
125         isn't required to provide abstract methods to all interfaces it implements, which
126         resulted in a bubble with the previous scheme as the child would get a non-full
127         vtable from its parent. We fail all concrete types with vtable bubbles, so this
128         should be fixed.
129
130         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
131         it's expected to not cause any significant increase beyond that.
132
133         * class.c (setup_interface_offsets): Compute super class iface offsets
134         first to force sharing.
135
136         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
137         dumping only the relevant ones.
138
139         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
140         methods a new slot regardless if they belong to an interface or not. This allows
141         an inherited type to override the iface method separately from the class one.
142
143 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
144
145         * threadpool.c: make the Sleep() alertable to prevent delays exiting
146         applications that take less than 2s to execute.
147         Bug #524984 fixed.
148
149 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
150
151         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
152
153         * object.c (mono_get_runtime_callbacks): New helper function to return
154         the runtime callbacks.
155
156         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
157         mono_get_runtime_build_info () as the display name.
158         
159 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
160
161         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
162         argument, since NEWARR expects a native int. Fixes #481559.
163
164 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
165
166         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
167         against broken SRE methods.
168
169 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
170
171         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
172         a NULL variable. Abort early on failure.
173
174 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
175
176         * class.c (can_access_type): Fail visibility test for non nested
177         types with nested visibility.
178
179 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
180
181         * assembly.c (parse_public_key): Avoid allocating (and not 
182         freeing) the public key array when it's not requested by the 
183         caller.
184         * threads.c (mono_thread_manage, mono_thread_create_internal, 
185         ves_icall_System_Threading_Thread_Thread_internal): Free 
186         allocated memory on error.
187
188 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
189
190         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
191
192 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
193
194         * class.c (mono_class_setup_fields): Remove duplicated local variable
195         named gklass.
196         Rename gklass to gtd to reflect the fact that it points to the generic
197         type definition.
198         Remove the duplicated call to mono_class_setup_fields on gtd and move
199         the error check to the beginning.
200
201 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
202
203         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
204         Remove cruft of the previous patch.
205
206 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
207
208         * metadata-verify.c (verify_method_table): Check for abstract + final.
209         Fixes #534175.
210
211 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
212
213         * verify.c (verify_class_fields): Check for duplicate fields.
214
215 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
216
217         * metadata-verify.c: Verify the typeref table for duplicates.
218
219 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
220
221         This reverts r140936 and properly handles interfaces with static methods. The
222         right fix is to ensure vtables without bubles which is an easier to verify
223         constraint. We should avoid such special cases as of the reverted patch as those
224         only make the runtime more brittle.
225
226         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
227         static methods on interfaces.
228
229         * class.c (setup_interface_offsets): Use the number of virtual methods when
230         calculating interface offsets instead of the number of methods. This way we
231         avoid bubles on the layout.
232
233 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
234
235         * metadata-verify.c (verify_metadata_header): Some very smart
236         obfuscators like to add extra stream headers. Ignore them.
237
238 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
239
240         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
241         methods correctly.
242
243 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
244
245         * metadata-verify.c: Verify for duplicated types.
246
247 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
248
249         * metadata-verify.c (verify_typedef_table): Verify for nested types
250         without an entry on the nested class table.
251
252 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
253
254         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
255         <tom_hindle@sil.org>. Add locking around hash table accesses.
256
257 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
258
259         * verify.c (mono_verifier_verify_class): Verify all interface if
260         really are interfaces. Fixes #534184.
261
262 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
263
264         * pedump.c: Initialize all types during metadata validation so we report
265         errors only detected as part of class initialization.
266
267 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
268
269         * metadata-verify.c (verify_method_table): PInvoke requires method to
270         be static. Fixes #534189
271
272 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
273
274         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
275         being NULL.
276
277 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
278
279         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
280         for holes or bad methods. Fixes #525314.
281
282 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
283
284         * class.c (setup_interface_offsets): Don't allocate slot
285         for the same interface multiple times. This creates bubbles
286         that waster space and make vtable verification harder.
287
288         The same interface get a slot multiple times since we need
289         to get the closure of all implemented interfaces, which means
290         the same interface is reported multiple times.
291
292 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
293
294         * verify.c (mono_verifier_verify_class): Don't check the fields
295         of generic instances since the context on which they got expanded
296         might lead to false positives.
297
298         Such thing happens when a generic type is inflated in the context
299         of a generic method and the inflated type of a field turns into a
300         generic method argument, which causes the checking code to think
301         it's an invalid class when it's not.
302
303 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
304
305         * verify.c (mono_type_is_valid_in_context): Verify if type
306         is NULL and remove duplicate test.
307
308 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
309
310         * verify.c (mono_verifier_verify_class): Check fields for
311         invalid generic arguments.
312
313 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
314
315         * class.c (verify_class_overrides): Verify if for static
316         and non virtual methods.
317
318 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
319
320         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
321         Check for errors after retrieving the vtable.
322
323 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
324
325         * class.c (mono_class_setup_vtable_general): Verify
326         if method overrides are valid before processing them.
327
328 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
329
330         * marshal.c (mono_array_to_lparray): Fix minimal build with
331         cominterop disabled.
332
333         * marshal.c (mono_free_lparray): Same.
334
335 2009-08-21  Mark Probst  <mark.probst@gmail.com>
336
337         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
338         the hash function for the ares_htable.
339
340 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
341
342         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
343         bit for assembly flags. MS is ok with it but there is no spec anywhere
344         on its mean
345
346 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
347
348         * class.c (mono_class_create_from_typedef): Emit profiler events
349         in all cases.
350
351 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
352
353         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
354         Release memory on failure.
355
356 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
357
358         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
359         to the internal API.
360
361         * metadata.c (get_constraints): Use a single-linked table as we don't
362         traverse it backward. Fail and return FALSE if only of the contraint types
363         is not found.
364
365         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
366         to mono_metadata_load_generic_param_constraints except for having a return value.
367         This has to be done since the later is part of the public API.
368
369         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
370         and fail the type.
371
372         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
373         and fail the method.
374
375 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
376
377         * metadata-verify.c (is_valid_method_header): Add work-around to deal
378         with MS broken behavior of emmitting EH section sizes without the
379         header size added.
380
381 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
382
383         * metadata.c (mono_type_create_from_typespec): Don't allocate image
384         memory until we're sure that we'll need it. This avoids leaking for
385         broken types or duplicated instantiation.
386
387 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
388
389         * metadata-verify.c (is_valid_method_header): Fix stupid formating
390         mistake.
391
392 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
393
394         * metadata-verify.c (is_valid_method_header): Fix number of clauses
395         and expected size calculation.
396
397 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
398
399         * class.c (mono_class_get_field_idx): Add fixme for broken
400         behavior for types with multiple fields with the same name.
401         I would rather fix it, but have no idea on how to generate
402         such artifact for testing.
403
404 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
405
406         * verify.c (verifier_load_field): We should allow references to
407         fields to be made using the generic type definition. It's up to
408         the loader system to fail invalid ops.
409
410         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
411         are invalid.
412
413 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
414
415         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
416
417         * metadata-internals.h: Fix declaration of 
418         mono_metadata_interfaces_from_typedef_full.
419
420         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
421         heap_alloc_result parameter that controls if the result should be
422         g_malloc'd.
423
424         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
425         array be g_malloc'd and properly document this public API function.
426
427 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
428
429         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
430         remove METHOD_HEADER_TINY_FORMAT1.
431
432         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
433
434         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
435
436         Both spec and MS uses only 2 bits to enumerate the kind of header.
437         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
438         is superfluous, only used for tiny headers with odd code lengths.
439
440         This change also make sure that mono doesn't wronly interpret bit 2
441         of fat header flags, which is currently reserved.
442
443 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
444
445         * metadata.c (do_mono_metadata_parse_type): Do error
446         checking for element types. Don't abort if presented
447         with a broken type kind.
448
449 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
450
451         * metadata.c (mono_metadata_parse_method_signature_full):
452         Gracefully fail bad vararg signatures.
453
454 2009-08-18  Christian Hergert  <chris@dronelabs.com>
455
456         * profiler.c:
457         * class.c: Fix warnings for uninitialized variables.
458
459 2009-08-18  Christian Hergert  <chris@dronelabs.com>
460
461         * icall.c: Fix _NSGetEnviron method declaration warning.
462
463 2009-08-18  Christian Hergert  <chris@dronelabs.com>
464
465         * icall.c:
466         * reflection.c: Make bitwise checks explicit.
467
468 2009-08-18  Christian Hergert  <chris@dronelabs.com>
469
470         * debug-helpers.c:
471         * marshal.c: Fix printf warnings.
472
473 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
474
475         * reflection.c (encode_cattr_value): Fix a warning.
476
477 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
478
479         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
480         of array bounds.
481
482 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
483
484         * loader.c (mono_method_signature): Don't assert on broken
485         signature. Print a more useful error message.
486
487 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
488
489         * loader.c (mono_method_get_marshal_info): Assert if
490         signature is invalid. Bounds check stores to the
491         mspecs array;
492
493 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
494
495         * loader.c (field_from_memberref): Fix warning.
496
497 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
498
499         * loader.c (mono_method_get_param_names): Check if signature
500         is null. Don't store beyond the size of the name array.
501
502 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
503
504         * loader.c (mono_get_method_constrained): Check if signature
505         is null.
506
507 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
508
509         * loader.c (mono_loader_set_error_bad_image): Improve
510         error messages.
511
512 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
513
514         * loader.c (mono_get_method_full): Convert an assertion
515         into a loader error.
516
517 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
518
519         * class-internals.h, class.c: Better naming and documentation.
520
521 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
522
523         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
524         obj is NULL.
525
526 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
527
528         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
529         parsing fails.
530
531 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
532
533         * loader.c (mono_loader_error_prepare_exception): Handle missing field
534         errors with no class set.
535
536         * loader.c (field_from_memberref): If the field signature is of the wrong
537         type fail with a MissingFieldException instead of a BadImageException as
538         this is the behavior observed on MS. 
539
540 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
541
542         * loader.c (field_from_memberref): Don't crash if either the field
543         signature or the typespec class are invalid.
544
545 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
546
547         * verify.c (verifier_load_field): Don't allow field related
548         ops to reference fields on generic type definition.
549
550 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
551
552         * metadata-verify.c: Add new warning level for errors specified
553         by ECMA 335 but that MS ignores.
554
555         * metadata-verify.c (verify_method_table): Make compiler controled
556         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
557         this check is safe because the end result will only be some visibility
558         exceptions been thrown.
559
560 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
561
562         * verify.c (get_boxable_mono_type): Don't allow the
563         use of the generic type definition on boxed type positions.
564
565         Fixes #531237.
566
567 2009-08-14  Mark Probst  <mark.probst@gmail.com>
568
569         * threadpool.c: Make sure no cross-domain references remain in
570         ares_htable or the arrays that are thrown away when resizing.
571
572 2009-08-14  Mark Probst  <mark.probst@gmail.com>
573
574         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
575         list of classes for which we have to unregister reflection_info
576         with the GC and which are not in the namespace cache.
577
578         * reflection.c (mono_reflection_initialize_generic_parameter): Add
579         the class to the list.
580
581 2009-08-14  Mark Probst  <mark.probst@gmail.com>
582
583         * domain.c (mono_domain_free): Unregister the GC roots in
584         MonoDomain.
585
586 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
587
588         * reflection.c (mono_reflection_type_get_handle): Fix typo.
589
590 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
591
592         * class.c: Add mono_class_get_field_from_name_full which does
593         the same as mono_class_get_field_from_name but does check field
594         signature as well.
595
596         * class-internals.h: Export mono_class_get_field_from_name_full as
597         part of the internal API.
598
599         * loader.c (field_from_memberref): Search fields by name and signature
600         as it's valid to have two fields with same name but different types.
601
602         Fixes #528055.
603
604 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
605
606         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
607
608         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
609
610         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
611         System.Type.
612
613 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
614
615         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
616
617         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
618
619 2009-08-12  Mark Probst  <mark.probst@gmail.com>
620
621         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
622         to sgen-scan-object.h, which can be included and parameterized via
623         macros.
624
625         * Makefile.am: sgen-scan-object.h added.
626
627 2009-08-12  Mark Probst  <mark.probst@gmail.com>
628
629         * gc.c: #define GC_dont_gc if we're compiling with SGen.
630
631 2009-08-12  Mark Probst  <mark.probst@gmail.com>
632
633         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
634         before clearing a domain in the GC.
635
636 2009-08-12  Mark Probst  <mark.probst@gmail.com>
637
638         * exception.c (mono_exception_from_name_domain): Actually create
639         the exception in the specified domain.
640
641         * appdomain.c (mono_domain_create_appdomain_internal): Create the
642         OutOfMemoryException a bit later so that the domain is inialized
643         "enough" that it works.
644
645 2009-08-12  Mark Probst  <mark.probst@gmail.com>
646
647         * threads.c (thread_cleanup): Clean up the cached_culture_info
648         array to prevent cross-domain references.
649
650 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
651
652         * metadata.c: more documentation for MonoType accessors.
653
654 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
655
656         Fix incorrect size definitions where the tail array isn't a list
657         of pointers
658         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
659         define size.
660         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
661         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
662         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
663
664 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
665
666         * reflection.h:
667         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
668
669 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
670
671         * metadata.c:
672         * loader.c:
673         * metadata-internals.h:
674         * method-builder.c:
675         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
676
677 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
678
679         * cominterop.c:
680         * metadata.c:
681         * metadata.h:
682         * loader.c:
683         * marshal.c:
684         * reflection.c: #define for sizeof in MonoType and
685         MonoMethodSignature.
686
687 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
688
689         * domain.c:
690         * domain-internals.h: add and use #define's instead of sizeof()
691         for MonoJitInfo and MonoJitInfoTable.
692
693 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
694
695         * object.c:
696         * class.h: use #define instead of sizeof() for MonoRemoteClass.
697
698 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
699
700         * metadata.c:
701         * metadata.h:
702         * object.c:
703         * class-internals.h:
704         * generic-sharing.c:
705         * marshal.c: use a #define instead of sizeof() for a few
706         structures that use a zero-length array.
707
708 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
709
710         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
711         to handle inflated generic methods.
712
713         * appdomain.c: Bump corlib version.
714
715         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
716         instances.
717
718         * reflection.c (fixup_method): Same
719
720         * reflection.c (resolve_object): Same.
721
722         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
723         g_error and a decent message.
724
725 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
726
727         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
728         from the object because it could not yet be available globally
729         (it happens if the profiler tries to create a gchandle on the
730         MonoThread object of a thread that is still registering itself
731         with the runtime).
732
733 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
734
735         * reflection.c (mono_generic_class_get_object): Initialized the
736         managed type arguments array.
737
738         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
739
740         * appdomain.c: Bump corlib version.
741
742 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
743
744         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
745         #527902.
746
747 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
748
749         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
750         Avoid a crash if synch_cs is not set.
751         
752         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
753         Handle the case when the handle is 0.
754
755         * appdomain.c: Bump corlib version.
756
757 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
758
759         * reflection.c (mono_type_get_object): Fix a warning.
760
761 2009-08-01  Mark Probst  <mark.probst@gmail.com>
762
763         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
764         descriptor here.  We assume it's already been computed.
765
766         * generic-sharing.c (instantiate_other_info): Compute the GC
767         descriptor for info type MONO_RGCTX_INFO_KLASS.
768
769 2009-08-01  Mark Probst  <mark.probst@gmail.com>
770
771         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
772         type, so don't use MONO_OBJECT_SETREF to set a field.
773
774 2009-08-01  Mark Probst  <mark.probst@gmail.com>
775
776         * gc.c: We were missing one case where invoking a finalizer would
777         not reset the domain.  Also, in the finalizer thread loop, assert
778         that we're in the root domain.
779
780 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
781
782         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
783         if the type is not an array.
784
785 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
786
787         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
788         method bound to the declaring type of the method. Raise an exception
789         if the type is not a generic param.
790
791 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
792
793         * class.c (print_unimplemented_interface_method_info): Print the
794         full type name.
795
796         * class.c (mono_class_setup_vtable_general): When dealing with a
797         generic instance first check if the generic type definition is
798         not broken.
799
800 2009-02-11 Tom Hindke <tom_hindle@sil.org>
801
802         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
803
804         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
805
806         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
807
808         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
809
810         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
811
812         Code is contributed under MIT/X11 license
813
814 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
815
816         * verify.c: Fix naming of stelem and ldelem.
817
818 2009-07-30  Mark Probst  <mark.probst@gmail.com>
819
820         * generic-sharing.c: Replace the templates lock with the loader
821         lock because of very hard to resolve deadlock issues.
822
823 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
824
825         * icall.c (ves_icall_Type_GetMethodsByName): Use 
826         mono_class_get_vtable_size () instead of accessing klass->vtable_size
827         directly. Fixes #525338.
828
829         * class.c (mono_class_get_vtable_size): New helper function.
830
831         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
832         the field belongs to the type. Fixes #525733.
833
834 2009-07-30  Mark Probst  <mark.probst@gmail.com>
835
836         * sgen-gc.c: When we stop a thread and its stack top is not within
837         its allocated stack (because it's in an altstack signal handler),
838         restart it and stop it again, until it is.
839
840 2009-07-30  Mark Probst  <mark.probst@gmail.com>
841
842         * sgen-gc.c: Take a thread's stack top and registers from the
843         sigcontext in the suspend signal handler.
844
845         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
846         stuff to sgen-archdep.h.
847
848         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
849         caller, because have code in sgen-archdep.h to acquire that data.
850
851 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
852
853         * profiler.c, profiler.h, profiler-private.h:
854         Added support for keeping track of code chunks and buffers.
855
856 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
857
858         * metadata-verify.c: Fix endianness problems on decoding functions.
859         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
860
861 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
862
863         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
864         schema for vectors and one dimension SZARRAY.
865
866 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
867
868         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
869         schema for vectors and one dimension SZARRAY.
870
871 2009-07-27  Mark Probst  <mark.probst@gmail.com>
872
873         * icall-def.h, thread-types.h, threads.c: New separate icalls for
874         Interlocked.(Compare)Exchange with object arguments, which invoke
875         write barriers.
876
877 2009-07-26  Miguel de Icaza  <miguel@novell.com>
878
879         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
880         passed invalid arguments.   Fixes another crasher in the
881         Silverlight test suite.
882
883         * class.c (mono_class_array_element_size): Return 0 for the size
884         of the class;  This fixes the crasher exposed by :
885
886         typeof (void).MakeArrayType ();
887
888         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
889         if there is no method to dereference.    Put all the code that
890         depends on this inside the if (method) block.
891
892         This fixes the crasher exposed by Microsoft's Silvelright CLR test
893         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
894
895         With this change, we pass the test.
896         
897         * reflection.c (mono_reflection_sighelper_get_signature_local):
898         Only dereference the assembly if it has been set.    Fixes a
899         crasher exposed by #525328
900
901 2009-07-25  Mark Probst  <mark.probst@gmail.com>
902
903         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
904         don't perform the store in mono_gc_wbarrier_generic_nostore().
905         Remove the second argument (value), which is not needed.
906
907 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
908
909         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
910         the build.
911
912         * boehm-gc.c: Ditto.
913         
914 2009-07-24  Mark Probst  <mark.probst@gmail.com>
915
916         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
917         not perform the store itself.  Introduce
918         mono_gc_wbarrier_generic_nostore(), which is the same as
919         mono_gc_wbarrier_generic_store(), except it doesn't perform the
920         store.
921
922 2009-07-24  Mark Probst  <mark.probst@gmail.com>
923
924         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
925         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
926         we still need the memcpy().
927
928 2009-07-22  Mark Probst  <mark.probst@gmail.com>
929
930         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
931         so that big arrays are handled correctly.  Always use
932         safe_object_get_size() to calculate array object sizes, which
933         takes bounds into account.
934
935 2009-07-22  Mark Probst  <mark.probst@gmail.com>
936
937         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
938         GC descriptor is computed before we use it.
939
940 2009-07-22  Mark Probst  <mark.probst@gmail.com>
941
942         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
943         write barrier if necessary.
944
945 2009-07-22  Mark Probst  <mark.probst@gmail.com>
946
947         * icall-def.h, icall.c, thread-types.h: New separate icall for
948         VolatileWrite(object&,object) that uses a write barrier.
949
950         * console-unix.c, file-io.c, icall.c, threads.c: Use write
951         barriers in icalls which write to "ref" or "out" arguments.
952
953 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
954
955         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
956         handler in a separate icall, to reduce the size of the wrappers.
957
958 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
959
960         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
961
962 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
963
964         * metadata-verify.c (parse_field): Allow byref field.
965
966         * metadata-verify.c (parse_locals_signature): Allow byref locals.
967
968         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
969
970 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
971
972         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
973         Fixes #522784.
974
975 2009-07-20  Robert Jordan  <robertj@gmx.net>
976
977         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
978         Fix invalid IL in valuetype handling (STOBJ must push the
979         corresponding class). Fixes bug #523149.
980
981         Code is contributed under MIT/X11 license.
982
983 2009-07-20  Geoff Norton  <gnorton@novell.com>
984
985         * gc.c: Use proper semaphores where available on posix and darwin.
986
987 2009-07-19  Geoff Norton  <gnorton@novell.com>
988
989         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
990
991 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
992
993         * refletion.c (is_sre_usertype): Change name to is_usertype and
994         invert it's result so it returns true if the type is an user type
995         and not the opposite.
996
997         * reflection.c (is_*_type): Change all of those to use new macro
998         check_corlib_type_cached that cached the type lookup so we don't
999         need to do string comparisons all the type. Changed the signature
1000         to take a MonoClass instead.
1001
1002         * reflection.c: Change mono_image_create_token and resolve_object
1003         to use is_sre_* functions.
1004
1005 2009-07-18  Mark Probst  <mark.probst@gmail.com>
1006
1007         * sgen-gc.c: Check for writes to the stack in the managed
1008         wbarrier as well.
1009
1010 2009-07-18  Mark Probst  <mark.probst@gmail.com>
1011
1012         * sgen-gc.c: When a thread is unregistered, don't free its remsets
1013         but put them on a list which is processed with the other thread's
1014         remsets.
1015
1016 2009-07-18  Mark Probst  <mark.probst@gmail.com>
1017
1018         * sgen-gc.c: Fix and enable the internal allocator instead of
1019         using malloc/free (which causes deadlocks).
1020
1021 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
1022
1023         * refletion.c: Fix builds with SRE disabled by adding a minimal
1024         implementation of mono_reflection_type_get_handle.
1025
1026 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
1027
1028         * refletion.c: Make mono_reflection_type_get_handle non static.
1029
1030         * object-internals.h: Export mono_reflection_type_get_handle.
1031
1032         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
1033         unmanaged handle using mono_reflection_type_get_handle.
1034
1035 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
1036
1037         * refletion.c: Replace all reads of MonoReflectionType::type with
1038         calls to mono_reflection_type_get_handle. Only the functions that
1039         deal with constructing TypeBuilder::type have not been changed
1040         because they have to deal with NULL values.
1041
1042         This is a first step into supporting reflection types that don't
1043         map directly into their unmanaged counterpart.
1044
1045 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
1046
1047         * metadata-verify.c (parse_locals_signature): Don't complain
1048         on signature with zero locals since MS generates it and doesn't
1049         bother with.
1050
1051 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
1052
1053         * reflection.c (mono_image_get_array_token): Resolve return
1054         type using mono_reflection_type_get_handle.
1055
1056         * reflection.c (mono_image_get_array_token): Resolve array method
1057         parent type using mono_reflection_type_get_handle.
1058
1059 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
1060
1061         * reflection.c (mono_image_basic_init): Applied patch from
1062         <Dax@daxxfiles.net>. Set the public key token from the assembly
1063         builder. Fixes #518909.
1064
1065         * appdomain.c: Bump corlib version.
1066
1067 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
1068
1069         * class.c (mono_class_needs_cctor_run): Make this return false if
1070         the class has no cctor.
1071
1072 2009-07-13  Mark Probst  <mark.probst@gmail.com>
1073
1074         * sgen-gc.c: When the minor GC needs to allocate a new section,
1075         invoke the major GC afterwards.
1076
1077 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
1078
1079         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
1080           Applying the window_style field to the SHELLEXECUTEINFO struct.
1081
1082         Code is contributed under MIT/X11 license.
1083
1084 2009-07-13  Mark Probst  <mark.probst@gmail.com>
1085
1086         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
1087         locking earlier.  Fix it in the managed allocator by making sure
1088         that no thread is stopped there before the GC runs.  If we do stop
1089         a thread there, we restart it and let it run a but, until it stops
1090         somewhere else.
1091
1092         * gc-internal.h, gc.c: Function for getting the IP from a signal
1093         context via a function registered by mini.
1094
1095 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
1096
1097         * object-internals.h (MonoIntPtr): New structure describing a boxed
1098         IntPtr.
1099
1100         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
1101         returns. Fixes #519953.
1102
1103         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
1104
1105 2009-07-09  Mark Probst  <mark.probst@gmail.com>
1106
1107         * class-internals.h, generic-sharing.c: New RGCTX info type for
1108         getting a remoting invoke with check wrapper.
1109
1110 2009-07-07  Geoff Norton  <gnorton@novell.com>
1111
1112         * icall-def.h: Fix the enable-minimal build.
1113
1114 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
1115
1116         * object-internals.h: Add MonoReflectionDerivedType.
1117
1118         * reflection.c: Implement support for PointerType.
1119         Fixed tons of warnings.
1120
1121 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
1122
1123         * object-internals.h: Add MonoReflectionByRefType.
1124
1125         * reflection.c: Implement support for ByRefType.
1126
1127 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
1128
1129         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
1130
1131         * object-internals.h: Add MonoReflectionArrayType and
1132         mono_reflection_create_unmanaged_type.
1133
1134         * reflection.c: Implement support for ArrayType.
1135
1136 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
1137
1138         * metadata-verify.c (is_valid_method_header): Parse EH block
1139         flags correctly.
1140
1141 2009-07-03  Mark Probst  <mark.probst@gmail.com>
1142
1143         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
1144         processing the disappearing links, and process disappearing links
1145         in a loop until no new objects are copied.
1146
1147 2009-07-03  Mark Probst  <mark.probst@gmail.com>
1148
1149         * object.c (handle_enum): Invoke the write barrier when copying
1150         value type instances.
1151
1152         * sgen-gc.c: Register remsets for unmanaged write barriers only
1153         when the address written to is actually on the heap.  This makes
1154         set_value() in object.c work without requiring that the result be
1155         on the heap.
1156
1157 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
1158
1159         The runtime wrappers are all bound to a given type that must
1160         exist in the same image. For regular images we use the <Module>
1161         type, which is required to exist for all images.
1162
1163         The <Module> type can't be used for dynamic images because it
1164         might not exist at the time the wrapper is required, so we create
1165         a synthetic type to use instead.
1166
1167         The current code works because of the 2 stage setup of MonoClass,
1168         but once this is gone it will no longer work.
1169
1170         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
1171
1172         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
1173
1174         * object-internals.h: Export mono_image_set_wrappers_type icall
1175         as part of the internal API.
1176
1177         * marshal.c (get_wrapper_target_class): If the image is dynamic,
1178         use MonoDynamicImage::wrappers_type instead of the <Module> type.
1179
1180         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
1181         image wrappers_type to the provided value.
1182
1183 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
1184
1185         * appdomain.c (deregister_reflection_info_roots): No need
1186         to use the image lock here.
1187
1188 2009-07-02  Mark Probst  <mark.probst@gmail.com>
1189
1190         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
1191
1192 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
1193
1194         * threads.c: Store the thread start argument in a hash table instead of
1195         registering it as a root, as libgc doesn't support unregistering roots
1196         under windows, leading to 'too many root sets' errors when many threads
1197         are created.
1198
1199         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
1200         shutdown, they can still be referenced by the other dying objects.
1201         Fixes #514506.
1202
1203 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
1204
1205         * socket-io.c: DontLinger does not allow LingerOptions.
1206
1207 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
1208
1209         * metadata-verify.c: The spec doesn't mention that it's possible to add
1210         custom attribute to a generic parameter. Fixed.
1211
1212 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
1213
1214         * class.c (inflate_generic_type): Don't crash while trying to output a message
1215         on why we're aborting.
1216
1217 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1218
1219         * socket-io.c: DontLinger can take an int or a boolean too.
1220
1221 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
1222
1223         * gc.c: check for a null argument to SuppressFinalize () and
1224         ReRegisterForFinalize ().
1225
1226 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
1227
1228         * loader.c (method_from_methodspec): Call into the verifier to check
1229         the signature.
1230
1231         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
1232
1233         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
1234         part of the internal API.
1235
1236 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1237
1238         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
1239         the signature.
1240
1241         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
1242
1243         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
1244         part of the internal API.
1245
1246 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1247
1248         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
1249         the signature.
1250
1251         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
1252         blob verification.
1253
1254         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
1255         part of the internal API.
1256
1257 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1258
1259         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
1260         when doing basic verification. 
1261
1262         This check must be done since the runtime peeks into signatures in much
1263         more places than it does decoding so it makes sense to ensure that all
1264         pointers to blob objects are well formed.
1265
1266 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1267
1268         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
1269         Use proper overflow dectection. Fix usage of it.
1270
1271 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
1272
1273         * loader.c (field_from_memberref): Call into the verifier to check
1274         the signature.
1275
1276         * loader.c (mono_method_get_signature_full): Same.
1277
1278         * loader.c (method_from_memberref): Same.
1279
1280         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
1281
1282         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
1283         part of the internal API.
1284
1285 2009-06-25  Mark Probst  <mark.probst@gmail.com>
1286
1287         * threadpool.c (mono_thread_pool_add): If the domain is unloading
1288         or unloaded, still return an AsyncResult, but don't add it to the
1289         threadpool.
1290
1291 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1292
1293         * threads.c: fix missing colon when DEBUG is defined.
1294
1295 2009-06-25  Mark Probst  <mark.probst@gmail.com>
1296
1297         * threadpool.c: Don't add new calls to a threadpool if the domain
1298         of the call is unloading or unloaded.  When dequeuing a job, null
1299         the reference in the queue.
1300
1301 2009-06-25  Mark Probst  <mark.probst@gmail.com>
1302
1303         * sgen-gc.c (null_link_in_range): Add the dislink for the old
1304         generation if an object was moved.
1305
1306 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
1307
1308         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
1309           parameters of type SAFEARRAY[VARIANT].
1310
1311         * reflection.c (encode_marshal_blob): Properly generate element type
1312           (SafeArraySubType marshal attribute option).
1313
1314         Code is contributed under MIT/X11 license.
1315
1316 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
1317
1318         * reflection.c: in mono_method_clear_object () really ensure all the
1319         objects are removed.
1320
1321 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1322
1323         * loader.c (mono_method_signature): Call into the verifier to check
1324         the method signature.
1325
1326         * metadata-verify.c (verify_method_table): Move signature verification
1327         to verify_method_table_full.
1328
1329         * metadata-verify.c: Add mono_verifier_verify_method_signature.
1330
1331         * verify-internals.h: Export mono_verifier_verify_method_signature as
1332         part of the internal API.
1333
1334 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1335
1336         * loader.c (mono_method_get_header): Call into the verifier to
1337         check the method header.
1338
1339         * metadata-verify.c: Add mono_verifier_verify_method_header.
1340
1341         * verify-internals.h: Export mono_verifier_verify_method_header as
1342         part of the internal API.
1343
1344 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1345
1346         * class.c (mono_class_find_enum_basetype): Call into the verifier to
1347         check the field signature. Replace an assert with an explicit check.
1348
1349         * class.c (mono_class_setup_fields): Call into the verifier to check
1350         the field signature.
1351
1352         * metadata-verify.c: Add mono_verifier_verify_field_signature.
1353
1354         * verify-internals.h: Export mono_verifier_verify_field_signature as
1355         part of the internal API.
1356
1357 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1358
1359         * class.c (mono_class_find_enum_basetype): Simplify this function
1360         by moving code outside of the loop and not decoding static fields.
1361
1362 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
1363
1364         * metadata-verify.c (verify_typedef_table): Check the extends
1365         token here. Move to here a flags check from verify_typedef_table_full.
1366
1367 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
1368
1369         * metadata-verify.c (is_valid_method_header): Fix a warning.
1370
1371         * metadata-internals.h (MonoImage): Remove the unused 
1372         static_rgctx_invoke_wrapper_cache.
1373
1374         * image.c marshal.c: Ditto.
1375
1376 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
1377
1378         * image.c (do_mono_image_load): Enable table data verification.
1379
1380 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
1381
1382         * metadata-verify.c (is_valid_constant): Fix nullref check.
1383
1384 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
1385
1386         * metadata-verify.c (is_valid_constant): Fix string bounds check.
1387
1388 2009-06-22  Mark Probst  <mark.probst@gmail.com>
1389
1390         * sgen-gc.c: Managed allocation with pthreads TLS.
1391
1392         * threads.c, threads-types.h: Functions for the JIT to tell the
1393         runtime whether it supports the MONO_TLS opcode.
1394
1395 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
1396
1397         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
1398         without methods.
1399
1400 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
1401
1402         * metadata-verify.c (is_valid_constant): Fix the string length check.
1403         Use safe overflow checking. Add decent error messages.
1404
1405 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
1406
1407         * metadata-verify.c: Move remaininh blob checks to the offline
1408         verification path.
1409
1410 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
1411
1412         * metadata-verify.c: Move more blob checks to the offline verification
1413         path.
1414
1415 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
1416
1417         * object-internals.h : Adding interrupt_on_stop field.
1418
1419         * threads.c (mono_thread_request_interruption) : On Windows exit the
1420           thread if interrupt_on_stop is set.
1421
1422         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
1423          Removing old interrupt logic and setting the interrupt_on_stop for the
1424          thread when calling accept.
1425
1426         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
1427          setting the interrupt_on_stop for the thread when calling accept.
1428
1429         Contributed under MIT/X11 license.
1430
1431 2009-06-20  Martin Baulig  <martin@ximian.com>
1432
1433         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
1434
1435 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
1436
1437         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
1438         running in no-exec mode.
1439
1440 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
1441
1442         * metadata-verify.c (verify_method_table): Move header
1443         checking to verify_method_table_full.
1444
1445         * metata-verify.c (mono_verifier_verify_full_table_data):
1446         Call verify_method_table_full.
1447
1448 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
1449
1450         * metadata-verify.c (verify_field_table): Move signature
1451         checking to verify_field_table_full.
1452
1453         * metata-verify.c (mono_verifier_verify_full_table_data):
1454         Call verify_field_table_full.
1455
1456 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
1457
1458         * metadata-verify.c (verify_typedef_table): Move remaining
1459         stuff to verify_typedef_table_full.
1460
1461 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
1462
1463         * metadata-verify.c: Kill is_corlib from VerifyContext.
1464         It is only used by the offline mode.
1465         So we better remove it from the runtime path.
1466
1467 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
1468
1469         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
1470         function that perform the offline metadata verification steps.
1471
1472         * metadata-verify.c (verify_typedef_table): Move some checks to
1473         verify_typedef_table_full and make it been called by new function
1474         mono_verifier_verify_full_table_data.
1475
1476         * pedump.c: Call mono_verifier_verify_full_table_data.
1477
1478         * verify-internals.h: Export mono_verifier_verify_full_table_data as
1479         part of the internal API.
1480
1481 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
1482
1483         * metadata-verify.c (typedef_is_system_object): Fix System.Object
1484         check.
1485
1486         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
1487         flags bits. SupportLastError was confused as bit 7 instead of 6.
1488
1489         * metadata-verify.c (verify_implmap_table): Fix import scope verification
1490         to check against the module ref table instead of module.
1491
1492         * metadata-verify.c (verify_implmap_table): Fix corlib check.
1493
1494         * pedump.c: Call mono_image_load_names.
1495
1496 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
1497
1498         * image.c: Extract mono_image_load_names from do_mono_image_load.
1499
1500         * metadata-internals.h: Export mono_image_load_names as part of
1501         the internal API.
1502         
1503 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
1504
1505         * metadata.c (mono_metadata_cleanup): Free the generic method cache
1506         first, as it could reference data in the other caches.
1507
1508 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
1509
1510         * metadata-verify.c: Finished with method header verification.
1511
1512 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
1513
1514         * metadata-verify.c: Added more header verification code.
1515         Now only EH clauses are missing.
1516
1517 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
1518
1519         * marshal.c (get_runtime_invoke_type): Don't share primitive types
1520         for return values.
1521
1522 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
1523
1524         * metadata-verify.c: Initial method header verification.
1525
1526 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
1527
1528         * metadata-verify.c (verify_import_table): The IAT contents
1529         might end been patched by the windows DL when running with
1530         coree enabled.
1531
1532 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
1533
1534         * class.c (mono_class_from_typeref): If the enclosing type is not
1535         found return null instead of crashing. Fixes #508487.
1536
1537 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
1538
1539         * normalization-tables.h : updated to the latest unicode charcter
1540           data.
1541         * appdomain.c : bump corlib version.
1542
1543 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
1544
1545         * class.c (mono_class_from_name): Fix support for assembly references
1546         in the EXPORTEDTYPE table. Fixes #511704.
1547
1548 2009-06-13  Geoff Norton  <gnorton@novell.com>
1549
1550         * domain.c: Ensure that mono_domain_assembly_open actually opens the
1551         assembly in the target domain.
1552
1553 2009-06-12  Robert Jordan  <robertj@gmx.net>
1554
1555         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
1556         because "this" of the managed signature has become an
1557         ordinary parameter in the unmanaged signature.
1558
1559 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
1560
1561         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
1562         field for owner-less generic containers.
1563
1564         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
1565         image field of the owner-less generic containers created here.
1566
1567         * metadata.c (mono_metadata_load_generic_params): Ditto, the
1568         contain is ownerless until the caller sets its owner.
1569
1570         * metadata.c (type_in_image): Handle owner-less generic containers
1571         correctly.
1572         
1573 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
1574
1575         * image.c (mono_image_close): Support debug_assembly_unload for
1576         dynamic images too.
1577
1578 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
1579
1580         * class.c: Fix some typos in comments.
1581
1582 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
1583
1584         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
1585
1586         * threads.c (mono_thread_execute_interruption): Avoid creating the
1587         abort exception object while holding the synch_cs lock.
1588
1589 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
1590
1591         * metadata-verify.c: Verify basic cattr content.
1592
1593 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
1594
1595         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
1596         nested types.
1597         
1598         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
1599         support for nested types. Fixes #511704.
1600
1601 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
1602
1603         * metadata-verify.c: Verify methodspec signatures.
1604
1605 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
1606
1607         * metadata-verify.c: Verify typespec signatures.
1608
1609 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
1610
1611         * metadata.c (free_inflated_method): Call 
1612         mono_marshal_free_inflated_wrappers (), which was missed earlier.
1613
1614 2009-06-08  Miguel de Icaza  <miguel@novell.com>
1615
1616         * mono-config.c: Small change to report the PPC64/ILP32 model.
1617
1618 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
1619
1620         * metadata-verify.c (parse_type): Check szarray.
1621
1622 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
1623
1624         * metadata-verify.c (parse_type): Check fnptr.
1625
1626 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
1627
1628         * metadata-verify.c (parse_type): Check generic instances.
1629
1630 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
1631
1632         * metadata-verify.c (parse_type): Check array shape.
1633
1634 2009-06-05  Robert Jordan  <robertj@gmx.net>
1635
1636         * class.c (mono_class_create_from_typedef): Check only for
1637         mscorlib's System.Array.
1638
1639 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
1640
1641         * metadata-verify.c (parse_type): Check pointer, class/valuetype
1642         and generic params. 
1643
1644         * metadata-verify.c (parse_field): Check the signature.
1645
1646 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
1647
1648         * metadata-verify.c: Implement locals signature check.
1649
1650 2009-06-04  Marek Safar  <marek.safar@gmail.com>
1651
1652         * domain.c: Add .NET 4.0 Beta 1 version.
1653
1654 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
1655
1656         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
1657           For QueryInterface on CCWs consider the base class
1658           interfaces as well.
1659
1660         Code is contributed under MIT/X11 license.
1661
1662 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
1663
1664         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
1665
1666         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
1667         used.
1668
1669         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
1670         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
1671
1672         * generic-sharing.c (inflate_other_data): Ditto.
1673         
1674 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
1675
1676         * metadata-verify.c: Implement property signature check.
1677
1678 2009-06-04  Mark Probst  <mark.probst@gmail.com>
1679
1680         * sgen-gc.h: Register saving support for PPC.
1681
1682 2009-06-04  Mark Probst  <mark.probst@gmail.com>
1683
1684         * sgen-gc.c: Fixed a pthread TLS screwup.
1685
1686 2009-06-04  Mark Probst  <mark.probst@gmail.com>
1687
1688         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
1689         supported.
1690
1691 2009-06-04  Mark Probst  <mark.probst@gmail.com>
1692
1693         * sgen-gc.c: Disable TLA and managed allocation if the __thread
1694         keyword is not supported.
1695
1696 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
1697
1698         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
1699         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
1700         the inflated method is freed. Fixes #508389.
1701
1702         The code is contributed under the MIT/X11 license.
1703         
1704 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
1705
1706         * marshal.c (get_wrapper_target_class): New helper function.
1707         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
1708         the <Module> class of the image. Fixes #509049.
1709
1710 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
1711
1712         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
1713         Check if the thread was interrupted and proccess it straight away.
1714         Makes abortion much more responsive.
1715
1716 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
1717
1718         * threads.c (mono_thread_execute_interruption): Use atomic cas with
1719         MonoThread::interruption_requested to match it's counterpart.
1720
1721         Fixes a hang in abort-stress-1 on a 2 core x86.
1722
1723         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
1724         Fix warning.
1725
1726 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
1727
1728         Change MonoImage::name_cache to be protected by the image lock
1729         instead of the loader lock.
1730
1731         * appdomain.c (deregister_reflection_info_roots): Protect access
1732         to name_cache.
1733
1734         * class.c (mono_image_init_name_cache): Change from the loader lock
1735         to the image lock. Check if the cache wasn't already created.
1736
1737         * class.c: Change from the loader to the image lock.
1738
1739         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
1740         the code to hold the image lock while iterating over name_cache and
1741         not go into mono_array_new holding it.
1742
1743         * metadata-internals.h: Add a comment about this change.
1744
1745 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
1746
1747         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
1748         Under the 2.0 profile raise the loader error.
1749
1750         Fixes #508532.
1751
1752 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
1753
1754         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
1755         of ldind opcode for generic instances so we don't fail for direct wrappers.
1756         This only affect direct calls.
1757
1758 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
1759
1760         * reflection.c (create_dynamic_mono_image): Fix warnings.
1761
1762         * generic-sharing.c (other_info_equal): Ditto.
1763         
1764 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
1765
1766         * metadata-verify.c: Implement field signature check.
1767
1768 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
1769
1770         * metadata-verify.c: Implement standalone signature check.
1771
1772 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
1773
1774         * metadata-verify.c: Implement methodref signature check.
1775
1776 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
1777
1778         * object-internals.h (MonoRuntimeCallbacks): New structure containing
1779         callbacks supplied by the runtime.
1780
1781         * object.c (mono_install_callbacks): New internal function to install
1782         the callbacks.
1783
1784         * object.c (mono_create_ftnptr): Move the implementation of this to
1785         mini/.
1786
1787         * object.c (mono_get_addr_from_ftnptr): Ditto.  
1788
1789 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
1790
1791         * metadata-verify.c (parse_return_type): Proper byref check.
1792         * metadata-verify.c (is_valid_method_signature): Check for zero arity
1793         generic signatures and method params.
1794
1795 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
1796
1797         * metadata-verify.c (decode_signature_header): Fix bounds check.
1798
1799         * metadata-verify.c (parse_custom_mods): Check custom mods.
1800
1801         * metadata-verify.c (parse_type): Do initial basic verification
1802         of valid values.
1803         
1804         * metadata-verify.c (is_valid_method_signature): Parse the generic
1805         param count.
1806
1807 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
1808
1809         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
1810         discarded based on their most specific definition so we set the method_slots
1811         array before checking if the method is acceptable or not.
1812
1813         Fixes #506757.
1814
1815 2009-05-26  Mark Probst  <mark.probst@gmail.com>
1816
1817         * icall.c: Free the old array when resizing a mono_ptr_array.
1818
1819 2009-05-26  Mark Probst  <mark.probst@gmail.com>
1820
1821         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
1822         for the hashes whose keys are managed objects.
1823
1824 2009-05-26  Mark Probst  <mark.probst@gmail.com>
1825
1826         * object-internals.h, threads.c: Set the execution context on
1827         thread start here, not in corlib.
1828
1829         * appdomain.c: Bump corlib version.
1830
1831 2009-05-27  Martin Baulig  <martin@ximian.com>
1832
1833         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
1834         if `_mono_debug_using_mono_debugger' is set to make things work
1835         properly when embedding Mono.
1836
1837 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
1838
1839         * class.c (mono_class_setup_fields): Don't mark simd types as having
1840         16 bytes alignment as the whole runtime doesn't support.
1841
1842 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
1843
1844         * metadata-verify.c (safe_read): Use endian safe read macros.
1845
1846 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
1847
1848         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
1849         it is read-only when using full aot.
1850
1851 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
1852
1853         * metadata-verify.c (is_valid_method_signature): Verify parts
1854         of the return type. Provide an error message in case of failure.
1855
1856 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
1857
1858         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
1859
1860 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
1861
1862         * metadata-verify.c: Include the size prefix in the bounds check.
1863
1864 2009-05-22  Miguel de Icaza  <miguel@novell.com>
1865
1866         * icall.c: Remove warnings.
1867
1868         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
1869         prevent auto-detection based on GCC defines.
1870
1871         Add PS3
1872
1873         * metadata-verify.c: Do not include signal.h
1874
1875         * generic-sharing.c, marshal.c: Add returns to avoid some warning
1876         messages.  Not sure why the g_assert_not_reached is not enough to
1877         quiet the compiler.
1878         
1879
1880         * appdomain.c: Remove code that is not used when
1881         DISABLE_SHADOW_COPY is set.
1882
1883         * image.c: use g_getenv
1884
1885 2009-05-21  Miguel de Icaza  <miguel@novell.com>
1886
1887         * reflection.c: Remove code that it not used with
1888         DISABLE_REFLECTION_EMIT is defined.
1889
1890 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
1891
1892         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
1893         invoke wrappers.
1894
1895 2009-05-20  Miguel de Icaza  <miguel@novell.com>
1896
1897         * socket-io.c
1898         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
1899         the ifdef here and instead put that on io-layer
1900
1901 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
1902
1903         * metadata-verify.c: Verify the generic param constraint table.
1904
1905 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
1906
1907         * metadata-verify.c (verify_generic_param_table): Fix
1908         thinko on the valid flags bits for generic params.
1909
1910 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
1911
1912         * metadata-verify.c: Verify the methodspec table.
1913
1914 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
1915
1916         * metadata-verify.c: Verify the generic param table.
1917
1918 2009-05-19  Mark Probst  <mark.probst@gmail.com>
1919
1920         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
1921
1922 2009-05-19  Mark Probst  <mark.probst@gmail.com>
1923
1924         * sgen-gc.c: Use generation enum more consistently and use the
1925         correct generation in mono_gc_register_for_finalization().
1926
1927 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
1928
1929         * metadata-verify.c: Verify the nested class table.
1930
1931 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
1932
1933         * metadata-verify.c: Verify the manifest resource table.
1934
1935 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
1936
1937         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
1938
1939 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
1940
1941         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
1942         wrappers, this is now done in the JIT.
1943         
1944         * class.c (mono_set_generic_sharing_supported): New internal function.
1945         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
1946
1947 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
1948
1949         * metadata-verify.c: Verify the exported type table.
1950
1951 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
1952
1953         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
1954
1955 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
1956
1957         * metadata-verify.c: Verify the file table.
1958
1959 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
1960
1961         * metadata-verify.c (verify_assembly_table): Fix an error message.
1962
1963         * metadata-verify.c: Verify the assemblyref table.
1964
1965 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
1966
1967         * metadata-verify.c (verify_assembly_table): Fix the valid
1968         bits mask for flags.
1969
1970 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
1971
1972         * debug-helpers.c (mono_method_full_name): Print generic parameters of
1973         generic methods as well.
1974
1975 2009-05-15  Geoff Norton  <gnorton@novell.com>
1976
1977         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
1978         use-case and is significantly more performant than the wapi layer.
1979
1980 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
1981
1982         * metadata-verify.c: Verify the assembly table.
1983
1984 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
1985
1986         * metadata-verify.c: Fix rows limit check.
1987
1988 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
1989
1990         * metadata-verify.c: Verify the fieldrva table.
1991
1992 2009-05-13  Mark Probst  <mark.probst@gmail.com>
1993
1994         * sgen.c: Speed up weak links and finalizers by grouping them by
1995         generation.
1996
1997 2009-05-13  Mark Probst  <mark.probst@gmail.com>
1998
1999         * marshal.c (delegate_hash_table_add): When overwriting an entry,
2000         free the old GCHandle (only applies to SGen).
2001
2002 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
2003
2004         * loader.c (mono_get_method_from_token): Avoid the expensive call to
2005         mono_metadata_load_generic_params () for non-generic methods.
2006
2007 2009-05-12  Mark Probst  <mark.probst@gmail.com>
2008
2009         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
2010         New function for returning a monitor's weak link if it has one.
2011
2012         * sgen-gc.c: Remove an object's monitor's weak link (if it has
2013         one) when clearing a domain.  These can still be around because
2014         the object might not have been collected.
2015
2016 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
2017
2018         * gc.c: Fix a warning.
2019
2020 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
2021
2022         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
2023         prevous wait that resulted in a deadlock on Windows when initializing
2024         the runtime form DllMain. Also results in improved startup time.
2025         (finalizer_thread): Get rid of thread_started_event.
2026         * threads.c, threads-types.h (mono_thread_create_internal): Return the
2027         resulting MonoThread.
2028
2029         Contributed under MIT/X11 license.
2030
2031 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
2032
2033         * metadata-verify.c: Verify the implmap table.
2034         Don't require that #US and #Strings be present.
2035
2036 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
2037
2038         * security-core-clr.c: Delegate checks are done at creation time,
2039         not a invocation time. Fix exception for Telerik Silverlight demo
2040
2041 2009-05-11  Mark Probst  <mark.probst@gmail.com>
2042
2043         * sgen-gc.c (need_remove_object_for_domain): Remove the special
2044         case for the Thread class.
2045
2046         * threads.c: Do clean-up of abort exception/state in
2047         thread_cleanup() instead of Thread.free_internal().  Also clean up
2048         current_appcontext.  The reason we have to do that is because
2049         those references might point into another domain and if that
2050         domain is unloaded before the thread is finalized, they point to
2051         invalid data.
2052
2053 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
2054
2055         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
2056         stub signatures.
2057         
2058         Contributed unter MIT/X11 license.
2059
2060 2009-05-09  Miguel de Icaza  <miguel@novell.com>
2061
2062         * verify.c, metadata-verifier.c: Add support for disabling the
2063         verifier in some builds.
2064
2065         [ Sorry, my previous commit accidentally commited some work in
2066         progress ]
2067
2068 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
2069
2070         * class.c (mono_class_setup_fields): Set class->field.first for
2071         generic instances.
2072
2073 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
2074
2075         * metadata-verify.c: Verify the typespec table.
2076
2077 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
2078
2079         * metadata-verify.c: Verify the module table.
2080
2081 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
2082
2083         * metadata-verify.c: Verify the methodimpl table.
2084
2085 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
2086
2087         * metadata-verify.c: Verify the property table.
2088
2089 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
2090
2091         * debug-helpers.c (mono_method_desc_match): Add support for generic
2092         glob patterns.
2093
2094 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
2095
2096         * metadata-verify.c: Verify the propertymap table.
2097
2098 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
2099
2100         * metadata-verify.c: Verify the event table.
2101
2102         * metadata-verify.c (search_sorted_table): Fix offset
2103         calculation.
2104
2105 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
2106
2107         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
2108
2109 2009-05-01  Mark Probst  <mark.probst@gmail.com>
2110
2111         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
2112         because mono_delegate_free_ftnptr() needs it.
2113
2114 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2115
2116         * metadata-verify.c: Verify the eventmap table.
2117
2118 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2119
2120         * metadata-verify.c: Verify the standalonesig table.
2121
2122 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2123
2124         * metadata-verify.c: Verify the field layout table.
2125
2126 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2127
2128         * class.c (mono_type_get_name_recurse): Don't crash
2129         for ownerless generic params.
2130
2131         * debug-helpers.c (mono_type_get_desc): Correct the format
2132         for ownerless generic params.
2133
2134 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2135
2136         * metadata-verify.c: Verify the class layout table.
2137
2138 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2139
2140         * metadata-verify.c: Verify the decl security table.
2141
2142 2009-04-30  Mark Probst  <mark.probst@gmail.com>
2143
2144         * domain.c (mono_domain_set_internal_with_options): Don't do
2145         anything if the old domain is the same as the old one.  Fixes
2146         #499326.
2147
2148 2009-04-30  Mark Probst  <mark.probst@gmail.com>
2149
2150         * appdomain.c: Deregister the reflection_info roots when unloading
2151         a domain.
2152
2153         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
2154         memory allocated by a domain and frees its disappearing links.
2155
2156         * boehm-gc.c, null-gc.c: Empty implementation of
2157         mono_gc_clear_domain().
2158
2159 2009-04-30  Mark Probst  <mark.probst@gmail.com>
2160
2161         * appdomain.c (clear_cached_vtable): Free the static fields memory
2162         block.
2163
2164 2009-04-30  Mark Probst  <mark.probst@gmail.com>
2165
2166         * gc.c: Set the correct domain when invoking finalizers.
2167
2168         * appdomain.c: Set the correct domain when creating threads.
2169
2170 2009-04-30  Mark Probst  <mark.probst@gmail.com>
2171
2172         * sgen-gc.c: Fix skip size for vectors.
2173
2174 2009-05-03  Martin Baulig  <martin@ximian.com>
2175
2176         * mono-debug-debugger.c
2177         (mono_debugger_check_breakpoints): Check class init handlers even
2178         if we don't have any method load handers.
2179
2180 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
2181
2182         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
2183         returning refonly assemblies if refonly is FALSE. Fixes #499013.
2184
2185 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
2186
2187         * metadata-verify.c: Verify the field marshal table.
2188
2189 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
2190
2191         * metadata-verify.c: Verify the custom attribute table.
2192
2193 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
2194
2195         * metadata-verify.c: Verify the constant table.
2196
2197 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
2198
2199         * metadata-verify.c: Verify the memberef table.
2200
2201 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
2202
2203         * metadata-verify.c (get_coded_index_token): Remove
2204         dead argument.
2205
2206 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
2207
2208         * metadata-verify.c: Verify the interfaceimpl table.
2209
2210 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
2211
2212         * verify.c: Improve error message.
2213
2214         * debug-helpers.c (mono_type_get_desc): Harden the code that
2215         deals with VAR and MVAR.
2216
2217 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
2218
2219         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
2220         part of #498692.
2221
2222 2009-04-23 Tom Hindle <tom_hindle@sil.org>
2223
2224         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
2225         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
2226
2227 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
2228
2229         * security-core-clr.c: Avoid redundant checks for platform code, 
2230         e.g. check for method and for class (very common) and check
2231         for class and outer class (less common)...
2232
2233 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
2234
2235         * reflection.c: Avoid returning random cattrs for synthetic methods.
2236         Fixes #498545.
2237
2238 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
2239
2240         * assembly.c: assemblies in the GAC should never be shadow-copied.
2241
2242 2009-04-26  Mark Probst  <mark.probst@gmail.com>
2243
2244         * domain.c, domain-internals.h: Disable
2245         track_resurrection_{objects,handles}_hash in MonoDomain if using
2246         SGen.
2247
2248 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
2249
2250         * metadata-verify.c: Verify the param table.
2251
2252 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
2253
2254         * metadata-verify.c (verify_typedef_table): Range check FieldList and
2255         MethodList.
2256
2257         * metadata-verify.c (verify_method_table): Proper check the ParamList
2258         field.
2259
2260 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
2261
2262         * metadata-verify.c (verify_method_table): Check for runtime
2263         implemented functions such as delegate .ctors. Remove spurious
2264         printf.
2265         
2266 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
2267
2268         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
2269
2270 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
2271
2272         Don't allocate MonoGenericInfo for ownerless generic params.
2273         * class-internals.h (MonoGenericParam::info): Move field to ...
2274         (MonoGenericParamFull): ... this.  New struct.
2275         (MonoGenericContainer::type_params): Change type to
2276         MonoGenericParamFull.
2277         (MonoGenericParam, MonoGenericContainer): Update accessors.
2278         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
2279         'info' field for ownerless generic param.
2280         (mono_metadata_load_generic_params): Update to changes.
2281         * reflection.c (mono_reflection_create_generic_class): Likewise.
2282         (reflection_methodbuilder_to_mono_method): Likewise.
2283         (mono_reflection_initialize_generic_parameter): Likewise.
2284
2285 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
2286
2287         Don't use MonoGenericParamInfo for ownerless generic params.
2288         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
2289         use ParamInfo class at all.
2290         (mono_class_from_generic_parameter): Use them.
2291         (make_generic_param_class): Fix a couple of instances where 'pinfo
2292         == NULL' wasn't handle.
2293
2294 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
2295
2296         * class.c (make_generic_param_class): Carve out of ...
2297         (mono_class_from_generic_parameter): ... here.
2298
2299 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
2300
2301         Simplify mono_class_from_generic_parameter
2302         * class-internals.h (MonoGenericParamInfo::token): New field.
2303         * metadata.c (mono_metadata_load_generic_params): Initialize it
2304         from metadata.
2305         * class.c (mono_class_from_generic_parameter): Use it instead of
2306         searching through metadata.
2307
2308 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
2309
2310         * metadata-verify.c: Add verification of the method table.
2311
2312 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
2313
2314         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
2315         Delegate::Invoke optimization.
2316
2317 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
2318
2319         * appdomain.c (mono_domain_create_appdomain_internal): Free the
2320         string returned by get_shadow_assembly_location_base.
2321
2322         * appdomain.c (get_shadow_assembly_location_base): Add a comment
2323         about caller's ownership.
2324
2325 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
2326
2327         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
2328         reflection memory on domain unload.
2329
2330         * domain.c (mono_domain_free): Don't free refobject_hash, let the
2331         reflection cleanup code do it.
2332
2333         * domain-internals.h: Add mono_reflection_cleanup_domain.
2334
2335         This fixes a memory leak for managed mirrors of reflection objects
2336         on domain unload. 
2337
2338 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
2339
2340         * metadata-verify.c: Implement more verification of the field table.
2341
2342 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
2343
2344         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
2345         doesn't try to parse the input assembly, which can be broken.
2346
2347 2009-04-23  Mark Probst  <mark.probst@gmail.com>
2348
2349         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
2350         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
2351         by using the lowest bit in the link to store whether the link is
2352         tracked.  Move the track_resurrection hashes into boehm-gc.c.
2353
2354 2009-04-22  Miguel de Icaza  <miguel@novell.com>
2355
2356         * Makefile.am: Split the console support in platform specific code
2357         and put together a framework for making this easy in the future so
2358         that we can start splitting code instead of having a mess of PLATFORM_WIN32
2359
2360 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
2361
2362         * pedump.c: Fix a warning.
2363
2364 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
2365
2366         * verify.c (mono_delegate_type_equal): Compare valuetypes using
2367         mono_class_from_mono_type to avoid bad interactions with the dual representation
2368         of the generic type definition.
2369
2370 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
2371
2372         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
2373         get the MonoClass for the call context type as it might be a generic
2374         instance.
2375
2376         Fixes #491483.
2377
2378 2009-04-21  Mark Probst  <mark.probst@gmail.com>
2379
2380         * object-internals.h: The Thread object has no execution_context
2381         member anymore.
2382
2383         * threads.c, threadpool.c, threads-types.h: Accessor functions for
2384         the execution context.
2385
2386         * appdomain.c: Bump corlib version.
2387
2388 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
2389
2390         * verify.c (do_newobj): Improve error message.
2391
2392 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
2393
2394         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
2395         is nested in the filter block.
2396
2397         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
2398         block is not fully nested.
2399
2400         Fixes #495656.
2401
2402 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
2403
2404         * verify.c (verify_type_compatibility_full): Compare MonoClass and
2405         not MonoType to check for equality of valuetypes as the generic type
2406         definition allows for two different encodings: the generic type definition
2407         class or a generic instance over the GTD arguments.
2408
2409         Fixes #496175.
2410
2411 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
2412
2413         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
2414
2415         * verify.c (do_initobj): Improve error message.
2416
2417 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
2418
2419         * metadata-verify.c: Enable pe verification as the issue with #496453
2420         is that the authenticode data directory have a different unspecified
2421         format. Ignore it for now.
2422
2423         * pedump.c: Run the metadata verifier together with the IL verifier.
2424
2425         Fixes ##496453.
2426
2427 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2428
2429         * metadata-verify.c: Temporarily disable pe verification due to #496453.
2430
2431 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
2432
2433         * class.c (can_access_type): Check visibility against
2434         the element type for pointers and arrays.
2435
2436         Fixes #496150.
2437
2438 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
2439
2440         * metadata-verify.c: Fix cli and table verification to use information
2441         from the MonoImage. A lot of duplicated code got killed.
2442
2443 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
2444
2445
2446         This patch starts to integrate the metadata verifier with the runtime code.
2447
2448         This patch causes major regression in functionality for the metadata verifier
2449         as cli and table verification are disabled since they require to be ported to
2450         use MonoImage information.
2451
2452         * image.c (do_mono_image_load): Split the code in this function
2453         into mono_image_load_pe_data and mono_image_load_cli_data.
2454         Add     care_about_pecoff parameter to not load pecoff data.
2455         Call into the metadata verifier for pecoff and cli verification.
2456
2457         * image.c (mono_image_open_raw): New function that doesn't perform
2458         any parsing of the image contents.
2459         
2460         The reason for the 3 new functions is to give pedump better control
2461         into the interaction with the verifier.
2462
2463         * metadata-internals.h: Add new functions from image.c as part of the
2464         internal mono API.
2465
2466         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
2467         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
2468         to make those functions work together with the runtime.
2469
2470         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
2471         true if the image needs to be verified.
2472
2473         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
2474
2475         * pedump.c: Use new metadata verifier API.
2476
2477 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
2478
2479         * object.c (mono_install_vtable_trampoline): Make this receive a
2480         trampoline creation function instead of trampoline, allowing the JIT
2481         to use a different trampoline for each vtable.
2482
2483 2009-04-18  Mark Probst  <mark.probst@gmail.com>
2484
2485         * object.c (mono_raise_exception): Don't reset the thread abort
2486         exception state here.
2487
2488 2009-04-18  Mark Probst  <mark.probst@gmail.com>
2489
2490         * icall-def.h: New icall for getting the thread abort exception
2491         state for a thread.
2492
2493         * object.c, thread.c, object-internals.h: A thread's abort
2494         exception state is now a GC handle.  To get the object it stands
2495         for, we must move it into the current app domain, if it's
2496         different than the one where it originated from.
2497
2498         * appdomain.c: Bump corlib version.
2499
2500         * domain.c, domain-internals.h: New function for setting the
2501         domain and migrate the thread abort exception or not.
2502
2503 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
2504
2505         * metadata-verify.c: Add initial verification of the
2506         field table.
2507
2508 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
2509
2510         * metadata-verify.c: Add a macro to conditionally enable
2511         dumping of verification information. Add  make_coded_token
2512         and search_sorted_table to enable search sorted tables
2513         by a given coded token.
2514
2515 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
2516
2517         * metadata-verify.c: Add array mapping from table index
2518         to description offset. Add get_col_offset and get_col_size
2519         functions.
2520
2521 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
2522
2523         * metadata-verify.c: Add remaining table descriptions offsets.
2524         Add remaining coded index descriptions.
2525
2526 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
2527
2528         * metadata-verify.c: Fixed constant table description.
2529         Fixed calculation of HasCustomAttribute coded index size.
2530         Fixed calculation of size for many table indexes. 
2531
2532 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
2533
2534         * pedump.c (dump_metadata): Dump table offset instead
2535         of useless pointer in memory.
2536
2537 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
2538
2539         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
2540
2541 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
2542
2543         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
2544         a missing of for interface types.
2545
2546 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
2547
2548         * metadata-verify.c (verify_pe_optional_header): Add comment of why
2549         the code is commented.
2550
2551         * metadata-verify.c (verify_resources_table): Remove spurious printf
2552         and don't fail if there are unmanaged resources. Gmcs generates a useless
2553         one     for all assemblies - I bet it's some MS compatibility junk.
2554
2555 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
2556
2557         * metadata-verify.c (verify_typedef_table): Verify the extends field.
2558
2559         * metadata-verify.c (mono_image_verify): Add a is_corlib.
2560
2561         * verify-internals.h: Same.
2562
2563         * pedump.c: Fix for mono_image_verify new signature.
2564
2565 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
2566
2567         * metadata-verify.c (verify_typedef_table): Verify for some invalid
2568         flags combinations.
2569
2570 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
2571
2572         * metadata-verify.c (verify_module_table): Ignore the generation field.
2573
2574 2009-04-15  Martin Baulig  <martin@ximian.com>
2575
2576         * debug-mono-symfile.c
2577         (mono_debug_symfile_lookup_location): Don't print a warning for
2578         unknown extended opcodes if they're within 0x40 and 0x7f.
2579
2580 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
2581
2582         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
2583         invoke signatures returning an enum. Fixes #494847.
2584
2585 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
2586
2587         * metadata-verify.c: Initial code to verify the typedef table.
2588
2589 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
2590
2591         * verify.c (mono_method_verify): Don't fail if an unconditional branch
2592         with non empty stack happens before the beginning of a try block.
2593
2594         Fixes #494812.
2595
2596 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
2597
2598         * metadata-verify.c: Verify typename and typenamespace fields of
2599         the typeref table.
2600
2601 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
2602
2603         * metadata-verify.c: Initial code to verify the typeref table.
2604
2605 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
2606
2607         * verify.c (verify_delegate_compatibility): Fix error message.
2608
2609 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
2610
2611         * security-core-clr.c: Fix typo
2612
2613 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
2614
2615         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
2616         a MonoGHashTable to keep its values alive.
2617         (emit_marshal_boolean): Fix a warning.
2618
2619 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
2620
2621         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
2622         not have any interface configured for IPv4/IPv6.
2623
2624 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
2625
2626         * assembly.c: fix typo in error message.
2627
2628 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
2629
2630         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
2631         allocating the location holding the this argument to prevent
2632         'too many root sets' errors.
2633
2634         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
2635         to mark fields as special static.
2636         (mono_field_static_get_value): Handle special static fields.
2637         (mono_field_static_set_value): Ditto.
2638
2639         * class-internals.h (struct _MonoClassField): Document this.
2640
2641 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
2642
2643         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
2644           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
2645           case.  This will handle when managed code returns null to native code.
2646
2647         Code is contributed under MIT/X11 license.
2648
2649 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
2650
2651         * object.c (build_imt_slots): Changing a free to a g_free to match
2652           the g_malloc0 in add_imt_builder_entry that allocated this memory.
2653
2654         Code is contributed under MIT/X11 license.
2655
2656 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
2657
2658         * marshal.c (emit_marshal_boolean): Adding code to ensure that
2659           the correct TRUE value is passed through the marshaling layer.
2660
2661         Code is contributed under MIT/X11 license.
2662
2663 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
2664
2665         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
2666         correctly. Fixes #492330.
2667         
2668         * marshal.c: Fix the embedding of object pointers into JITted code in
2669         the native-to-managed wrappers by allocating some GC tracked memory, and
2670         embedding the address of that.
2671
2672 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
2673
2674         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
2675         pointers into the vtable.
2676
2677 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
2678
2679         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
2680
2681         * verify.c (verify_ldftn_delegate): Improve error message.
2682
2683 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
2684
2685         * reflection.c (my_mono_class_from_mono_type): Remove.
2686
2687 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
2688
2689         Prepare to reduce memory usage of owner-less generic parameters (1/n)
2690         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
2691         and constraints fields into ...
2692         (MonoGenericParamInfo): ... this.
2693         (mono_generic_param_info, mono_generic_container_get_param_info):
2694         New accessors.
2695         * class.c, debug-helpers.c, icall.c: Update to changes.
2696         * metadata.c, reflection.c, verify.c: Likewise.
2697
2698 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
2699
2700         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
2701
2702         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
2703         
2704         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
2705         booleans with sbytes.
2706
2707 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
2708
2709         * class.c (can_access_instantiation): Verify accesibility of element types
2710         for arrays and pointers.
2711
2712         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
2713
2714         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
2715
2716         Fixes #493068.
2717
2718 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
2719
2720         * verify.c (do_invoke_method): Improve error messages.
2721
2722 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
2723
2724         * verify.c:  Fixing the MSVC build.
2725
2726         Code is contributed under MIT/X11 license.
2727
2728 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
2729
2730         * security-core-clr.c: Simplify get_reflection_caller not to call
2731         mono_method_get_last_managed (another stack walk) and adjust the
2732         callers to handle a (should not happen) NULL return value.
2733
2734 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
2735
2736         Add accessors to some MonoGenericParam fields
2737         * class-internals.h (mono_generic_param_owner): New accessor.
2738         (mono_generic_param_num): Likewise.
2739         (mono_type_get_generic_param_owner): New helper.
2740         (mono_type_get_generic_param_num): New helper.
2741         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
2742
2743 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
2744
2745         * class-internals.h (mono_generic_container_get_param): New wrapper.
2746         * class.c, icall.c, metadata.c, verify.c: Use it.
2747
2748 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
2749
2750         Fix gtest-252.cs
2751         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
2752         the standard case/loop.  In particular, don't complain about
2753         references to generic type definitions.
2754
2755 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
2756
2757         * debug-helpers.c (dis_one): Decode string arguments.
2758
2759 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
2760
2761         * pedump.c (dump_verify_info): Dump type name correctly.
2762
2763 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
2764
2765         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
2766         are larger than code size.
2767
2768         This can happen in valid code if the try/catch block is not followed by any instruction
2769         and do a backward branch on the leave instruction.
2770
2771         Fixes #492494.
2772
2773 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
2774
2775         * security-core-clr.c: Fix typo while comparing second method names
2776         in can_avoid_corlib_reflection_delegate_optimization
2777
2778 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
2779
2780         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
2781
2782         Fixes #487738.
2783
2784 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
2785
2786         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
2787         a MVAR using a class context.
2788
2789         Fixes #490335.
2790
2791 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
2792
2793         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
2794
2795         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
2796
2797         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
2798         functions supplied by the JIT for the SGEN GC.
2799
2800         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
2801         
2802 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
2803
2804         monitor.c (mono_monitor_try_enter_internal):
2805         Added calls to profile monitor contentions.
2806         Also duplicated a small piece of code (the "get the monitor" logic)
2807         from the fast path to the slow path, and changed the relevant goto
2808         statements, so that monitor acquisition events can be emitted from the
2809         slow path (this is by Paolo Molaro).
2810
2811 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
2812
2813         * profiler.c, profiler.h, profiler-private.h:
2814         Added support for profiling monitor contentions.
2815
2816 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
2817
2818         * metadata-verify.c: Verify the modules table.
2819
2820 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
2821
2822         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
2823         using the context of the method been verifier and not of the method been called.
2824
2825         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
2826         safely inflate generic types. 
2827
2828 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
2829
2830         * security-core-clr.c: Change the strategy for checking the 
2831         "reflection using delegates optimization" to avoid unneeded 
2832         attributes in multiple class libraries.
2833
2834 2009-04-02  Mark Probst  <mark.probst@gmail.com>
2835
2836         * sgen-gc.c: Remove object element in the disappearing link struct
2837         by storing the object pointer in the link.
2838
2839 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
2840
2841         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
2842
2843 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
2844
2845         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
2846
2847         * verify.c (mono_method_verify): Do proper bounds checking of exception
2848         clause ranges.
2849
2850 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
2851
2852         * loader.c (mono_field_from_token): Don't crash if the field parent could
2853         not be decoded.
2854
2855 2009-03-31  Mark Probst  <mark.probst@gmail.com>
2856
2857         * sgen-gc.c: Execute critical finalizers after ordinary
2858         finalizers.
2859
2860         * class-internals.h, domain.c: Add CriticalFinalizerObject to
2861         mono_defaults.
2862
2863 2009-03-31 Jb Evain <jbevain@novell.com>
2864
2865         * verify.c (do_ldstr): don't check if a string is in the user strings
2866         heap if the current image is dynamic.
2867
2868 2009-03-31  Mark Probst  <mark.probst@gmail.com>
2869
2870         * sgen-gc.c: Wait until the last finalizer has executed when
2871         returning from WaitForPendingFinalizers.
2872
2873 2009-03-31  Martin Baulig  <martin@ximian.com>
2874
2875         * mono-debug-debugger.h (MonoDebuggerEvent): Add
2876         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
2877         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
2878         (mono_debugger_event_create_appdomain): New function.
2879         (mono_debugger_event_unload_appdomain): New function.
2880
2881         * appdomain.c (mono_domain_create_appdomain_internal): Call
2882         mono_debugger_event_create_appdomain().
2883
2884 2009-03-31  Martin Baulig  <martin@ximian.com>
2885
2886         * mono-debug-debugger.c
2887         (mono_debugger_register_class_init_callback): Also register the
2888         class init callback if the class is already initialized to make
2889         things work with shadow copied assemblies.
2890
2891 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
2892
2893         * security-core-clr.c
2894         (mono_security_core_clr_ensure_reflection_access_field): Let 
2895         critical code access the field (just like we do for methods). Use
2896         check_field_access helper.
2897         (mono_security_core_clr_ensure_reflection_access_method): Use 
2898         check_field_access helper.
2899
2900 2009-03-31  Mark Probst  <mark.probst@gmail.com>
2901
2902         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
2903         call the run-finalize function directly.
2904
2905         * gc.c, gc-internal.h: Make run_finalize() non-static.
2906
2907 2009-03-31  Mark Probst  <mark.probst@gmail.com>
2908
2909         * sgen-gc.c: Use a separate struct for disappearing links.
2910
2911 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
2912
2913         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
2914         * MaxIOVectorLength enabled, just ignore them.
2915         Fixes bug #349688.
2916
2917 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
2918
2919         * metadata-verify.c: Fix eglib build.
2920
2921 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
2922
2923         * threads-types.h: Fix the win32 build.
2924
2925 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
2926
2927         * class.c: move coreclr inheritance/override checks to 
2928         security-core.clr.c
2929         * security-core.clr.c|h: add code from class.c with additional
2930         documentation. Fix override check when the method is not critical.
2931
2932 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
2933
2934         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
2935         (match_class): Ditto.
2936
2937 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
2938
2939         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
2940
2941         * metadata-verify.c: Implement table layout row size calculation. Verify
2942         the total size of the tables.
2943
2944 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
2945
2946         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
2947
2948 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
2949
2950         * appdomain.c:
2951         * console-io.[ch]: added new mono_console_init() to make sure that
2952         file descriptors 0, 1 and 2 are opened.
2953         Bug #489019 fixed.
2954
2955 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
2956
2957         * appdomain.h: Export a new callback type and a new function to
2958         set this callback. This allow a mono host to provide it's own
2959         definition for "platform code".
2960         * metadata-internals.h: Add a core_clr_platform_code flag on 
2961         _MonoImage to (cache and) know if it is representing platform 
2962         code.
2963         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
2964         on platform code images.
2965         * security-core-clr.c|h 
2966         (mono_security_set_core_clr_platform_callback): Allow the host
2967         to provide it's own platform check definition.
2968         (mono_security_core_clr_determine_platform_image): Detect if an 
2969         image is platform code (using the specified callback).
2970         (mono_security_core_clr_is_platform_image): Return cached value 
2971         for platform code.
2972
2973 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
2974
2975         * threads.c (mono_create_thread): New helper function to wrap CreateThread
2976         which has different parameter types for the 'tid' argument in windows and
2977         the io-layer.
2978
2979         * appdomain.c attach.c threads.c: Use the new helper.
2980
2981 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
2982
2983         * metadata-verify.c: Verify valid table bits.
2984
2985 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
2986
2987         * metadata-verify.c (verify_metadata_header): Store size in the size field.
2988
2989         * metadata-verify.c: Add initial table schema verification.
2990
2991 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
2992
2993         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
2994         obtain the refclass argument needed by mono_param_get_objects (). Fixes
2995         #488383.
2996
2997         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
2998
2999         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
3000
3001 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
3002
3003         * security-core-clr.c: Add/update documentation
3004
3005 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
3006
3007         * marshal.c (emit_marshal_object): Generate code to throw an exception
3008         instead of throwing it. Fixes #488670.
3009
3010 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
3011
3012         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
3013         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
3014         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
3015         and add a call to mono_security_core_clr_ensure_delegate_creation
3016         to do the extra checks required by CoreCLR.
3017         * security-core-clr.c|h: Add function to check delegate creation,
3018         both in the binding and accessibility, under CoreCLR.
3019
3020 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
3021
3022         * reflection.c (mono_reflection_create_dynamic_method): when 
3023         coreclr is enabled make sure that every resolved object are
3024         checked (e.g. field and method access).
3025         * security-core-clr.c|h: Add function to check objects resolved
3026         when a dynamic method is created.
3027
3028 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
3029
3030         * metadata-verify.c: Cache directory rva translations.
3031
3032         * metadata-verify.c: Add cli-header and streams verification.
3033
3034 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
3035
3036         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
3037         the wrong offset (8 instead of 6).
3038
3039 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
3040
3041         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
3042         methods, return the native function address itself. Fixes
3043         #487758.
3044
3045 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3046
3047         * console-io.c: some of the values for control characters might not be
3048         present.
3049
3050 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
3051
3052         * exception.c|h: Add helpers to create [Field|Method]AccessException
3053         * icall.c: Add required coreclr check calls for field reflection.
3054         Move the existing (method) check logic into security-core-clr.c
3055         * security-core-clr.c: Add functions to check if the access of a
3056         field or method is allowed when reflecting under coreclr. This is
3057         mostly done using a stack walk to find the "real" caller: i.e. the
3058         code that is calling the reflection
3059
3060 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
3061
3062         * gc-internal.h: Change location of gc_wrapper.h
3063
3064 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
3065
3066         * class.c: Simplification to coreclr checks for overrides that
3067         makes it easier to set breakpoints.
3068
3069 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
3070
3071         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
3072         mono_security_core_clr_method_level): Avoid potential 
3073         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
3074         user/application code) and make it easier to set breakpoints
3075
3076 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
3077
3078         * metadata-verify.c: Reject cli header tables that mono don't handle.
3079
3080 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
3081
3082         * pedump.c: Fix CLI header dumping.
3083
3084 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
3085
3086         * metadata-verify.c: More CLI header verification.
3087
3088 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
3089
3090         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
3091
3092 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
3093
3094         * metadata-verify.c: Initial verification of the CLI header.
3095
3096 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
3097
3098         * metadata-verify.c (verify_resources_table): Fix verification of zero
3099         sized resource section and id entries count.
3100
3101 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
3102
3103         * icall.c: Handle user types in many Type icalls. Fixes #486303.
3104
3105 2009-03-17  Jb Evain  <jbevain@novell.com>
3106
3107         * profiler.c: call mono_gc_base_init from mono_profiler_load.
3108
3109 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
3110
3111         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
3112         (mono_gc_make_descr_for_array): Ditto.
3113
3114 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
3115
3116         * verify.c (mono_verifier_is_class_full_trust): Add support for
3117         CoreCLR security mode where trusted assemblies are defined as
3118         "platform code".
3119
3120 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
3121
3122         * metadata-verify.c: Add minimal PECOFF resource verification.
3123
3124 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
3125
3126         * metadata-verify.c: Be less restrictive with some coff fields.
3127
3128 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
3129
3130         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
3131         params as boxed values on stack. Fixes #485706.
3132
3133 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
3134
3135         * console-io.c: the termios values may vary in different flavors of unix.
3136
3137 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
3138
3139         * console-io.[ch]: return the entire set of control characters when
3140         initializing the terminal.
3141         * appdomain.c: bump corlib version.
3142
3143 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
3144
3145         * mono-perfcounters.c: added support for in-process custom
3146         performance counters.
3147
3148 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
3149
3150         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
3151
3152 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
3153
3154         * metadata-verify.c: Verify the data pointed by the import table. 
3155
3156 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
3157
3158         * metadata-verify.c (load_data_directories): Store data
3159         directory contents.
3160
3161         * metadata-verify.c: Verify the import table. 
3162
3163 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
3164
3165         * metadata-verify.c: Verify data directories.
3166
3167 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
3168
3169         * metadata-verify.c: Check section header flags.
3170
3171 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3172
3173         * appdomain.c: if the assembly name is a shadow-copied file, return
3174         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
3175         in mono_make_shadow_copy.
3176         * icall.c: if the assembly name is a shadow-copied file, replace it
3177         with the original assembly path.
3178
3179         Bug #484244 fixed. NUnit tests for corlib can be run without
3180         --noshadow now.
3181
3182 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
3183
3184         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
3185         entries when the table is reallocated.
3186
3187         * icall.c: Allocate the memory used by the mono_ptr_array macros using
3188         mono_gc_alloc_fixed () since it contains GC refs.
3189
3190 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
3191
3192         * reflection.c (ensure_complete_type): New helper function to call
3193         type resolve handlers for unfinished dynamic types.
3194         (resolve_object): Call it for MonoClassFields. Fixes #483852.
3195
3196 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
3197
3198         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
3199         #483247.
3200
3201 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
3202
3203         * appdomain.c (get_shadow_assembly_location): Fix memleak.
3204
3205 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
3206
3207         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
3208         between GCHandles of type WeakTrackResurrection and the objects they
3209         point to.
3210
3211         * gc.c: Partly implement the sematics of GCHandles of type 
3212         WeakTrackResurrection: these handles should only be cleared after the
3213         finalizer of the object they are pointing to has ran.
3214
3215 2009-03-06  Mark Probst  <mark.probst@gmail.com>
3216
3217         * icall.c: Partially revert r126631 because using the jump
3218         trampolines for generic shared methods makes it superfluous.
3219
3220 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
3221
3222         * threads.c (handle_store): Create the 'threads' hash table with the proper
3223         MONO_HASH_VALUE_GC type.
3224
3225 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
3226
3227         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
3228         FIRST_GC_TRACKED.
3229
3230         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
3231         and LAST_GC_TRACKED as a GC root.
3232
3233         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
3234
3235         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
3236         the static data even if it consists of 1 reference.
3237
3238         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
3239         if there is a GC descriptor.
3240
3241         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
3242         instead of through the GC since they contain no object references.
3243
3244 2009-03-05  Mark Probst  <mark.probst@gmail.com>
3245
3246         * generic-sharing.c (instantiate_other_info): Always return a jump
3247         trampoline for method code.
3248
3249 2009-03-05  Marek Habersack  <mhabersack@novell.com>
3250
3251         * culture-info-tables.h: generated to include the en-tt culture.
3252
3253 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
3254
3255         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
3256         capture the thread context.
3257
3258         * object.c (mono_async_result_new): Cache the invoke wrappers to
3259         ExecutionContext::Capture.
3260
3261 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
3262
3263         * marshal.h: Add a prototype for what mono_compile_method returns
3264         for invoke wrappers.
3265
3266         * gc.c: Use the new prototype declaration.
3267
3268 2009-03-04  Geoff Norton  <gnorton@novell.com>
3269
3270         * boehm-gc.c: Add some MONO_LOG tracing for the GC
3271         * gc-internal.h:
3272         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
3273
3274 2009-03-04  Martin Baulig  <martin@ximian.com>
3275
3276         * mono-debug.h
3277         (mono_debugger_runtime_invoke): Removed.
3278
3279         * mono-debug-debugger.c
3280         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
3281
3282 2009-03-02  Martin Baulig  <martin@ximian.com>
3283
3284         * mono-debug.h
3285         (mono_debugger_unhandled_exception): Removed.
3286         (mono_debugger_handle_exception): Removed.
3287         (mono_debugger_throw_exception): Removed.
3288
3289         * mono-debug.c
3290         (mono_debug_debugger_version): Bump to 5.
3291
3292         * mono-debug-debugger.c: Moved the exception handling code to
3293         ../mini/debug-mini.c
3294
3295 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
3296
3297         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
3298         finalize_objects_hash.
3299
3300         * gc.c: Use the separate lock to access the finalize_objects_hash field.
3301         
3302         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
3303         field.
3304
3305         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
3306         cache.
3307
3308         * image.c (mono_image_close): Free it.
3309         
3310         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
3311         allowing a creation of a wrapper which invokes its method using a CALLVIRT
3312         on the this argument.
3313
3314         * gc.c (run_finalize): Optimize the calling of the finalizers.
3315
3316 2009-03-03  Martin Baulig  <martin@ximian.com>
3317
3318         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
3319         of the `MonoGenericInst' changes.
3320
3321 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
3322
3323         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
3324         mono_array_class_get_cached to reduce locking contention. Extract
3325         a domain var.
3326
3327         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
3328         intermediary managed arrays. Use caching version of mono_array_new
3329         to allocate the result array.
3330
3331         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
3332
3333         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
3334
3335         * locales.c (create_names_array_idx):  Use mono_array_new_cached
3336         to reduce locking contention.
3337
3338 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
3339                 
3340         * object.c (mono_method_add_generic_virtual_invocation): Put back the
3341         thunk builder code for the non-interface case.
3342
3343 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
3344
3345         * object.c (get_generic_virtual_entries): New helper function to collect
3346         the virtual generic method instances which need to be added to an IMT
3347         thunk.
3348         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
3349         Instead of creating a new IMT thunk, reset the vtable slot to the
3350         trampoline, the thunk will be created the next time the trampoline is called.
3351         (build_imt_slots): Add support for virtual generic methods in interfaces by
3352         adding to the IMT thunk all the methods registered using 
3353         mono_method_add_generic_virtual_invocation ().
3354
3355         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
3356         (struct _MonoIMTCheckItem): Ditto.
3357
3358         * object.c (mono_method_add_generic_virtual_invocation): Take a
3359         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
3360         the IMT thunk to include all items.
3361         
3362         * object.c (mono_class_create_runtime_vtable): Add a missing
3363         mono_loader_unlock ().
3364
3365 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
3366
3367         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3368
3369         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
3370
3371 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
3372
3373         * object-internals.h: Rename _MonoReflectionEvent to
3374         MonoReflectionMonoEvent so it reflects the right managed type.
3375         Add a MonoReflectionEvent that correctly represents System.EventInfo.
3376
3377         * icall.c:
3378         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
3379         type.
3380
3381 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
3382
3383         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
3384         intermediary managed arrays. Use caching version of mono_array_new
3385         to allocate the result array.
3386
3387 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
3388
3389         * reflection.c: Use cached version of mono_array_new alongside
3390         the mono_reflection_get_custom_attrs_by_type call path.
3391
3392 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
3393
3394         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
3395         intermediary managed arrays. Use caching version of mono_array_new
3396         to allocate the result array.
3397
3398         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
3399
3400 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
3401
3402         * icall.c: Add small implementation of a growable stack bound array.
3403
3404         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
3405
3406         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
3407         intermediary managed arrays. Use caching version of mono_array_new
3408         to allocate the result array.
3409
3410 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
3411
3412         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
3413         helps Enum::CompareTo to be implemented without reboxing all enums
3414         to their underlying type.
3415 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
3416
3417         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
3418         since it acquires a global lock leading to scalability problems.
3419
3420         * profiler.c: Make the stat profiler work with multiple appdomains, this
3421         currently only works when no appdomains are unloaded.
3422
3423 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
3424
3425         * appdomain.c: make the check to avoid copying when the assembly is
3426         already shadow copied actually work.
3427
3428 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
3429
3430         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3431
3432         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
3433         changes to the managed side.
3434
3435 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
3436
3437         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
3438         classes + a separate lock for it, as it is used frequently at runtime, not
3439         just during metadata loading/JIT compilation.
3440
3441         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
3442         for szarrays.
3443         
3444         * object-internals.h (mono_class_from_name_cached): New macro to cache
3445         the results of the lookup locally without having to declare a static
3446         variable to hold it.
3447         (mono_class_get_field_from_name_cached): Ditto.
3448         (mono_array_class_get_cached): Ditto.
3449
3450         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
3451         the new macros.
3452         
3453         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
3454         slower search in metadata.
3455
3456         * pedump.c: Fix a warning.
3457
3458 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
3459
3460         * reflection.c (encode_locals): Add checks for user types.
3461         (method_encode_clauses): Ditto.
3462         (method_encode_code): Ditto.
3463         (mono_image_create_token): Ditto.
3464
3465         * object-internals.h: Change the type of more fields from MonoReflectionType*
3466         to MonoObject*.
3467
3468 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
3469
3470         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
3471         the a thread does not suspend within 100ms.
3472
3473         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
3474         in addition to StopRequested as well.
3475
3476         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
3477
3478         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
3479         search the method_hash before inserting a new entry, to avoid crashes when
3480         the same method is inserted multiple times, causing the old 
3481         MonoDebugMethodInfo structure to be freed by the value dtor function.
3482
3483 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3484
3485         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
3486         SO_EXLUSIVEADDRUSE where available.
3487
3488 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
3489
3490         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
3491         runtime invoke wrappers, this time it is string ctor wrappers, which
3492         pass a dummy string as 'this' instead of their obj argument. Fixes
3493         #478473.
3494
3495 2009-02-21  Jb Evain  <jbevain@novell.com>
3496
3497         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
3498         only get create_culture once.
3499
3500 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
3501
3502         * reflection.c (mono_reflection_setup_internal_class): Move the user type
3503         check before the locking.
3504         
3505         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
3506         (mono_reflection_create_runtime_class): Ditto.
3507         (mono_reflection_sighelper_get_signature_local): Ditto.
3508         (mono_reflection_sighelper_get_signature_field): Ditto.
3509
3510         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
3511         is a System.MonoType object or similar.
3512         (monotype_cast): New helper function to cast a MonoObject to a 
3513         MonoReflectionType object.
3514
3515         * object-internals.h: Change MonoReflectionType* members in structures to
3516         MonoObject* members to force the usage of the monotype_cast () function.
3517
3518         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
3519         structures/arrays. This causes us to assert instead of crashing when 
3520         instances of user defined subclasses of System.Type are encountered.
3521
3522 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
3523
3524         * cil-coff.h:
3525         * icall-def.h:
3526         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
3527         win32 resource loaded from a PE file.
3528
3529         * image.c: fix mono_image_lookup_resource.
3530
3531 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
3532
3533         * icall-def.h:
3534         * threads-types.h:
3535         * threads.c: added internal call for WaitHandle.SignalAndWait.
3536
3537 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
3538
3539         * cominterop.c : Adding cominterop_type_from_handle and 
3540           registering it as an icall.  Replacing all references
3541           to type_from_handle.
3542
3543         Code is contributed under MIT/X11 license.
3544
3545 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
3546
3547         * Makefile.am: Add lock-tracer.h and lock-trace.c.
3548
3549         * appdomain.c: Call the tracer init function.
3550
3551         * domain-internals.h: Enable the tracer for the domain locks.
3552
3553         * image.c: Enable the tracer for image locks.
3554
3555         * loader.c: Enable the trace for the loader lock.
3556
3557         * lock-tracer.h:
3558         * lock-tracer.c: Initial implementation of the lock trace utility.
3559         The tracer requires a compile time define to be enabled and a env var
3560         to be enabled at runtime.
3561
3562 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
3563
3564         * domain.c (mono_domain_code_foreach): Improve documentation.
3565
3566 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
3567
3568         * appdomain.c:
3569         * generic-sharing.c:
3570         * object.c:
3571         * reflection.c:  Adjust locking order to the new semantics where the loader lock
3572         comes first.
3573
3574 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
3575
3576         * domain.c: Add mono_domain_code_* functions that perform locking
3577         around the domain codeman.
3578
3579         * domain-internals.h: Export those functions.
3580
3581         * object.c: Use new functions instead of acquiring the domain lock.
3582
3583 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
3584
3585         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
3586         delegate. Fixes #477396.
3587
3588 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
3589
3590         * reflection.c (create_custom_attr): Get rid of alloca.
3591
3592 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
3593
3594         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
3595           Adding exception handling for all CCW calls.
3596
3597         Code is contributed under MIT/X11 license.
3598
3599 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
3600
3601         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
3602
3603         * marshal.c (emit_marshal_boolean): Add null checks to the new 
3604         native->managed marshalling code. Fixes #476247.
3605
3606 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
3607
3608         * class.c (mono_class_get_vtable_entry): Move the addition of
3609         static rgctx invoke wrappers for vtable methods here, this simplifies
3610         a lot of code and causes fewer rgctx wrappers to be created.
3611
3612         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
3613         name of the statistics to begin with an uppercase.
3614
3615 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
3616
3617         * reflection.c: Revert previous change as it breaks the build.
3618         
3619 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
3620
3621         * verify.c: Properly handle SZARRAY element type.
3622
3623         Fixes #474271.
3624
3625 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
3626
3627         * reflection.c (mono_image_create_method_token): Correctly encode
3628         MethodDef MemberRefParent token.
3629
3630         Fixes #472845.
3631
3632 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
3633
3634         * image.c (mono_image_close): Delete the critical section before
3635         freeing the memory holding it.
3636
3637 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
3638
3639         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
3640         Fixes #476257.
3641
3642 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
3643
3644         * pedump.c (main): Call mono_marshal_init so pedump
3645         doesn't crash.
3646
3647 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
3648
3649         * loader.c (method_from_memberref): Properly fix #474271 and
3650         don't break the runtime bad.
3651
3652 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
3653
3654         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
3655         (mono_domain_alloc0): Ditto.
3656
3657 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
3658
3659         * loader.c (method_from_memberref): Don't abort if the array
3660         method is not found. A regular loader failure is more informative
3661         and correct.
3662
3663         Fixes #474271.
3664
3665 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
3666
3667         *loader.c: Guard MonoImage::method_cache/methodref_cache
3668         using the image lock instead of the loader lock.
3669
3670         * metadata.h: Add comments about which fields are protected by
3671         the image lock.
3672
3673 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
3674
3675         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
3676
3677         * generic-sharing.c (mono_method_construct_object_context): Remove the
3678         wrapper_type == NONE assert, it is not needed.
3679
3680 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
3681
3682         * reflection.c (clear_cached_object): New helper function.
3683         (mono_method_clear_object): New function to clear the cached reflection
3684         objects for a dynamic method.
3685
3686         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
3687         Partly fixes # 463323.
3688         
3689 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
3690
3691         * class.c:
3692         * loader.c:
3693         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
3694
3695 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
3696
3697         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
3698         take the image lock instead of the loader lock.
3699
3700         * metadata-internals.h: Export new functions.
3701
3702 2009-02-12  Miguel de Icaza  <miguel@novell.com>
3703
3704         * domain.c (app_config_parse): Remove another use of stat that is
3705         not necessary as g_file_get_contents already does the presence
3706         check. 
3707
3708 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
3709
3710         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
3711
3712         * marshal.c: Move the bstr handling code to cominterop.c.
3713
3714         * marshal.c: Remove some COM interop code missed previously.
3715
3716 2009-02-12  Miguel de Icaza  <miguel@novell.com>
3717
3718         More Paolo patches from the Wii port:
3719         
3720         * security.c: Remove ves_icall_System_Environment_get_UserName
3721         from here.
3722
3723         * icall.c: And put ves_icall_System_Environment_get_UserName
3724         here. 
3725
3726         * appdomain.c (mono_set_private_bin_path_from_config): Remove
3727         redundant call to stat that was only used to test for the file
3728         existence.   Patch from Paolo.
3729
3730         * gc.c (run_finalize): If COM is disabled, do not link in
3731         mono_marshal_free_ccw.
3732
3733         * generic-sharing.c: Use alloca.h here as well.
3734
3735 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
3736
3737         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
3738
3739 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
3740
3741         * cominterop.c cominterop.h: New files.
3742
3743         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
3744         function/typedefs which are needed by cominterop.c global.
3745
3746 2009-02-12  Mark Probst  <mark.probst@gmail.com>
3747
3748         * generic-sharing.c: Don't take the loader lock to guard image
3749         mempool allocs.
3750
3751 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
3752
3753         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
3754         called without the loader lock which is required to guard MonoImage:tokens.
3755
3756 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
3757
3758         * class.c:
3759         * metadata.c:
3760         * method-builder.c:
3761         * marshal.c:
3762         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
3763
3764 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
3765
3766         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
3767         Rework the code to use regular mono_image_alloc/0.
3768
3769         * loader.c: Rework the code to use regular mono_image_alloc/0.
3770
3771         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
3772
3773 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
3774
3775         * object-internals.h : Fixing a typo in the 
3776           MonoReflectionComVisibleAttribute struct.
3777
3778         * marshal.c (cominterop_com_visible): Check the implemented 
3779           interfaces for ComImport.
3780
3781         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
3782           assume that bools should be treated as VARIANTBOOLs.
3783
3784         * marshal.c (emit_marshal_boolean): Adding cases for 
3785           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
3786
3787         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
3788           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
3789
3790         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
3791           should be treated as VARIANTBOOLs.    
3792
3793         Code is contributed under MIT/X11 license.
3794
3795 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
3796
3797         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
3798         allocation with the image lock.
3799
3800 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
3801
3802         This patch is the last of a series to remove explicit reference of MonoImage::mempool
3803         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
3804
3805         * object.c: Add mono_string_to_utf8_image.
3806
3807         * object-internals.h: Export mono_string_to_utf8_image.
3808
3809         * reflection.c: Rework all explicit references to the the image mempool to go thought
3810         the mono_image_alloc set of functions.
3811
3812 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
3813
3814         This patch is the third of a series to remove explicit reference of MonoImage::mempool
3815         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
3816         and generics-sharing.c.
3817
3818         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
3819         as first argument. Note that this function remains broken as it doesn't perform locking around the
3820         mempool allocation.
3821
3822         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
3823
3824         * image.c: Add g_slist_append_image.
3825
3826         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
3827         the supplied image for allocation. Move code into mono_metadata_field_info_full.
3828
3829         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
3830         Fix all related code to do the same.
3831
3832         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
3833
3834         * metadata-internals.h: Fix the signatures.
3835
3836 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
3837
3838         This patch is the second of a series to remove explicit reference of MonoImage::mempool
3839         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
3840         and similar to work using MonoImage.
3841
3842         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
3843         MonoMemPool.
3844
3845         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
3846
3847         * class.c (mono_metadata_signature_deep_dup): Same.
3848
3849         * class.c (inflate_generic_type): Same.
3850
3851         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
3852
3853         * metadata.c (mono_metadata_signature_dup_full): Same.
3854
3855         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
3856         mono_metadata_signature_dup_full.
3857
3858         * metadata.c (mono_metadata_type_dup): Same.
3859
3860         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
3861
3862         * reflection.c: Same.
3863
3864         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
3865
3866         * metadata-internals.h: Fix the signatures.
3867
3868         * class-internals.h: Same.
3869
3870 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
3871
3872         This patch is the first of a series to remove explicit reference of MonoImage::mempool
3873         and use mono_image_alloc set of functions instead. 
3874
3875         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
3876         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
3877         of a MonoMemPool.
3878
3879         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
3880
3881         * class.c (g_list_prepend_mempool): Removed.
3882
3883         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
3884
3885         * image.c: Add g_list_prepend_image.
3886
3887         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
3888
3889         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
3890
3891
3892 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
3893
3894         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
3895         mono_image_unlock.
3896
3897         * image.c (mono_image_init): Init the lock field.
3898  
3899         * image.c (mono_image_init): Cleanup the lock field.
3900
3901         * image.c: Add mono_image_(un)lock functions.
3902
3903 2009-02-11  Mark Probst  <mark.probst@gmail.com>
3904
3905         * class.c, class-internals.h: mono_method_get_context_general()
3906         combines the functionality of mono_method_get_context() and
3907         mini_method_get_context().
3908
3909         * generic-sharing.c, domain-internals.h:
3910         mono_method_construct_object_context() and
3911         mono_domain_lookup_shared_generic() moved from mini.
3912
3913         * icall.c (ves_icall_InternalInvoke): Handle the case where the
3914         method doesn't have the correct instantiation because it's shared
3915         generic code.  Fixes #473999.
3916
3917 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
3918
3919         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
3920
3921         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
3922         
3923 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
3924
3925         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
3926
3927         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
3928
3929         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
3930         and recheck the cache for dups after it.
3931
3932         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
3933
3934         Fixes one of the deadlocks found in #473150.
3935
3936 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
3937
3938         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
3939           For Win32, add additional break conditions for accept.
3940
3941         Code is contributed under MIT/X11 license.
3942
3943 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
3944
3945         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
3946         lazily initialize the native wrapper cache.
3947         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
3948         cache, since they are different from the normal wrappers.
3949
3950         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
3951
3952         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
3953         AOT compiled native wrappers.
3954
3955 2009-02-09  Geoff Norton  <gnorton@novell.com>
3956
3957         * appdomain.h:
3958         * security-core-clr.c: Allow enabling core-clr from the embedding
3959         API.
3960
3961 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
3962
3963         * socket-io.c: when requesting all the local ips, if there are no
3964         interfaces up and running, MS returns 127.0.0.1.
3965
3966 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
3967
3968         * mono-perfcounters-def.h: processor time is an inverse time.
3969         Fixes bug #468625.
3970
3971 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
3972
3973         * socket-io.c: an empty host name returns the list of local IPs.
3974         Fixes bug #386637 part 1/2.
3975
3976 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
3977
3978         * verify.c (mono_class_interface_implements_interface): Call
3979         mono_class_setup_interfaces ().
3980         (merge_stacks): Ditto.
3981
3982 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
3983
3984         * class.c (mono_class_setup_interfaces): New function to lazily initalize
3985         klass->interfaces.
3986         (mono_generic_class_get_class): Don't initalize klass->interfaces.
3987         (mono_generic_class_get_class): Ditto.
3988
3989 2009-02-06  U-QUACK\miguel  <miguel@quack>
3990
3991         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
3992         they live in security.c
3993
3994         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
3995         another bit from Paolo's code.
3996
3997 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
3998
3999         * object.c (build_imt_slots): Add a small optimization to avoid inflating
4000         methods which will be discarded by add_imt_builder_entry ().
4001
4002         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
4003         need to be boxed.
4004
4005         * loader.c: Add a statistics for the size of the memberref signature cache.
4006         
4007         * loader.c (find_cached_memberref_sig): New helper function.
4008         (cache_memberref_sig): Ditto.
4009
4010         * loader.c: Cache the result of parsing memberref signatures, since otherwise
4011         they will be parsed again for every generic instantiation, leading to unbounded
4012         memory growth.
4013
4014 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
4015
4016         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
4017         parameters of generic methods.
4018
4019         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
4020         after the original method is copied to the inflated method.
4021         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
4022
4023         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
4024         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
4025
4026         * class.c metadata.c: Update after the changes above.
4027
4028 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
4029
4030         * metadata-verify.c: Simplified error handling and added
4031         section table validation.
4032
4033 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
4034
4035         * class-internals.h (MonoClassExt): New structure containing rarely used
4036         fields of MonoClass.
4037         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
4038         through a new 'ext' field.
4039
4040         * class.c (mono_class_alloc_ext): New helper function to allocate 
4041         class->ext.
4042
4043         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
4044
4045 2009-02-05  Mark Probst  <mark.probst@gmail.com>
4046
4047         * object.c (mono_object_get_virtual_method): Properly inflate
4048         generic methods.  Fixes #472692.
4049
4050 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
4051
4052         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
4053         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
4054         for the parent type, the created type must be ready to be used on a generic
4055         instantiation.
4056         We fill this_arg/byval_arg if the parent is a generic instance to make sure
4057         we won't have duplicated entries in generic_inst_cache.
4058
4059         Fixes #469553.
4060
4061 2009-02-05  Miguel De Icaza  <miguel@novell.com>
4062
4063         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
4064         replace with plain BSD per the comments on the bug MONO77637.
4065
4066 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
4067
4068         * class.c (mono_class_get_generic_class): New accessor function.
4069         (mono_class_get_generic_container): Ditto.
4070
4071         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
4072         fields, similar to the ones in MonoMethod.
4073
4074         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
4075         (mono_class_create_from_typedef): Set klass->is_generic if needed.
4076
4077         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
4078         
4079         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
4080         the same information as element_class->byval_arg.
4081
4082         * class.c reflection.c: Remove references to class->byval_arg.
4083
4084         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
4085         klass->enum_basetype directly.
4086
4087         * verify.c metadata.c object.c icall.c reflection.c: Use 
4088         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
4089         directly.
4090
4091 2009-02-04  Miguel de Icaza  <miguel@novell.com>
4092
4093         * icall-def.h: Remove internal calls for sockets when
4094         DISABLE_SOCKET is defined, file system writing features when the
4095         OS only support reading and not writing data and Policy support if
4096         the Policy is disabled.
4097         
4098         * image.c (do_mono_image_open): Apply Paolo's patches for using
4099         mono_file_map_ APIs here.
4100
4101         * assembly.c: Add support for platforms to avoid prefix
4102         auto-detection. 
4103
4104 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
4105
4106         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
4107         warning.
4108
4109         * class.c (mono_class_inflate_generic_class): New helper function.
4110
4111         * class.c: Use mono_class_inflate_generic_class in a few places. Add
4112         statistics for inflated methods/classes.
4113
4114         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
4115
4116         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
4117         the call is made from Delegate.CreateDelegate () for the invoke method of
4118         a delegate.
4119
4120         * loader.c: Add a statistics for the memory occupied by inflated signatures.
4121
4122         * metadata.c (mono_metadata_signature_size): New helper function.
4123
4124         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
4125         generic instances.
4126
4127         * metadata.c (inflated_method_in_image): Avoid calling 
4128         mono_method_signature () if the method does not already have a signature.
4129
4130 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
4131
4132         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
4133         valuetype is compatible with target type, check by inheritance as a
4134         VT is not really compatible with System.ValueType, for example.
4135
4136         * verify.c (do_invoke_method): Improve error message.
4137
4138         * verify.c (do_box_value): If boxing a nullable, use the type argument
4139         on stack instead.
4140
4141         * verify.c (do_newobj): Improve error message.  
4142
4143         Fixes #469549.
4144
4145 2009-02-03  Miguel de Icaza  <miguel@novell.com>
4146
4147         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
4148
4149 2009-02-03  Mark Probst  <mark.probst@gmail.com>
4150
4151         * generic-sharing.c: Don't hold domain lock when calling
4152         instantiate_other_info().  Fixes #471958.
4153
4154         * domain-internals.h, loader.c: Describe locking policy of domain
4155         lock vs loader lock.
4156
4157 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
4158
4159         * verify.c (mono_delegate_signature_equal): Make it possible to check
4160         first-arg-bound delegates to static method.
4161
4162         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
4163         static methods with the first arg bound.
4164
4165         Fixes #469529.
4166
4167 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
4168
4169         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
4170         errors.
4171
4172         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
4173         under strict mode. Any type, when boxed can be seen as a reference type.
4174
4175         Fixes #469528.
4176
4177 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
4178
4179         * object.h: The lower bound of an array is a signed integer value.
4180         Introduce mono_array_lower_bound_t typedef. It should be used instead of
4181         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
4182
4183         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
4184         calculate the upper bound.
4185         
4186         Fixes #471252.
4187
4188 2009-02-02  Miguel de Icaza  <miguel@novell.com>
4189
4190         From Paolo's work, refactored, cleared up:
4191         
4192         * threadpool.c, icall.c: ifdef code that requires a working socket
4193         stack.
4194
4195         * metadata.c (mono_metadata_field_info): Do not attempt to return
4196         a value from a function declared as void.
4197
4198         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
4199         from the console stack.
4200
4201         * assembly.c: use strrchr instead of rindex.
4202
4203         * class.c, object.c, marshal.c, icall.c, reflection.c: include
4204         alloca.h on systems that have it.
4205
4206         * environment.c: Avoid code that uses stuff from
4207         HAVE_SYS_UTSNAME_H
4208         
4209         * appdomain.c: Include sys/time.h.
4210
4211         * console-io.c: include sys/ioctl.h if it is available.
4212
4213 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
4214
4215         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
4216
4217         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
4218         the method builder.
4219
4220         * marshal.c: Set mb->skip_visibility instead of setting it on the method
4221         after it was created and cached, as the later is not thread safe.
4222         
4223 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
4224
4225         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
4226         called while the debugging module is not initialized. Fixes #471669.
4227
4228 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
4229
4230         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
4231
4232         Fixes #471255.
4233
4234 2009-02-02  Mark Probst  <mark.probst@gmail.com>
4235
4236         * generic-sharing.c (lookup_or_register_other_info): Make sure the
4237         loader lock is not taken while the templates lock is held.  Fixes
4238         #471089.
4239
4240 2009-02-02  Mark Probst  <mark.probst@gmail.com>
4241
4242         * metadata.c (type_in_image): Added a check to fix a monodis
4243         crash.
4244
4245 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
4246
4247         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
4248         nullable arguments.
4249
4250         * object.c (mono_runtime_invoke_array): Ditto.
4251         
4252         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
4253         freeing wrappers of dynamic methods.
4254
4255         * loader.c (mono_free_method): Call it. Fixes #463323.
4256         
4257         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
4258         methods taking vtype/byref arguments, to fix yet another bug caused by
4259         the sharing of runtime invoke wrappers. Partly fixes #471259.
4260
4261 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
4262
4263         * debug-mono-symfile.c (check_line): Return NULL instead of returning
4264         <first file in file table>:1 when the IL offset does not have an associated
4265         line number.
4266
4267 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
4268
4269         * mono-debug.c (mono_debug_lookup_locals): New function to return local
4270         variable info for a method.
4271
4272         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
4273         
4274 2009-01-30  Jb Evain  <jbevain@novell.com>
4275
4276         * pedump.c: reuse code from monodis to make sure pedump honors
4277         MONO_PATH, which is needed to verify net_2_1 assemblies.
4278
4279 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
4280
4281         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
4282         there is no line number info.
4283
4284 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
4285
4286         Avoid some MonoType allocations
4287         * reflection.c (mono_reflection_initialize_generic_parameter):
4288         Reuse MonoType from param->pklass rather than allocating one.
4289         (mono_dynamic_image_free): Update to changes.
4290
4291 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
4292
4293         Rearrange some code to improve consistency
4294         * reflection.c (mono_reflection_setup_generic_class): Move body ...
4295         (mono_reflection_initialize_generic_parameter): ... here.
4296
4297 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
4298
4299         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
4300         with type constraints as an experiment.
4301
4302         * boehm-gc.c (on_gc_notification): Update mono_stats.
4303
4304 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
4305
4306         Avoid some allocations
4307         * class-internals.h (_MonoGenericInst::type_argv): Convert from
4308         pointer to tail array to avoid extra allocation.
4309         * metadata.c (free_generic_inst): Update to changes.
4310         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
4311         on-stack struct.
4312
4313 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
4314
4315         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
4316         return TRUE if the two type objects are the same.
4317
4318 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
4319
4320         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
4321         (mono_class_native_size): Use klass->marshal_info->min_align instead of
4322         klass->min_align, since klass->min_align contains the managed alignment,
4323         while the native alignment can be different, like for longs on x86.
4324         Fixes #469135.
4325
4326         * class-internals.h (MonoMarshalType): Add a min_align field.
4327
4328 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
4329
4330         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
4331         the 1.0 format.
4332
4333 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
4334
4335         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
4336         some comments about the usage of the used_regs field.
4337
4338         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
4339         Fixes #469217.
4340
4341 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
4342
4343         * appdomain.c: return NULL instead of throwing FileNotFoundException
4344         when LoadAssembly() fails.
4345
4346 2009-01-23  Mark Probst  <mark.probst@gmail.com>
4347
4348         * metadata.c (mono_metadata_generic_param_equal): Only compare the
4349         image if the owner is NULL.  Fixes the AOT failures.
4350
4351 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
4352
4353         * metadata.c (mono_metadata_load_generic_params): Initialize the 
4354         MonoGenericParam structure using memset so the image field is initialized
4355         as well.
4356
4357 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4358
4359         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
4360         a plain store.
4361
4362 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
4363
4364         * class.c (mono_class_setup_vtable_general): In the generic instance
4365         optimization, set method->slot for abstract virtual methods. Fixes part of
4366         #467834.
4367
4368 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4369
4370         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
4371         which signals that the unloading has started but all appdomain services must
4372         remain operational.
4373
4374         * appdomain.c (mono_domain_unload): The initial state for unloading now
4375         is unloading_start and we switch to unloading after the managed call to
4376         AppDomain::DomainUnload has finished.
4377
4378         The new unloading state has to be created because managed code in the
4379         DomainUnload event can depend on things like the threadpool still working.
4380         The domain must remain fully functional while the event executes.
4381
4382         This shown as an issue due to Process::WaitForExit, which waits for
4383         async reads of stdout and stderr to complete. Since those are processed
4384         in the threadpool the code deadlocks because the DomainUnload callback 
4385         waits for the async read finished event, which should have been set by a
4386         threadpool job but has been discarded due to the domain been in unload
4387         state.
4388
4389 2009-01-21  Mark Probst  <mark.probst@gmail.com>
4390
4391         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
4392         image must match.
4393
4394 2009-01-21  Mark Probst  <mark.probst@gmail.com>
4395
4396         * reflection.c (resolve_object): For fields, inflate the class and
4397         then get the field in the inflated class.
4398
4399 2009-01-20  Mark Probst  <mark.probst@gmail.com>
4400
4401         * object-internals.h (struct _MonoException): Added a comment
4402         explaining the new use of trace_ips.
4403
4404 2009-01-20  Mark Probst  <mark.probst@gmail.com>
4405
4406         * generic-sharing.c (inflate_other_data): Inflate array methods
4407         correctly.
4408
4409         * loader.c, class-internals.h: Rename search_in_array_class() to
4410         mono_method_search_in_array_class() and make it non-static.
4411
4412 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
4413
4414         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
4415         Hopefully fixes #458168.
4416
4417 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
4418
4419         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
4420         as it is performed elsewhere.
4421
4422         Code is contributed under MIT/X11 license
4423
4424 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
4425
4426         * mono-perfcounters-def.h: Add counters for asp.net requests total and
4427         requests queued.
4428         * object.c (mono_raise_exception): Increment the exceptions total
4429         counter when an exception is thrown.
4430         * class-internals.h: Add a location for storing the total number of
4431         asp.net requests served.
4432         * mono-perfcounters.c: Implement update support for asp.net counters
4433         from the class libraries. Implement read support for asp.net counters
4434         and exceptions total counter.
4435
4436 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
4437
4438         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
4439         accessing klass->methods. Fixes #467385.
4440
4441 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
4442
4443         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
4444         for byval arguments without an [Out] attribute. Fixes #467212.
4445
4446         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
4447         Fix compilation under android.
4448         
4449         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
4450         processed, scan them directly after they are copied, to achieve better locality
4451         and cache usage.
4452
4453         * socket-io.c: Applied patch from Koushik Dutta
4454         (koush@koushikdutta.com). Disable IPV6 when running under android.
4455
4456 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
4457
4458         * icall.c (ves_icall_InternalExecute): Add write barriers.
4459
4460         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
4461         the GC code.
4462
4463         * sgen-gc.c: Implement write barriers in IL code.
4464
4465 2009-01-17  Geoff Norton  <gnorton@novell.com>
4466
4467         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
4468
4469 2009-01-17  Geoff Norton  <gnorton@novell.com>
4470
4471         * image.c: When unloading the image->references table, there can be gaps
4472         in it.  Ensure that we iterate every entry to avoid leaking assembly references
4473         when unloading an appdomain.
4474
4475 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
4476
4477         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
4478         speed up ptr-in-nursery checks.
4479
4480         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
4481         threads_lock () to prevent deadlocks.
4482
4483         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
4484         does not need to be scanned during minor collections, since writes to it
4485         must use write barriers.
4486
4487 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
4488
4489         * metadata-verify.c: Add pe nt header verification.
4490         
4491 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
4492
4493         * gc.c: Fix a few warnings when using SGEN.
4494
4495 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
4496
4497         * metadata-verify.c: Add pe optional header verification.
4498
4499 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
4500
4501         * sgen-gc.c: Add support for user defined marker functions, used by
4502         MonoGHashTable to avoid registering a GC root for every hash node.
4503
4504 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
4505
4506         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
4507         non-pinned roots into separate hashes to avoid having to traverse them
4508         in functions which are only interested in one kind.
4509
4510 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
4511
4512         * metadata-verify.c: Add pe header machine field verification.
4513         
4514 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
4515
4516         * metadata-verify.c: Add pe header size verification.
4517
4518 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
4519
4520         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
4521         using the GC, they don't contain references.
4522
4523         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
4524
4525 2009-01-13  Geoff Norton  <gnorton@novell.com>
4526
4527         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
4528         AppDomains created on the native side can be cleaned up on the native side.
4529
4530 2009-01-13  Geoff Norton  <gnorton@novell.com>
4531
4532         * appdomain.c: Ensure that we call mono_context_init for the embedding api
4533         as well as the managed api.
4534
4535 2009-01-13  Geoff Norton  <gnorton@novell.com>
4536
4537         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
4538         with a MonoAppDomain initialized against it.
4539
4540 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
4541
4542         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
4543         
4544         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
4545
4546         * marshal.c: Avoid setting the exception clauses after a method has been entered 
4547         into the wrapper caches. Fixes #465700.
4548
4549         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
4550         method builder.
4551         (mono_mb_create_method): Set the clauses from the method builder.
4552
4553 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4554
4555         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
4556         Patch from Makoto Kishimoto.
4557
4558 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
4559
4560         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
4561         encoding them as ROOT_DESC_COMPLEX.
4562         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
4563
4564 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
4565
4566         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
4567         no longer point to the nursery.
4568
4569         * sgen-gc.c: Add a few comments/FIXMEs.
4570         
4571         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
4572
4573         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
4574         initialization of the various _method variables thread safe. Fixes
4575         #465377.
4576
4577 2009-01-12  Mark Probst  <mark.probst@gmail.com>
4578
4579         * domain.c, domain-internals.h: Remove the shared_generics_hash
4580         and its lookup functions.
4581
4582 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
4583
4584         * socket-io.c:  Fixing the MSVC build. 
4585
4586         Code is contributed under MIT/X11 license.
4587
4588 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
4589
4590         * metadata-verify.c: Add pe header watermark verification.
4591
4592 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
4593
4594         * metadata-verify.c: Add lfanew verification.
4595
4596 2009-01-12  Jb Evain  <jbevain@novell.com>
4597
4598         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
4599         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
4600
4601 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
4602
4603         * socket-io.c: Fix the build.
4604
4605         * environment.c: Fix an #ifdef.
4606
4607 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
4608
4609         * threadpool.c (async_invoke_thread): Handle the wait function returning
4610         WAIT_IO_COMPLETION as well.
4611         (async_invoke_io_thread): Ditto.
4612
4613 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
4614
4615         * threads.c: Fixing the Windows build.
4616
4617         Code is contributed under MIT/X11 license.
4618
4619 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
4620  
4621         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
4622         interrupt a wait.
4623         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
4624         the thread to wait again.
4625
4626 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
4627
4628         * metadata-verify.c: Initial skeleton of the metadata verifier.
4629
4630         * pedump.c: Add support for the metadata verifier.
4631
4632         * verify-internal.h: Export the whole assembly metadata verifier function.
4633
4634 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
4635
4636         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
4637
4638 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
4639
4640         * Makefile.am: Upgrade dtrace-prelink.sh location.
4641
4642 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
4643
4644         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
4645         well. Otherwise the shutdown deadlock that happens on unix will can happen
4646         as well.
4647         If the main thread code finishes too fast it's possible that the finalizer
4648         thread won't have executed yet, won't record itself as the finalizer thread
4649         and the shutdown sequence will wait on it forever.
4650
4651 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
4652
4653         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
4654         with MSVC.
4655
4656 2009-01-08  Miguel de Icaza  <miguel@novell.com>
4657
4658         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
4659         Robert Jordan for pointing this out.
4660
4661 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
4662
4663         * icall.c
4664         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
4665         ves_icall_System_IO_DriveInfo_GetDriveType.
4666
4667 2009-01-07  Miguel de Icaza  <miguel@novell.com>
4668
4669         * icall.c: Wrap calls to mono_strtod in CriticalSection
4670         invocations when using eglib, to work around #464316.
4671
4672 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
4673
4674         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
4675         return value of GetCurrentDirectory to never access unitialized memory.
4676
4677 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
4678
4679         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
4680         return value of GetCurrentDirectory and expand the buffer if needed.
4681
4682         Fixes #459094.
4683
4684 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
4685
4686         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
4687           Adding a call to mono_init_com_types.
4688
4689         Code is contributed under MIT/X11 license.
4690
4691 2009-01-07  Geoff Norton  <gnorton@novell.com>
4692
4693         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
4694         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
4695         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
4696         be the value of the ip buffer.
4697
4698 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
4699
4700         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
4701         interfaces_packed here.
4702
4703         Fixes part of #463294.
4704
4705 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
4706
4707         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
4708
4709         Fixes part of #463294.
4710
4711 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
4712
4713         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
4714         is a boxed complex as well.
4715
4716         Fixes part of #463294.
4717
4718 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
4719
4720         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
4721         control if a methodspec should be created for the generic method definition from external assemblies.
4722         Caching of methodspec is done using the handleref hash table.
4723
4724         Fixes #462592.
4725
4726 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
4727
4728         * loader.c (find_method): When searching the interfaces of a class
4729         check the transitive closure of implemented interfaces.
4730
4731         Fixes #463303.
4732
4733 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
4734
4735         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
4736         
4737 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
4738
4739         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
4740         interfaces calculation to fill_valuetype_array_derived_types.
4741
4742         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
4743         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
4744         for example.
4745
4746         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
4747         interfaces for valuetypes if needed.    
4748
4749         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
4750         for their basetype as well. Types are array expanded if rank is > 0.
4751
4752         Fixes #400716.
4753
4754 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
4755
4756         * socket-io.h : Changing the signature of
4757           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
4758           the blocking state.
4759
4760         * icall-def.h :  Changing the signature of
4761           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
4762
4763         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
4764           For Windows only.  Avoid blocking when calling accept by
4765           querying for a connection via select.  The loop also queries
4766           the thread state every 1000 micro seconds for the thread
4767           stop state.  This will avoid the process hanging on shutdown
4768           when using a TcpChannel that is never connected to.
4769
4770         Code is contributed under MIT/X11 license.
4771
4772 2008-12-30  Marek Safar  <marek.safar@gmail.com>
4773
4774         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
4775
4776 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
4777
4778         * class.c (get_implicit_generic_array_interfaces): Extract common
4779         code to a helper function making it a lot easier on the eyes.
4780
4781 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
4782
4783         * class.c (get_implicit_generic_array_interfaces): If the internal
4784         enumerator is an interface inflate System.Object instead of itself.
4785
4786         Fixes #461261.
4787
4788 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
4789
4790         * object.c (mono_runtime_invoke_array): Don't assert with
4791         byref nullable types.
4792
4793         * marshal.c (mono_marshal_get_runtime_invoke): To handle
4794         byref nullables we unbox the object and store it on the
4795         stack. 
4796         We can't use the boxed object since it is the T of Nullable<T>
4797         and the boxed representation of a nullable it's underlying type
4798         or null.
4799         We could cheat and create a boxed nullable and use the same
4800         machinery of other byref VTs but this feels like a hack and
4801         using the stack has the bonus of reducing heap pressure.
4802
4803         Fixes #461941.
4804
4805 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
4806
4807         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
4808         return value.
4809
4810         Fixes #461867.
4811
4812 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
4813
4814         * icall-def.h : Adding an internal call definition for 
4815           System.Environment.internalBroadcastSettingChange.
4816
4817         * icall.c : Adding a Windows only implementation to broadcast a 
4818           WM_SETTINGCHANGE when an environment variable has changed.
4819
4820         Code is contributed under MIT/X11 license.
4821
4822 2008-12-19  Mark Probst  <mark.probst@gmail.com>
4823
4824         * class.c, class-internals.h: Made
4825         mono_class_has_parent_and_ignore_generics() non-static.
4826
4827 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
4828
4829         * image.c: deal with the mmap failing when loading an image.
4830
4831 2008-12-17  Geoff Norton  <gnorton@novell.com>
4832
4833         * threadpool.c: Ensure that the io_queue_lock is initialized
4834         in all circumstances, as we always attempt to cleanup against it.
4835
4836 2008-12-17  Miguel de Icaza  <miguel@novell.com>
4837
4838         * icall.c (ves_icall_System_Environment_get_Platform): For
4839         compatibility reasons for existing client code we will keep
4840         returning 4 for a while.   
4841
4842         For how long will depend on the documentation being updated, and
4843         for us to give client code a chance to be updated.
4844
4845         This reverts the original decison on #433108 since we did not
4846         catch roughly 33 instances of the broken code in our own source
4847         code base, we did not catch failures on the buildbots, and QA did
4848         not bring this as a problem.
4849
4850         Only today I found some customer's code breaking due to our own
4851         class libraries not being fully updated and tracked it down to
4852         this change.  I am reverting it because if we could not even get
4853         our story straight in our own code base, how can we hope that our
4854         end user code be fixed?
4855
4856         As of this morning, our Wiki page that documents how to detect
4857         Unix had not been fixed.    
4858
4859 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
4860
4861         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
4862
4863         * class.c (mono_class_get_fields): Handle loading errors.
4864
4865 2008-12-12 Mark Mason <mmason@upwardaccess.com>
4866
4867         * 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.
4868         
4869 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
4870
4871         * mono-perfcounters.c: avoid warning.
4872
4873 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
4874
4875         * reflection.c (ensure_runtime_vtable): Work on generic instances and
4876         make sure all interfaces have MonoClass::interface_id set.
4877
4878         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
4879         method table is property set.
4880
4881 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
4882
4883         * class.c: New function mono_class_setup_interface_id that setup
4884         MonoClass::interface_id if needed.
4885
4886         * class-internals.h: Export new function.
4887
4888 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
4889
4890         * class.c: Add code to sanity check the vtable after setup_vtable_general
4891         has done it's work.
4892
4893 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4894
4895         * icall.c: make Assembly.GetExecutingAssembly work properly when
4896         reflection is used to invoke the method.
4897         Bug #321781 fixed.
4898
4899 2008-12-11  Mark Probst  <mark.probst@gmail.com>
4900
4901         * metadata/generic-sharing.c: Look for constraints in all type
4902         arguments, not just the first one.
4903
4904 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
4905
4906         * appdomain.c: return the correct CodeBase for an Assembly instance
4907         that was loaded from the shadow-copy directories.
4908         Bug #458190 fixed.
4909
4910 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
4911
4912         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
4913
4914         * sgen-gc.c (check_object): New debugging helper function.
4915
4916         * object.c: Fix calls to mono_value_copy_array ().
4917
4918 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
4919
4920         * class.c (mono_class_setup_fields): If working on an inflated class
4921         first check if the generic definition did init with success.
4922
4923         Fixes #445361.
4924
4925 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
4926
4927         pedump.c (main): Fix a warning.
4928
4929 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
4930
4931         * object-internals.h : Adding a definition for 
4932           MonoReflectionComVisibleAttribute.
4933
4934         * marshal.c (cominterop_com_visible) :  Method added to check the 
4935           ComVisible attribute of a class.
4936
4937         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
4938           cominterop_raise_hr_exception added to consolidate common code 
4939           to raise hr exceptions.
4940
4941         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
4942           if a managed class should support IDispatch.
4943
4944         * marshal.c 
4945           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
4946           Added additional checks for managed object when getting 
4947           an IDispatch interface.
4948
4949         Code is contributed under MIT/X11 license.
4950
4951 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
4952
4953         pedump.c (main): Handle mono_get_method () returning NULL. 
4954
4955 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
4956
4957         * marshal.h: Fix a warning.
4958
4959 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
4960
4961         * marshal.c : Adding cominterop_release_all_rcws to release all
4962           runtime callable wrappers held by the runtime.
4963
4964         * marshal.h : Adding declaration for cominterop_release_all_rcws.
4965           
4966         Code is contributed under MIT/X11 license.
4967
4968 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
4969
4970         * metadata.c (mono_image_alloc_lock): New helper function.
4971         (mono_image_alloc0_lock): Ditto.
4972
4973         * metadata.c: Use the alloc_lock () helper functions for allocating
4974         memory from the image mempool.
4975
4976 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
4977
4978         * class.c (mono_class_from_generic_parameter): Document it's
4979         locking behavior. Fix double checked locking here, we stored in
4980         param->pklass a partially initialized MonoClass and no membar was used.
4981
4982 2008-12-05  Marek Habersack  <mhabersack@novell.com>
4983
4984         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
4985         (3) functions are present in the C library use them to do the
4986         job. If they are absent, make sure that the sum of int_part and
4987         dec_part is rounded before returning. This is necessary due to the
4988         division of dec_part by the power of 10 before the final addition
4989         is performed - if the result is not rounded in some cases it will
4990         yield invalid results.
4991
4992 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
4993
4994         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
4995         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
4996         instruction instead of a pointer constant.
4997
4998 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
4999
5000         * loader.c (mono_method_get_header): Do most of the work outside the
5001         loader lock, to avoid assembly load hook deadlocks.
5002
5003         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
5004         (mono_metadata_parse_type_full): Ditto.
5005
5006 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
5007
5008         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
5009         Make the stack depth fixed. Ensure proper argument passing to the backtrace
5010         funtions. Finally, use a lock to produce well ordered output.
5011
5012         The lock looks silly, as all calls to the corlib mempool should be guarded
5013         with the loader lock, but for some reason this fact doesn't help. 
5014
5015         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
5016
5017 2008-12-02  Mark Probst  <mark.probst@gmail.com>
5018
5019         * socket-io.c: 64 bit big-endian fixes.
5020
5021 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
5022
5023         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
5024         targets that require strict compatibility between the types.
5025
5026         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
5027         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
5028         Kill the strict argument and create a new one valuetype_must_be_boxed.
5029
5030         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
5031         state that all valuetypes must be boxed.
5032
5033         Fixes #448560.
5034
5035 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
5036
5037         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
5038         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
5039
5040         Contributed under MIT/X11 license.
5041
5042 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
5043
5044         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
5045         the inflate_generic_type machinery should handle it.
5046
5047         This avoids a crash when the field's flags is zero and it's type is
5048         a primitive.
5049         What happens is that mono_metadata_parse_type_full will see that opt_attrs
5050         is zero and will return one of the cached built-in primitive types. Since
5051         those types live in read-only memory, the code that copies it crashes.  
5052
5053 2008-11-28  Mark Probst  <mark.probst@gmail.com>
5054
5055         * object.c: Don't put function descriptors into generalized IMT
5056         thunks.
5057
5058 2008-11-28  Mark Probst  <mark.probst@gmail.com>
5059
5060         * class.c: Enable generic code sharing on PPC64.
5061
5062 2008-11-27  Mark Probst  <mark.probst@gmail.com>
5063
5064         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
5065         from mini/mini.c.
5066
5067         * generic-sharing.c: Allocate the method template slists from the
5068         image mempool so it doesn't leak.
5069
5070 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
5071
5072         * class.c (generic_array_methods): Release the linked list.
5073
5074 2008-11-27  Mark Probst  <mark.probst@gmail.com>
5075
5076         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
5077         invocation to g_utf16_to_utf8().
5078
5079 2008-11-26  Mark Probst  <mark.probst@gmail.com>
5080
5081         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
5082         arguments on big endian archs.
5083
5084 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5085
5086         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
5087         the type name (test added in corlib).
5088
5089 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5090
5091         * pedump.c: initialize perf. counters. Fixes a segv.
5092
5093 2008-11-25  Martin Baulig  <martin@ximian.com>
5094
5095         * mono-debug-debugger.c
5096         (mono_debugger_runtime_invoke): Return the exception object if an
5097         exception was thrown.  Visual Studio displays the exception object
5098         in the locals window.
5099
5100 2008-11-24  Mark Probst  <mark.probst@gmail.com>
5101
5102         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
5103         ftnptr.
5104
5105 2008-11-24  Mark Probst  <mark.probst@gmail.com>
5106
5107         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
5108         MONO_TYPE_U are sizeof (gpointer), too.
5109
5110 2008-11-24  Mark Probst  <mark.probst@gmail.com>
5111
5112         * marshal.c (mono_type_native_stack_size): Fixed size and
5113         alignment for reference types.
5114
5115 2008-11-23  Mark Probst  <mark.probst@gmail.com>
5116
5117         * class.c (mono_class_generic_sharing_enabled): Disable generic
5118         code sharing for PPC64.
5119
5120 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
5121
5122         * icall.c (mono_method_get_equivalent_method): Make sure
5123         method->klass->methods is inited before looping over it.
5124
5125 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5126
5127         * object.c: when calling ExecuteAssembly in a newly created domain,
5128         the configuration file and application base are already set up.
5129         Bug #446353 take 2 fixed.
5130
5131 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
5132
5133         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
5134         Fixes #444715. Fix a warning.
5135
5136 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
5137
5138         * appdomain.c: write the full path of the assembly to the .ini file
5139         created when "shadow-copying"
5140         Bug #446353 fixed.
5141
5142 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
5143
5144         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
5145         if signature==FALSE.
5146
5147 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
5148
5149         * marshal.h : Fix the cygwin build.
5150            marshal.c:12442: undefined reference to `_IID_IMarshal'
5151           
5152         Code is contributed under MIT/X11 license.
5153
5154 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
5155
5156         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
5157           free threaded marshaler when QueryInterface is called on a COM callable
5158           wrapper requesting the IMarshal interface.
5159           
5160         Code is contributed under MIT/X11 license.
5161
5162 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
5163
5164         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
5165
5166         * reflection.c (mono_type_get_object): Special case the very common
5167         void type.
5168
5169         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
5170         hold typeof(void).
5171
5172 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
5173
5174         * process.h : Adding method declaration for
5175           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
5176           
5177         * process.c : Adding implementation for
5178           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
5179           
5180         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
5181           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
5182
5183         Code is contributed under MIT/X11 license.
5184
5185 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
5186
5187         * appdomain.c (unload_thread_main): Clean up threadpool by
5188         calling mono_thread_pool_remove_domain_jobs.
5189
5190         * domain-internals.h (struct _MonoDomain): Add new fields to
5191         help coordinate the cleanup of the threadpool.
5192
5193         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
5194         that cleans up the threadpool of all jobs associated with an appdomain.
5195         It does that by cleaning up the queues and making sure all active
5196         threads are accounted.
5197
5198         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
5199         unloaded or in the process of. Take this is such way that there is
5200         no race condition between another thread starting the unload and the
5201         current thread acknowledging it.
5202
5203         * threadpool.c (async_invoke_thread): Same.
5204
5205         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
5206         firing the new thread.
5207
5208         * threadpool.c (start_tpthread): Same.
5209
5210         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
5211
5212         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
5213
5214 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
5215
5216         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
5217         Add support for DuplicateHandle.
5218         
5219         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
5220         Add support for DuplicateHandle.
5221         
5222         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
5223         Add support for DuplicateHandle.
5224
5225         Code is contributed under MIT/X11 license.
5226
5227 2008-11-06  Mark Probst  <mark.probst@gmail.com>
5228
5229         * class-internals.h: Make min_align into a whole byte.
5230
5231         * class.c: Set min_align for SIMD types to 16.
5232
5233 2008-11-05  Geoff Norton  <gnorton@novell.com>
5234
5235         * attach.c: Default the attacher to enabled for all cases including
5236         embedded.
5237
5238 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
5239
5240         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
5241         change r117650.
5242
5243 2008-11-04  Mark Probst  <mark.probst@gmail.com>
5244
5245         * monitor.c, monitor.h: New function for querying offsets of
5246         members of MonoThreadsSync.
5247
5248 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
5249
5250         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
5251         to speed up this function and to avoid the boundless memory growth caused by
5252         the signature_dup () calls.
5253
5254 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
5255
5256         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
5257         wrapper.
5258
5259         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
5260         by 1 bit.
5261
5262         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
5263
5264 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
5265
5266         * appdomain.c:
5267         * domain-internals.h: made mono_set_private_bin_path_from_config()
5268         "internal".
5269         * object.c: call the above function after setting the configuration
5270         file path for the root domain.
5271         Fixes bug #314478.
5272
5273 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
5274
5275         * assembly.c: when the assembly is loaded from an absolute path, end
5276         basedir with a directory separator.
5277         Bug #440781 fixed.
5278
5279 2008-10-30  Mark Probst  <mark.probst@gmail.com>
5280
5281         * monitor.c (mono_monitor_get_fast_enter_method): If
5282         CompareExchange is not available, don't create the fastpath
5283         instead of asserting.  (The method is missing in the 1.1 profile.)
5284
5285 2008-10-30  Mark Probst  <mark.probst@gmail.com>
5286
5287         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
5288
5289         * monitor.c, monitor.h: Code for generating Monitor.Enter and
5290         Monitor.Exit IL fastpaths.
5291
5292 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
5293
5294         * class.c (mono_class_create_from_typedef): Added Vector2ul.
5295
5296 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
5297
5298         * class.c (mono_class_create_from_typedef): Added Vector2l.
5299
5300 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
5301
5302         * class.c (mono_class_create_from_typedef): Added Vector2d.
5303
5304 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5305
5306         * appdomain.c: translate \ into / for cache_path.
5307         * domain-internals.h: new mono_is_shadow_copy_enabled().
5308         * icall.c: (fill_reflection_assembly_name) do the same path
5309         manipulations that get_code_base does.
5310         (get_code_base) use mono_is_shadow_copy_enabled.
5311
5312 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5313
5314         * appdomain.c: shadow-copied assemblies go to CachePath +
5315         ApplicationName when both are set. DynamicBase has nothing to do with
5316         shadow copies.
5317         Bug #406877 fixed.
5318
5319 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
5320
5321         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
5322         STANDALONESIG table.
5323
5324         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
5325         standalone signatures.
5326
5327         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
5328         comparison code: instead of comparing the signatures using a custom
5329         equals function, transform them to a common signature and compare that. This
5330         works better with AOT.
5331
5332 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
5333
5334         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
5335
5336         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
5337         call for generic instances.
5338         (mono_class_setup_properties): Call setup_properties () before accessing
5339         gklass->properties.
5340
5341         * class.c (mono_class_get_virtual_methods): New helper function to iterate
5342         over the virtual methods of a class using metadata if possible, avoiding the
5343         creation of MonoMethod's for non-virtual methods.
5344         
5345         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
5346         get_virtual_methods () to iterate over the virtual methods of classes.
5347
5348 2008-10-25  Martin Baulig  <martin@ximian.com>
5349
5350         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
5351
5352 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
5353
5354         * class.c (mono_class_create_from_typedef): Added Vector4i.
5355
5356 2008-10-24  Mark Probst  <mark.probst@gmail.com>
5357
5358         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
5359         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
5360         special-casing applies to eliminate the call completely.
5361
5362 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
5363
5364         * class.c (mono_class_create_from_typedef): Added Vector8s.
5365
5366 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
5367
5368         * class.c (mono_class_create_from_typedef): Added Vector16sb.
5369
5370 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
5371
5372         * icall.c: get rid of annoying warning.
5373
5374 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
5375
5376         * threadpool.c: in 1.x, if you change the background status of the
5377         threadpool thread, it's not reset.
5378         Remove unnecessary calls to SetState.
5379
5380 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
5381
5382         * threadpool.c: asynchronously create a set of idle threads upon first
5383         use of the threadpool. SetMinThreads will now start the appropriate
5384         number of idle threads if they are not already running. The default is
5385         1 threadpool thread per CPU. Increased the maximum number of threads
5386         per CPU to 10.
5387
5388 2008-10-22  Martin Baulig  <martin@ximian.com>
5389
5390         Revert r116521 from Zoltan, it breaks the debugger:
5391
5392         * class.c (mono_class_get_virtual_methods): New helper function to iterate
5393         over the virtual methods of a class using metadata if possible, avoiding the
5394         creation of MonoMethod's for non-virtual methods.
5395         
5396         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
5397         get_virtual_methods () to iterate over the virtual methods of classes.
5398
5399 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
5400
5401         * threads.c: when creating a threadpool thread, set its state to
5402         'background'.
5403         * threadpool.c: reset the background state of a threadpool thread
5404         after finishing each work item
5405         Bug #437888 fixed.
5406
5407 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
5408
5409         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
5410         
5411         * class.c (mono_class_setup_vtable_general): Add an optimized version for
5412         generic instances which works by inflating the methods in the container
5413         class's vtable.
5414
5415         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
5416         variant which doesn't make a copy if no inflation was done.
5417         (mono_class_setup_fields): Use it.
5418
5419         * metadata.c (mono_metadata_get_shared_type): New helper function to
5420         return a shared instance of a given MonoType.
5421
5422         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
5423         a copy of most non-generic types.
5424
5425 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
5426
5427         * threadpool.c: remove one more GetSystemInfo () call.
5428
5429 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
5430
5431         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
5432         use the code in mono-proclib.h to get processor information.
5433
5434 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
5435
5436         * appdomain.c: fixed the logic that determines whether assemblies in a
5437         directory are "shadow-copied" or not. Bug #433483 fixed.
5438
5439 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
5440
5441         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
5442         warning.
5443
5444 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
5445
5446         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
5447         returning a vtype.
5448
5449         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
5450         reflection.c: Use mono_field_get_name () for accessing a field's name.
5451
5452         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
5453         class.c
5454
5455         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
5456         field.
5457
5458         * loader.c (find_method_in_class): Reenable the metadata optimization by
5459         not using it for generic instances.
5460
5461         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
5462         data/def_type fields from MonoClassField into a separate structure.
5463         (struct MonoClassField): Remove data/def_type fields.
5464         (struct _MonoClass): Add a 'field_def_values' array to store the default
5465         values/RVA for fields.
5466
5467         * class.c reflection.c: Update after the changes.
5468         
5469         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
5470         for accessing field->data.
5471
5472         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
5473
5474         * loader.c (find_method_in_class): Revert the last change for now as
5475         it breaks Mono.C5 unit tests.
5476
5477         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
5478         'field_generic_types' and 'field_objects' which contain the information
5479         previously stored in MonoInflatedField.
5480         (MonoInflatedField): Delete.
5481         (struct _MonoClassField): Delete 'generic_info' field.
5482
5483         * reflection.c: Store the information which was previously in 
5484         field->generic_info in MonoDynamicGenericClass instead.
5485
5486         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
5487         MonoClassField changes.
5488
5489 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
5490
5491         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
5492         store the value inside the data array of the MonoMethodWrapper.
5493         This saves memory, is faster and fixes the lifetime issues (methods
5494         were never removed from the hash previously). May also fix bug#436996.
5495
5496 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
5497
5498         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
5499         generic instances, compute the type from the generic definition instead of
5500         looking in field->generic_info.
5501
5502         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
5503         for inflated fields, the only user was get_fieldref_token () which no
5504         longer needs it.
5505
5506         * class.c (mono_class_init): Revert the last change as it seems to cause
5507         crashes.
5508
5509         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
5510         bytes on 64 bit platforms.
5511
5512         * object.c (mono_class_create_runtime_vtable): Fix a warning.
5513         
5514         * object.c (mono_class_create_runtime_vtable): Don't initalize
5515         field->data/field->def_type here, it is done lazily by 
5516         mono_class_get_field_default_value ().
5517
5518         * icall.c (ves_icall_get_enum_info): Call 
5519         mono_class_get_field_default_value () instead of directly accessing
5520         field->data and field->def_type.
5521
5522         * object.c (get_default_field_value): Ditto.
5523
5524         * class.c (mono_field_get_data): Ditto.
5525         
5526         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
5527         call for generic instances.
5528
5529         * loader.c (find_method_in_class): If klass != from_class, then inflate
5530         the method with the context of from_class, since the caller assumes this.
5531
5532 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
5533
5534         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
5535         for accessing method->slot.
5536
5537 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
5538
5539         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
5540
5541 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
5542
5543         * class.c (mono_method_get_vtable_index): Use
5544         mono_method_get_vtable_slot () for accessing method->slot.
5545
5546         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
5547         accessing klass->methods.
5548
5549         * class.c (mono_method_get_vtable_slot): New helper function.
5550         (mono_class_get_vtable_entry): Ditto.
5551         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
5552         accessing method->slot.
5553
5554         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
5555         method to get_inflated_method ().
5556
5557         * class.c (mono_class_get_inflated_method): New helper method to obtain
5558         a method of an inflated class without calling setup_methods ().
5559         (mono_class_get_cctor): Use get_inflated_method.
5560
5561         * generic-sharing.c (mono_class_get_method_generic): Ditto.
5562         
5563         * marshal.c image.c: Lazily create all the marshal caches.
5564
5565         * image.c (mono_image_init): Move initialization of runtime_invoke
5566         caches to marshal.c.
5567
5568         * marshal.c (get_cache): New helper function to lazily initialize a 
5569         wrapper cache.
5570         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
5571
5572         * debug-helpers.c (mono_method_full_name): Include generic arguments.
5573
5574 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
5575
5576         * loader.c: fixed check for interface type.
5577
5578 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
5579
5580         * appdomain.c: check for NULL setup before it's referenced.
5581
5582 p
5583 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
5584
5585         * class.c: remove the unused old vtable setup code.
5586
5587 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
5588
5589         * class.c: don't depend on interface order in
5590         setup_interface_offsets (bug #435777).
5591         * reflection.c: sort the InterfaceImpl table (patch from
5592         Jb Evain  <jbevain@novell.com>).
5593
5594 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
5595
5596         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
5597         the low level assemblies lock.
5598
5599 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
5600
5601         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
5602         object.c, reflection.c, socket-io.c, threads.c: introduced
5603         mono_framework_version () to return the major framewrok version,
5604         changed the code that was using more complex patterns to use it.
5605         Return the correct value for PlatformID for OSX.
5606
5607 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
5608
5609         * icall-def.h, process.h, process.c: added an icall to get info about
5610         processes using mono-proclib.
5611
5612 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
5613
5614         * mono-perfcounters.c: use the mono-proclib functions to
5615         access process information.
5616
5617 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
5618
5619         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
5620         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
5621         reflection.c: remove rawbuffer usage: mmap support is more sanely
5622         provided by utils/mono-mmap.
5623
5624 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
5625
5626         * gc.c: use posix semaphores when possible so that
5627         mono_gc_finalize_notify() is signal safe.
5628
5629 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
5630
5631         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
5632         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
5633         be #ifdef-ed out, the linker will remove the rest.
5634
5635         * marshal.c: Implement DISABLE_COM.
5636
5637         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
5638
5639 2008-10-11  Miguel de Icaza  <miguel@novell.com>
5640
5641         * locales.c (string_invariant_compare_char): Optimization: do not
5642         call g_unichar_type unless we actually need the information.
5643
5644 2008-10-10  Mark Probst  <mark.probst@gmail.com>
5645
5646         * object.c, class-internals.h: Also create remoting trampolines
5647         for generic methods.  Pass the domain to the remoting trampoline
5648         creation function, too.
5649
5650 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
5651
5652         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
5653
5654 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
5655
5656         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
5657         Vector4ui.
5658
5659 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
5660
5661         * assembly.c:
5662         * locales.c: remove the use of g_strdown. Fixes bug #322313.
5663
5664 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
5665
5666         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
5667         for the least possible amount of time (extending the fix in r113458).
5668
5669 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
5670
5671         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
5672
5673 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
5674
5675         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
5676         as possible simd intrinsic types.
5677         Optimized the test to check for the common prefix first.
5678
5679 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
5680
5681         * class.c: back out part of a broken optimization committed on
5682         May 23th (bug #433908).
5683
5684 2008-10-09  Mark Probst  <mark.probst@gmail.com>
5685
5686         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
5687         Win32.  Should fix #432388 for most cases until we have the new
5688         profiler on Win32.
5689
5690 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
5691
5692         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
5693         instead of using inst->id so the hash is stable for AOT.
5694
5695 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5696
5697         * appdomain.c:
5698         * icall.c: create a .ini file for shadow-copied assemblies that
5699         contains the location of the original assembly. Use this to return the
5700         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
5701         Also fix the number of '/' for windows when returning the CodeBase.
5702         Fixes bug #430920.
5703
5704 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
5705
5706         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
5707
5708         Code is contributed under MIT/X11 license.
5709
5710 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
5711
5712         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
5713           if if the class vtable needs initialized.
5714
5715         Code is contributed under MIT/X11 license.
5716
5717 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
5718
5719         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
5720           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
5721           STRING->BSTR, and CLASS->INTERFACE.
5722
5723         Code is contributed under MIT/X11 license.
5724
5725 2008-10-07  Marek Habersack  <mhabersack@novell.com>
5726
5727         * sysmath.h: changed the declaration of the
5728         ves_icall_System_Math_Round2 icall by adding an extra
5729         away_from_zero parameter.
5730
5731         * sysmath.c (ves_icall_System_Math_Round2): added support for
5732         away from zero rounding. The icall now takes an extra boolean
5733         parameter to signal that away from zero operation is requested.
5734
5735 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
5736
5737         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
5738         the delegate klass so it can work with full-aot.
5739         (mono_marshal_get_delegate_end_invoke): Ditto.
5740         (mono_marshal_get_delegate_invoke): Ditto.
5741
5742 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
5743
5744         * gc.c, attach.h, attach.c: remove a bad pattern:
5745         add_finalizer_callback () is not implemented correctly, it can't
5746         without adding more overhead to the finalizer loop and it's not
5747         even needed, since we know exactly what we need to call, so there is
5748         no need to do so through an expensive function pointer.
5749
5750 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
5751
5752         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
5753         for the no-gc case.
5754         * attach.c (mono_attach_init): Remove the #ifdef.
5755
5756 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
5757
5758         * attach.c (mono_attach_init): Don't use
5759         mono_gc_add_finalizer_thread_callback when compiling without GC.
5760         Fixes #432306.
5761         
5762         Code is contributed under MIT/X11 license.
5763
5764 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
5765
5766         * class.c (mono_class_create_from_typedef): Remove the 
5767         #ifndef DISABLE_SIMD stuff.
5768
5769 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
5770
5771         * class-internals.h (MonoClass): Added simd_type bit field.
5772
5773         * class.c (mono_class_create_from_typedef): Check if type is a simd
5774         intrinsic.
5775
5776 2008-10-03  Mark Probst  <mark.probst@gmail.com>
5777
5778         * object.c (mono_method_add_generic_virtual_invocation): Only add
5779         instantiations to the thunk whose count is at least as large as
5780         the threshold.
5781
5782 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
5783
5784         * icall.c: changed the Type of the exception thrown when trying to
5785         invoke a constructor on an abstract class. Part of the fix for bug
5786         #324185.
5787
5788 2008-10-02  Mark Probst  <mark.probst@gmail.com>
5789
5790         * class.c, class-internals.h (mono_method_get_vtable_index): New
5791         function which returns the index into the vtable and properly
5792         handles inflated virtual generic methods.
5793
5794 2008-10-01  Mark Probst  <mark.probst@gmail.com>
5795
5796         * object.c, domain.c, object-internals.h, domain-internals.h:
5797         Generalize IMT thunk machinery to also handle thunks for virtual
5798         generic method invokes.  When a virtual generic method is invoked
5799         more than a number of times we insert it into the thunk so that it
5800         can be called without lookup in unmanaged code.
5801
5802         * generic-sharing.c, class-internals.h: Fetching a
5803         MonoGenericInst* for a method from an (M)RGCTX.
5804
5805 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
5806
5807         * marshal.c (emit_marshal_string): Applied a variant of a patch by
5808         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
5809         marshalling. Fixes #431304.
5810
5811 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
5812
5813         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
5814           handle when ref is specified without In or Out.
5815
5816         Code is contributed under MIT/X11 license.
5817
5818 2008-09-30  Mark Probst  <mark.probst@gmail.com>
5819
5820         * loader.c (mono_get_method_constrained): Don't expand method with
5821         the class's context, because it's already a method of that class.
5822
5823 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
5824
5825         * attach.c : should be correct build fix.
5826
5827 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
5828
5829         * attach.c: Fix the previous change.
5830
5831 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
5832
5833         * attach.c : quick w32 build fix.
5834
5835 2008-09-27  Miguel de Icaza  <miguel@novell.com>
5836
5837         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
5838         crashes MonoDevelop: #430455.
5839
5840 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
5841
5842         * domain-internals.h (struct _MonoDomain): Move most fields used only by
5843         the JIT do MonoJitDomainInfo in ../mini/mini.h.
5844
5845         * domain.c: Remove initialization/cleanup of the removed fields.
5846
5847 2008-09-27  Mark Probst  <mark.probst@gmail.com>
5848
5849         * class.c (mono_class_generic_sharing_enabled): Enable generic
5850         code sharing for PPC.
5851
5852 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
5853
5854         * attach.c : Fixing the Windows builds.
5855
5856         Code is contributed under MIT/X11 license.
5857
5858 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
5859
5860         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
5861         the default generic sharing mode to 'all'.
5862
5863 2008-09-25  Mark Probst  <mark.probst@gmail.com>
5864
5865         * generic-sharing.c, class-internals.h: New function for checking
5866         whether a method needs a static RGCTX invoke wrapper.  A few
5867         funtions moved from mini/generic-sharing.c.
5868
5869         * icall.c: New function used.
5870
5871 2008-09-25  Mark Probst  <mark.probst@gmail.com>
5872
5873         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
5874         Static RGCTX invoke wrapping applies to value type methods, too.
5875
5876         * class.c (mono_class_setup_vtable_general): In generic-shared
5877         value types, wrap methods with a static RGCTX invoke wrapper.
5878
5879 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
5880
5881         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
5882         osx build.
5883
5884 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
5885
5886         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
5887         register a callback which is called when the finalizer thread is woken
5888         up.
5889         (finalizer_thread): Call the callback if it exists.
5890
5891         * attach.h attach.c: New files, implementing the attach mechanism.
5892
5893         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
5894         
5895         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
5896         by the previous change.
5897
5898 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
5899
5900         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
5901         loader.c, marshal.c, metadata-internals.h, metadata.c,
5902         method-builder.c, object.c, reflection.c: introduced specific functions
5903         to allocate from the domain and image mempools and cleaned up most of
5904         the code to use them (still missing a few in reflection.c).
5905         Keep the loader bytes counter updated.
5906
5907 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
5908
5909         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
5910         loader-related counters.
5911
5912 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
5913
5914         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
5915         added more MS-compatible counters.
5916
5917 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
5918
5919         * class.c (mono_class_setup_fields): Call setup_fields before accessing
5920         class->blittable. Fixes #428217.
5921
5922 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
5923
5924         * reflection.c (mono_image_get_field_on_inst_token): Call 
5925         field_encode_signature () since that handles custom modifiers too.
5926         Fixes #424663.
5927
5928 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
5929
5930         * reflection.c (add_custom_modifiers): New helper function to merge custom
5931         modifiers stored in objects to a MonoType.
5932         (fieldref_encode_signature): Encode custom modifiers.
5933         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
5934         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
5935
5936 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
5937
5938         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
5939         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
5940         64-bit IL only images because imports are not resolved for IL only images.
5941         Special thanks to Bill Holmes for finding this bug and testing the patch.
5942         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
5943
5944         Contributed under MIT/X11 license.
5945
5946 2008-09-19  Miguel de Icaza  <miguel@novell.com>
5947
5948         * mono-config.c (dllmap_start): Add support for the bits keyword
5949         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
5950
5951 2008-09-19  Mark Probst  <mark.probst@gmail.com>
5952
5953         * reflection.c (inflate_mono_method): When the class the method is
5954         to be inflated for is itself not inflated, just return the method.
5955
5956 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
5957
5958         * mono-perfcounters.c: use more user friendly process instance names.
5959
5960 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
5961
5962         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
5963           handle "[in] ref" and "[in][out] ref" cases.
5964
5965         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
5966           to mono_mb_create_method.  This was causing problems calling native to
5967           managed passing Variants by value.
5968
5969         Code is contributed under MIT/X11 license.
5970
5971 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
5972
5973         * class.c (can_access_internals): Call mono_assembly_load_friends ()
5974         before accessing the friend_assembly_names field.
5975
5976         * assembly.c (mono_assembly_load_friends): Make this callable multiple
5977         times.
5978         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
5979         called lazily when it is needed.
5980
5981         * metadata-internals.h (struct _MonoAssembly): Add 
5982         'friend_assembly_names_inited' flag.
5983
5984 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
5985
5986         * mono-perfcounters-def.h: fix the types of a few counters.
5987         * mono-perfcounters.c: implemented the instance names getter
5988         and a few bugfixes.
5989
5990 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
5991
5992         * culture-info-table.h : regenerated.
5993
5994 2008-09-17  Robert Jordan  <robertj@gmx.net>
5995
5996         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
5997         context bound objects. Fixes #415577.
5998
5999         Code is contributed under MIT/X11 license.
6000
6001 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
6002
6003         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
6004         implementation (bug #423582).
6005
6006 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
6007
6008         * object.c (mono_object_get_virtual_method): Handle the case method->slot
6009         is not set. Fixes #426309.
6010
6011 2008-09-16  Jb Evain  <jbevain@novell.com>
6012
6013         * class.c (mono_class_from_name): fix the exported type look up
6014         when the type is defined in a referenced assembly.
6015
6016 2008-09-16  Jb Evain  <jbevain@novell.com>
6017
6018         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
6019         increment the next index counter on each iteration to make that work
6020         for more than one type forwarder. Unmanaged part to fix #422929.
6021
6022 2008-09-15  Mark Probst  <mark.probst@gmail.com>
6023
6024         * object-internals.h: enum ComInterfaceType in
6025         MonoInterfaceTypeAttribute is guint32, not guint16.
6026
6027 2008-09-12  Mark Probst  <mark.probst@gmail.com>
6028
6029         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
6030         writing code.
6031
6032 2008-09-11  Mark Probst  <mark.probst@gmail.com>
6033
6034         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
6035         not gboolean.
6036
6037 2008-09-11  Mark Probst  <mark.probst@gmail.com>
6038
6039         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
6040         Endianness fixes for MonoSymbolFileOffsetTable.
6041
6042 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
6043
6044         * process.c (complete_path) : Removing quotes from the 
6045           input path.  The glib file routines do not handle file paths
6046           that have quotes around them.
6047
6048         Code is contributed under MIT/X11 license.
6049
6050 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
6051
6052         * socket-io.h : Adding a comment to provide locations where 
6053           changes to MonoSocketAsyncResult need to be synced.
6054
6055         Code is contributed under MIT/X11 license.
6056
6057 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
6058
6059         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
6060         parameters as well. Fixes #425001.
6061
6062 2008-09-08  Miguel de Icaza  <miguel@novell.com>
6063
6064         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
6065         windows build.
6066
6067 2008-09-07  Miguel de Icaza  <miguel@novell.com>
6068
6069         * console-io.c: Add support for tracking the window size if it
6070         changes.
6071
6072         The setup is very simple: the TtySetup function will now return a
6073         pointer to a location in memory that tracks the current console
6074         size.  The managed code checks its current value every time its
6075         queried against the last value set, and updates accordingly.
6076
6077         With this setup we can work with multiple consoles, and we do not
6078         require to poke into managed code from a signal handler.
6079
6080         Additionally, the environment for COLUMNS and LINES is now handled
6081         in unmanaged code.
6082
6083         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
6084
6085 2008-09-07  Mark Probst  <mark.probst@gmail.com>
6086
6087         * marshal.c (mono_type_native_stack_size): Treat
6088         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
6089
6090 2008-09-04  Jb Evain  <jbevain@novell.com>
6091
6092         * class.c (mono_class_is_assignable_from): fix assignability of nullables
6093         to nullables.
6094
6095 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
6096
6097         * verify.c (verify_type_compatibility_full): Revert change
6098         to allow converting a native int to unmanaged pointer be verifiable
6099         under non-strict mode.
6100         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
6101
6102         * verify.c: Added some TODOs.
6103
6104 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
6105
6106         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
6107           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
6108           Changed to use GlobalAlloc for the memory returned on Windows platforms.
6109
6110         Code is contributed under MIT/X11 license.
6111
6112 2008-09-02  Jb Evain  <jbevain@novell.com>
6113
6114         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
6115
6116 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
6117
6118         reflection.c (typebuilder_setup_fields): Handle classes with
6119         explicit size.
6120
6121 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
6122
6123         class.c (mono_class_setup_events): Add memory barrier due to
6124         double checked locking.
6125         
6126         class.c (mono_class_setup_properties): Same.
6127
6128 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
6129
6130         * class.c (mono_class_is_assignable_from): Fix the build.
6131         
6132         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
6133         before accessing klass->interface_bitmap. Fixes #421744.
6134
6135 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
6136
6137         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
6138         the runtime into no-exec mode, useful when running the AOT compiler.
6139
6140         * appdomain.c gc.c object.c: Avoid executing managed code when running
6141         in no-exec mode.
6142         
6143         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
6144
6145         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
6146         special case when the mono_assembly_loaded () returns NULL because the 
6147         search hook is not installed.
6148
6149 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
6150
6151         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
6152         crashes in bstr marshalling on linux.
6153
6154 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
6155
6156         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
6157         with more than one parameter.
6158
6159 2008-08-24  Miguel de Icaza  <miguel@novell.com>
6160
6161         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
6162         start/stop flow control as well when turning off ICANON (allows
6163         C-s and C-q to be read by Console.ReadKey).
6164
6165 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
6166
6167         * class.c (mono_class_init): Move the initialization of nested classes
6168         into mono_class_get_nested_types (). Fixes #418433.
6169
6170         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
6171         flag.
6172
6173         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
6174         iterating tough the nested classes of a class.
6175
6176 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
6177
6178         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
6179         on arm.
6180
6181 2008-08-22  Miguel de Icaza  <miguel@novell.com>
6182
6183         * console-io.c (sigcont_handler): Support signal chaining for
6184         SIGCONT.
6185
6186         (console_set_signal_handlers): Use best practices with sigaction,
6187         clear the structure before using it. 
6188
6189 2008-08-22  Robert Jordan  <robertj@gmx.net>
6190
6191         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
6192         Fix the Windows build.
6193
6194 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
6195
6196         * class.c (mono_class_generic_sharing_enabled): Make the default
6197         sharing mode 'corlib'.
6198
6199 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
6200
6201         * console-io.c (console_set_signal_handlers): Fix a warning.
6202
6203         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
6204         method normally, the JIT will take care of avoiding recursion.
6205
6206 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
6207
6208         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
6209
6210         Code is contributed under MIT/X11 license.
6211
6212 2008-08-20  Miguel de Icaza  <miguel@novell.com>
6213
6214         * console-io.c (sigcont_handler): We need to restore the entire
6215         termios state, not only the original settings, as things like echo
6216         can be controlled after this (Booish exposes this issue with its
6217         own ReadLine implementation).
6218
6219         Additionally, we need to set the terminal back into keypad_xmit
6220         mode.
6221         
6222         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
6223         string as a paramter as well.   Otherwise we get different
6224         keyboard sequences.
6225
6226 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
6227
6228         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
6229         delegates with byref out parameter passing. Fixes #351520.
6230
6231         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
6232         a generic context.
6233         (mono_type_get_desc): Add the type arguments for GENERICINST.
6234         (mono_method_full_name): Stringify the class name using mono_type_full_name
6235         so it picks up generic arguments.
6236
6237 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
6238
6239         * console-io.c: Removed debug output.
6240
6241 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
6242
6243         reflection.c (mono_reflection_create_runtime_class): Alloc
6244         the nested classes linked list using the dynamic image mempool.
6245         Fixes leak in corlib compilation.
6246
6247 2008-08-19  Miguel de Icaza  <miguel@novell.com>
6248
6249         * console-io.c: Fix incredibly annoying behavior on the console
6250         after resuming execution after control-z.   This affected every
6251         console application.
6252
6253 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
6254
6255         * mempool-internals.h: Header for mono private mempool functions. The first
6256         two function are for allocating glib linked lists using pools.
6257
6258         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
6259
6260         * Makefile.am: Added mempool-internals.h.
6261
6262 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
6263
6264         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
6265         (mono_domain_free): Ditto.
6266
6267         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
6268         be used by the JIT to store its domain-specific information, instead of putting
6269         it directly into MonoDomain.
6270
6271         * domain.c (mono_install_create_domain_hook): New helper function to install
6272         a hook which initializes domain->runtime_info.
6273
6274         * domain.c (mono_install_free_domain_hook): Ditto.
6275         
6276 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
6277
6278         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
6279         asserting if the ares parameter is null.
6280
6281         * mono-perfcounters.c: Fix warnings.
6282
6283         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
6284         is not needed, don't check for interruptions either.
6285         (mono_marshal_get_delegate_end_invoke): Ditto.
6286
6287 2008-08-15  Marek Habersack  <mhabersack@novell.com>
6288
6289         * mono-perfcounters.c (predef_readonly_counter): added support for
6290         reading the ASP.NET Requests Queued counter from another process.
6291
6292 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
6293
6294         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
6295         MonoImage to simplify the AOT code.
6296
6297 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
6298
6299         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
6300         marshalling. Fixes #416078.
6301
6302 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
6303         
6304         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
6305         it is set, looking up the icall address is deferred to the JIT, since 
6306         in embedded scenarios, the icall might not be registered in the runtime
6307         doing the AOT compilation. Backported from the 2.0 branch.
6308
6309 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
6310
6311         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
6312         Fixes #415621.
6313
6314 2008-08-05  Marek Habersack  <mhabersack@novell.com>
6315
6316         * Makefile.am: added support for cross-compilation.
6317
6318 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
6319
6320         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
6321
6322 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
6323
6324         * mono-perfcounters.c: jitted methods and jitted bytes counters.
6325
6326 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
6327
6328         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
6329         mono-perfcounters.c: performance counters implementation.
6330
6331 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
6332
6333         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
6334         to gpointer, letting the AOT code decide what to store in it.
6335
6336 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
6337
6338         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
6339           mono_class_setup_methods if the methods are not initialized.
6340
6341         Code is contributed under MIT/X11 license.
6342
6343 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
6344
6345         * verify.c: Remove some debug code I commited by accident.
6346
6347         * verify.c (mono_method_is_valid_in_context): Change the return value
6348         to make possible to distinguish between invalid and unverifiable.
6349
6350         * verify.c (verifier_load_method): Don't return NULL for unverifiable
6351         methods.
6352
6353 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
6354
6355         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
6356         constraints. Fixes regression in gtest-253.
6357
6358 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
6359
6360         * verify.c (mono_verifier_verify_class): Don't allow generic types
6361         with explicit layout.
6362
6363         * verify.c (mono_method_verify): Check locals and argument types.
6364
6365 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
6366
6367         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
6368         wait if the thread is in StopRequested state.
6369
6370         * class.c (mono_class_from_name): Refactor the module searching code into
6371         a separate function so it can be reused in the AOT case too.
6372
6373 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
6374
6375         * verify.c (mono_type_is_valid_in_context): Improve the error message.
6376         Check both the type and it's generic type definition for loader errors.
6377         
6378         * verify.c (mono_method_is_valid_in_context): Don't generate another
6379         error when a type errors occur, this leads to the wrong exception been
6380         thrown.
6381
6382 2008-07-28  Dick Porter  <dick@ximian.com>
6383
6384         * icall-def.h
6385         * process.c
6386         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
6387         New internal calls to duplicate and close a process handle.
6388
6389 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
6390
6391         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
6392
6393 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
6394
6395         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
6396
6397 2008-07-27  Robert Jordan  <robertj@gmx.net>
6398
6399         * class.c (mono_class_init): Don't compute class.has_finalize for
6400         valuetypes. Fixes #412477.
6401
6402 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
6403
6404         * verify.c: Implement constraint equivalence checking.
6405         This is required when a generic parameter is used as
6406         argument to a constrained one.
6407
6408         Fixes #410637.
6409
6410 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
6411
6412         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6413
6414         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
6415
6416         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
6417         synch with managed object layout.
6418
6419 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
6420
6421         * verify.c (do_branch_op): Handle valuetypes and generic
6422         arguments properly.
6423
6424         * verify.c (do_cmp_op): Same.
6425
6426         Fixes #410383.
6427
6428 2008-07-24  Mark Probst  <mark.probst@gmail.com>
6429
6430         * generic-sharing.c: Fix memory leaks.
6431
6432         * class.c, class-internals.h: Make
6433         mono_class_inflate_generic_type_with_mempool() non-static.
6434
6435 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
6436
6437         * pedump.c (dump_verify_info): Dump full class name.
6438
6439 2008-07-24  Mark Probst  <mark.probst@gmail.com>
6440
6441         * generic-sharing.c: Removed some old code that didn't do anything.
6442
6443 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
6444         * profiler.c: Added runtime_initialized_event,
6445         mono_profiler_install_runtime_initialized and
6446         mono_profiler_runtime_initialized. This new hook tells the profiler
6447         when the runtime is sufficiently initialized to be able to call
6448         mono_thread_attach on the root appdomain.
6449         * profiler.h, profiler-private.h: Likewise.
6450
6451 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
6452
6453         * verify.c (do_cast): Do boxing for generic arguments as well.
6454
6455         * class.c (is_nesting_type): Drop generic instantiations before
6456         checking for nesting.
6457
6458         * class.c (can_access_instantiation): Allow access to generic
6459         arguments.
6460
6461 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
6462
6463         * verify.c (verify_class_for_overlapping_reference_fields):
6464         On some cases, the field size might be zero, guard against that.
6465         Fix the explicit layout check to work as expected.
6466
6467 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
6468
6469         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
6470         mono_thread_resume () during shutdown, since the thread we want to abort
6471         might be suspended.
6472
6473 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
6474
6475         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
6476         warning.
6477
6478         * debug-mono-symfile.c: Fix a warning.
6479
6480         * mono-perfcounters.c (get_cpu_times): Fix a warning.
6481
6482         * object.c (mono_class_vtable): Check if exception_type is set, and return
6483         NULL as defined by the function comments.
6484
6485 2008-07-22  Mark Probst  <mark.probst@gmail.com>
6486
6487         * mempool.c: Use malloc for every single mempool allocation if the
6488         configure option is set.  This makes it easier to track mempool
6489         allocations with tools like Valgrind.
6490
6491 2008-07-22  Jb Evain  <jbevain@novell.com>
6492
6493         * reflection.c (create_dynamic_mono_image): emit the same
6494         metadata version that SL2 does when creating a SL2 image.
6495
6496 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
6497
6498         * icall-def.h:
6499         * icall.c: New icall System.Enum:get_hashcode. This function
6500         avoids the overhead of boxing the enum to the underlying type.
6501
6502 2008-07-21  Mark Probst  <mark.probst@gmail.com>
6503
6504         * reflection.c (mono_method_get_object): Don't let static RGCTX
6505         invoke wrappers get into MonoReflectionMethods.
6506
6507 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
6508
6509         * object-internals.h:
6510         * object.c: New mono_runtime_class_init_full function
6511         that makes throwing the exception optinal.
6512
6513         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
6514         for the case where the exception object is supplied.
6515
6516 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
6517
6518         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
6519         old ld versions.
6520
6521         Contributed under MIT/X11 license.
6522
6523 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
6524
6525         * string-icalls.c (ves_icall_System_String_InternalSplit):
6526         Optimize array allocation by caching the MonoClass of the
6527         array type.
6528
6529         * icall.c (ves_icall_Type_GetMethodsByName): Same.
6530
6531         * reflection.c (mono_param_get_objects): Same.
6532
6533 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
6534
6535         * icall-def.h:
6536         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
6537         It inflates the given type using the class context.
6538
6539 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
6540
6541         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
6542         the vtable if it already exists.
6543
6544         * object-internals.h: Add mono_class_try_get_vtable as part of the
6545         internal API.
6546
6547         * reflection.c (mono_type_get_object): Use the MonoObject from the
6548         vtable when possible. Reduces locking contention on reflection heavy
6549         code.
6550
6551 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
6552
6553         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
6554         g_bit_nth_msf () since that macro is not implemented in eglib.
6555
6556 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
6557
6558         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
6559         on platforms which do not support it.
6560
6561 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
6562
6563         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
6564
6565 2008-07-11  Martin Baulig  <martin@ximian.com>
6566
6567         * mono-debug-debugger.h
6568         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
6569
6570         * mono-debug-debugger.c
6571         (_mono_debugger_interruption_request): New global volatile variable.
6572         (mono_debugger_check_interruption): New public function.
6573
6574         * threads.c
6575         (mono_thread_current_check_pending_interrupt): Call
6576         mono_debugger_check_interruption().
6577         (mono_thread_interruption_checkpoint_request): Likewise.
6578
6579 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
6580
6581         * verify.c: Add more type checks for loaded types. Verify the result
6582         handle from ldtoken.
6583
6584 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
6585
6586         * loader.c (field_from_memberref): Don't crash if the field
6587         wasn't found.
6588
6589 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
6590
6591         * verify.c: Verify if type and method instantiations
6592         don't have invalid VAR or MVAR arguments.
6593
6594 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
6595
6596         * verify.c: Fix double free of function pointer list.
6597
6598 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
6599
6600         * object.c (mono_string_to_utf8): Comment the new code as it
6601         breaks under eglib.
6602
6603 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
6604
6605         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
6606
6607 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
6608
6609         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
6610           is not throw too many times.
6611
6612         Code is contributed under MIT/X11 license.
6613
6614 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
6615
6616         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
6617         debugging is turned off.
6618
6619 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
6620
6621         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
6622
6623 2008-07-04  Mark Probst  <mark.probst@gmail.com>
6624
6625         * class-internals.h, class.c: Added new generic sharing option:
6626         Share only stuff in System.Collections.Generic, which is now the
6627         default.
6628
6629 2008-07-04  Mark Probst  <mark.probst@gmail.com>
6630
6631         * generic-sharing.c, class-internals.h: New function for getting a
6632         generic method in a generic class given the corresponding method
6633         for a different instantiation of the class.  Partly refactored
6634         from mini-trampolines.c.
6635
6636         * class.c: Make sure generic methods have a class_inst if they are
6637         part of a generic class.
6638
6639         * metadata.c (mono_type_stack_size_internal): Handle type
6640         variables.
6641
6642 2008-07-04  Mark Probst  <mark.probst@gmail.com>
6643
6644         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
6645         Signifies whether information on the this/vtable/mrgctx variable
6646         is available.
6647
6648 2008-07-04  Mark Probst  <mark.probst@gmail.com>
6649
6650         * object.c, object-internals.h, icall.c: New function
6651         mono_delegate_ctor_with_method(), which does the same as
6652         mono_delegate_ctor(), but takes an explicit method argument
6653         instead of taking the method from the jit info.
6654
6655         * marshal.c: When creating a delegate with an inflated method take
6656         the "this" argument as the target class for the castclass.
6657
6658 2008-07-03  Mark Probst  <mark.probst@gmail.com>
6659
6660         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
6661         mono_jit_info_table_find() to perform very badly in some cases.
6662
6663 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
6664
6665         * icall.c (type_from_typename): Handle 'string'.
6666
6667         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
6668         wrappers into the wrapper_hash, since the key is not a MonoMethod.
6669
6670 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
6671
6672         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
6673
6674         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
6675         number of available managed allocator types.
6676
6677         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
6678         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
6679
6680 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
6681
6682         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
6683         which is a low level lock protecting just the 'jit_code_hash' hash table.
6684
6685         * domain.c: Initialize+cleanup jit_code_hash_lock.
6686         
6687 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
6688
6689         * coree.c (mono_load_coree): Set coree_module_handle global variable only
6690         after initialization.
6691
6692         * coree.h: Make MonoFixupExe internal.
6693
6694         Contributed under MIT/X11 license.
6695
6696 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
6697
6698         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
6699         because that is platform independent. Check NumberOfRvaAndSizes in PE32
6700         as well.
6701         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
6702         image being loaded is a CLI image and _CorValidateImage gets called.
6703
6704         * coree.h: Add MonoLoadImage.
6705
6706         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
6707         instead of LoadLibrary.
6708
6709         Contributed under MIT/X11 license.
6710
6711 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
6712
6713         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
6714         for any primitive type.
6715
6716 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
6717
6718         * object.c (mono_array_new_specific): Optimize this and the other allocation
6719         functions a bit.
6720         
6721         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
6722         domains too if mono_dont_free_domains is set.
6723
6724         * domain-internals.h (mono_dont_free_domains): New internal option controlling
6725         whenever to free appdomain data after it has been unloaded.
6726
6727         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
6728         
6729 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
6730
6731         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
6732         (mono_method_get_equivalent_method): Fix a warning.
6733
6734         * object.c (mono_message_init): Avoid looking up array types for each call.
6735
6736 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
6737
6738         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
6739         call.
6740
6741         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
6742         even more.
6743
6744         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
6745         each iteration.
6746
6747         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
6748         fields of an enum.
6749
6750 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
6751
6752         * object.c (mono_value_box): Fix boxing of nullables.
6753
6754 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
6755
6756         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
6757         mono_module_handle that is defined by the linker; no initialization required.
6758         * coree.h: Remove mono_module_handle, add __ImageBase, update
6759         mono_image_open_from_module_handle.
6760         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
6761         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
6762         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
6763         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
6764         to 4 GB away from image base address. IA64 version is not tested but was very
6765         easy to implement and should work if we ever need it.
6766         * domain.c (mono_init_internal): Avoid system error message boxes.
6767         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
6768         with has_entry_point. Handle do_mono_image_load fauilre correctly.
6769         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
6770         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
6771         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
6772
6773         Contributed under MIT/X11 license.
6774
6775 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
6776
6777         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
6778         as part of the private mono API.
6779         
6780         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
6781         Do proper argument checking for methods that belong to generic classes.
6782         Do proper type resolution for GMFH/2.
6783         Fixes #377324.
6784         
6785 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
6786
6787         * verify.c (do_switch): Fix a memory corruption bug with
6788         the jump index is out of bound.
6789
6790 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
6791
6792         * verify.c: Disable debug code.
6793
6794 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
6795
6796         * reflection.c (mono_image_get_methodbuilder_token): Use
6797         mono_image_get_methodspec_token_for_generic_method_definition
6798         instead of mono_image_get_memberref_token. We cache more memberef
6799         entries now.
6800
6801 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
6802
6803         * verify.c: Inflate exception clause types.
6804         Fixes #402606.
6805         
6806 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
6807
6808         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
6809         name.
6810
6811         * reflection.c (mono_image_get_ctorbuilder_token): Same.
6812
6813         * reflection.c (mono_image_create_method_token): Same.
6814
6815 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
6816
6817         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
6818         It does the same as mono_image_get_methodref_token but works on
6819         MethodBuilder.
6820
6821         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
6822         and always generate a methodspec. This follows the old behavior and fixes
6823         the regressions in System.Core. 
6824
6825 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
6826
6827         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
6828         don't event mono_class_get () succeeds. Fixes #402182.
6829
6830 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
6831
6832         * metadata-internals.h: Added MonoDynamicImage::methodspec
6833         hashtable to store methodspec tokens created for MethodBuilders.
6834
6835         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
6836         MethodBuilders as open instantiations if a methodspec was requested.
6837
6838         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
6839
6840         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
6841
6842         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
6843
6844         Fixes bug #349190.
6845
6846 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
6847
6848         * loader.c (method_from_methodspec): Avoid crashing if the
6849         method lookup fails.
6850
6851 2008-06-20  Dick Porter  <dick@ximian.com>
6852
6853         * socket-io.c (get_socket_assembly): Cope with Moonlight network
6854         classes being in a different assembly.  Fixes bug 399184.
6855
6856 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
6857
6858         * loader.c (mono_loader_init): Make this callable multiple times.
6859         (mono_dllmap_insert): Call mono_loader_init () so this works even before
6860         the runtime is initialized. Fixes #401755.
6861
6862 2008-06-19  Dick Porter  <dick@ximian.com>
6863
6864         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
6865         Fixes bug 349688.
6866
6867 2008-06-19  Dick Porter  <dick@ximian.com>
6868
6869         * socket-io.c:
6870         * icall-def.h: Implement Socket generic Send() and Receive()
6871         methods.  Fixes bug 395168.
6872
6873 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
6874
6875         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
6876
6877         Contributed under MIT/X11 license.
6878
6879 2008-06-18  Martin Baulig  <martin@ximian.com>
6880
6881         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
6882         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
6883         set to 80.0.  The debugger <-> runtime interface is now frozen as
6884         well.   
6885
6886         * mono-debug.c
6887         (mono_debug_debugger_version): Bump to 4.
6888
6889 2008-06-18  Martin Baulig  <martin@ximian.com>
6890
6891         * debug-mono-symfile.c
6892         (load_symfile): Don't check the minor version.
6893
6894         * debug-mono-symfile.h: Bump the version number to 50.0.
6895
6896 2008-06-18  Martin Baulig  <martin@ximian.com>
6897
6898         * debug-mono-symfile.c
6899         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
6900         minimum required version.
6901
6902 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
6903
6904         * reflection.c (mono_custom_attrs_from_property): Fix support for
6905         retriveving cattrs of dynamic inflated generic types.
6906
6907         * reflection.c (mono_custom_attrs_from_event): Same.
6908
6909         * reflection.c (mono_custom_attrs_from_field): Same;
6910
6911         * reflection.c (typebuilder_setup_events): Same cattrs of events.
6912
6913         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
6914         Moved to metadata.c.
6915
6916         * metadata.c: New functions to retrive the equivalent field, event
6917         of property from the generic type definition.
6918
6919         * metadata-internals.h: Added new functions from metadata.c.
6920
6921 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
6922
6923         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
6924         to cached in a mempool is used.
6925
6926         * metadata.c (free_generic_class): In some situations field generic_info type
6927         is not properly dup'ed and leads to double free'ing.
6928
6929         Fixes #400643.
6930
6931 2008-06-17  Mark Probst  <mark.probst@gmail.com>
6932
6933         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
6934         this arguments (will be needed later for generic methods).
6935         Collect stats.
6936
6937 2008-06-17  Mark Probst  <mark.probst@gmail.com>
6938
6939         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
6940         Create a static RGCTX invoke wrapper for methods which require it.
6941
6942 2008-06-17  Mark Probst  <mark.probst@gmail.com>
6943
6944         * object.c, class-internals.h: New function for checking whether
6945         an individual field is special static.
6946
6947 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
6948
6949         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
6950         linear search since the table is sorted.
6951
6952         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
6953         Fixes #324180.
6954
6955 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
6956
6957         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
6958         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
6959
6960         * gc.c (mono_domain_finalize): Allow an infinite timeout.
6961
6962         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
6963         
6964         * threads.c (mono_thread_request_interruption): Get rid of locking, use
6965         InterlockedCompareExchange to query and modify 
6966         thread->interruption_requested.
6967
6968         * object-internals.h (struct _MonoThread): Change interruption_requested
6969         to a gint32 so it can be modified by atomic operations. Add 
6970         'critical_region_level' from the managed side, change small_id to a guint32,
6971         add new set of 'unused' fields.
6972
6973         * appdomain.c: Bump corlib version.
6974
6975 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
6976
6977         * class.c (mono_class_from_name): Search modules as well. Fixes
6978         #322332.
6979
6980 2008-06-13  Mark Probst  <mark.probst@gmail.com>
6981
6982         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
6983         templates.  Templates are generalized with an additional type_argc
6984         argument.  RGCTX templates have type_argc==0, MRGCTX templates
6985         have type_argc>0.
6986
6987         * domain-internals.h, domain.c: New hash table for looking up
6988         MRGCTXs.
6989
6990         * metadata.c, metadata-internals.h: Rename hash and equal
6991         functions for MonoGenericInst's and make them public.
6992
6993         * class-internals.h: New data structures for the MRGCTX.  Macros
6994         for distinguishing slots in the RGCTX and the MRGCTX.
6995
6996 2008-06-13  Mark Probst  <mark.probst@gmail.com>
6997
6998         * object.c (mono_method_get_imt_slot): Put the same methods of
6999         different instantiations of the same generic interface in the same
7000         IMT slots, to make generic sharing simpler.
7001
7002 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
7003
7004         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
7005
7006         * metadata.c (mono_metadata_field_info_with_mempool): Added.
7007         This function works just like mono_metadata_field_info, but
7008         accept a mempool as argument to be used allocating memory.
7009
7010         * marshal.c (mono_marshal_load_type_info): Use new function
7011         to load marshal data into image mempool.
7012
7013 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
7014
7015         * class.c (mono_class_inflate_generic_type_with_mempool):
7016         This function allows to inflate a generic type using
7017         a mempool.
7018
7019         * class.c (inflate_generic_type): Take a mempool as argument
7020         and use it to do type dup'ing.
7021
7022         * class.c (mono_class_setup_fields): Field type for generic
7023         generic classes are allocated from the image mempool.
7024
7025         * metadata.c (free_generic_class): Inflated field type is
7026         now allocated in the image mempool.
7027
7028 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
7029
7030         * threads.c (thread_cleanup): Free MonoThread::name.
7031
7032 2008-06-12  Marek Habersack  <mhabersack@novell.com>
7033
7034         * appdomain.c (ensure_directory_exists): avoid unnecessary
7035         mkdir(2) calls when the shadow directory already exists.
7036         (mono_make_shadow_copy): copy also satellite assemblies from the
7037         private bin directories.
7038
7039 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
7040
7041         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
7042         
7043         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
7044         a page boundary. Fixes #396219.
7045
7046 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7047
7048         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
7049         due to double-checked locking.
7050
7051 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7052
7053         * assembly.c (build_assembly_name): Release memory on failure.
7054
7055         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
7056
7057 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7058
7059         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
7060         memory on failure.
7061
7062 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7063
7064         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
7065         memory on failure.
7066
7067 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7068
7069         * loader.c (field_from_memberref): Check if field signature type is equal
7070         to the non-inflated type of the field. Fixes #398980.
7071
7072 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
7073
7074         * assembly.c (mono_assembly_load_from_full): Call 
7075         mono_assembly_load_friends () outside the assemblies lock, since it can
7076         acquire the loader lock. Fixes #323696.
7077
7078         * reflection.c (resolve_object): Inflate the inst with the context for
7079         FieldOnTypeBuilderInst. Fixes #399010.
7080
7081 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7082
7083         * reflection.c (mono_image_get_field_on_inst_token): Don't
7084         inflate the field to encode it's signature. If it's a
7085         VAR or MVAR it should stay that way in the signature.
7086         Fixes #399047.
7087
7088 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7089
7090         * reflection.c (resolve_object): Release memory of inflated types.
7091
7092 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7093
7094         * loader.c (mono_method_get_signature_full): Remove assert about
7095         loading a methodspec to a generic method. We have such methods, such as
7096         System.Threading.Interlocked::CompareExchange<T>.
7097         This assert was removed since it crashes the verifier when it checks
7098         methods calling CompareExchange<T>.
7099
7100 2008-06-10  Marek Safar  <marek.safar@gmail.com>
7101
7102         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
7103         of Type array and not MonoType.
7104
7105 2008-06-10  Marek Habersack  <mhabersack@novell.com>
7106
7107         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
7108         <lupus@ximian.com>
7109
7110 2008-06-10  Martin Baulig  <martin@ximian.com>
7111
7112         * debug-mono-symfile.h
7113         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
7114         changes to the file format, but we were generating incorrect
7115         source file indices in the line number table due to a bug, which
7116         made backtraces report an incorrect source file.
7117
7118 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7119
7120         * mono-debug.c: Moved mono_debug_free_method_jit_info from
7121         mini/debug-mini.c to here.
7122
7123         * mono-debug.c (il_offset_from_address): Free memory from find_method.
7124
7125         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
7126         use it to release structs returned by mono_debug_find_method.
7127
7128 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
7129
7130         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
7131         since it needs to set method->slot for all interface methods.
7132
7133 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
7134
7135         * class-internals.h: Forgot to add.
7136
7137 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
7138
7139         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
7140
7141         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
7142         Lookup the custom attributes from property_hash.
7143
7144         * reflection.c (mono_save_custom_attrs): Save the custom attributes
7145         in property_hash. Allocate all data using the image mempool.
7146
7147         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
7148         for dynamic_custom_attrs to checks if the image is dynamic.
7149
7150 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
7151
7152         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
7153         assemblies array.
7154         
7155         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
7156         runtime functions while holding the domain assemblies lock.
7157
7158 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
7159
7160         * verify.c: Reapplied the last bit of the reverted changes.
7161
7162 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
7163
7164         * verify.c: Reapplied more of the reverted changes.
7165
7166 2008-06-09  Martin Baulig  <martin@ximian.com>
7167
7168         * debug-mono-symfile.c (load_symfile): Check the major version
7169         first; if it's wrong, don't print the minor version in the error message.
7170
7171 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
7172
7173         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
7174         lock instead of the domain lock to avoid deadlocks, since the thread might
7175         already hold the loader lock.
7176
7177         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
7178         (mono_thread_attach): Ditto.
7179
7180         * monitor.c: Use a TLS variable for holding the current thread id instead
7181         of calling pthread_self ().
7182         (mono_monitor_init_tls): New internal function to initialize the TLS
7183         variable.
7184         (mono_monitor_try_enter_internal): Put the owner == id check after the
7185         owner == 0 check.
7186
7187         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
7188         missed optimizations when using gcc-4.3.
7189
7190 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
7191
7192         * reflection.c (mono_dynamic_image_free): Free the memory
7193         used by MonoGenericParam in MonoDynamicImage::gen_param.
7194
7195         * reflection.c (mono_reflection_setup_generic_class): Allocate
7196         container from mempool.
7197
7198         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
7199         container from mempool.
7200
7201 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
7202
7203         * threads.c (mono_set_pending_exception): New internal function to set the
7204         pending exception of the current thread.
7205         (mono_thread_get_and_clear_pending_exception): Check for 
7206         thread->pending_exception as well.
7207
7208         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
7209
7210         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
7211         it can trigger a collection.
7212
7213 2008-06-06  Martin Baulig  <martin@ximian.com>
7214
7215         Merged the `debugger-kahalo' branch.
7216
7217         * mono-debug.h
7218         (MONO_DEBUGGER_VERSION): Bumped to 72.
7219
7220         * debug-mono-symfile.h
7221         (MonoSymbolFileMethodIndexEntry): Removed.
7222         (MonoSymbolFileMethodEntry): New public typedef.
7223         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
7224         (MonoSymbolFileSourceEntry): Remove everything except `index' and
7225         `data_offset'.
7226         (MonoSymbolFileMethodEntry): Removed.
7227         (MonoSymbolFileLexicalBlockEntry): Removed.
7228         (MonoSymbolFileLineNumberEntry): Removed.
7229         (MonoDebugLexicalBlockEntry): Removed.
7230         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
7231         removed `num_il_offsets' and `il_offsets'.
7232         (MonoSymbolFile): Replace `version' with `major_version' and
7233         `minor_version'.
7234         (MONO_SYMBOL_FILE_VERSION): Replace with
7235         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
7236         `MONO_SYMBOL_FILE_MINOR_VERSION'.
7237
7238         * debug-mono-symfile.c
7239         (mono_debug_symfile_lookup_location): Add support for the new line
7240         number table format.
7241
7242 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
7243
7244         * metadata.c (free_generic_class): Release the inflated
7245         MonoClass of dynamic generic classes if it's not a generic
7246         type definition.
7247
7248 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
7249
7250         * verify.c: Reapplied more of the reverted changes.
7251
7252 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
7253
7254         * reflection.c (lookup_custom_attr): Clean the cached flag or
7255         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
7256         for SRE types.
7257
7258 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
7259
7260         * verify.c: Reapplied a small part of the reverted changes.
7261
7262 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
7263
7264         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7265
7266         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
7267         previously in managed code.
7268         (mono_monitor_exit): Ditto.
7269         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
7270
7271         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
7272         the managed definition.
7273
7274 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
7275
7276         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
7277
7278 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
7279
7280         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
7281         
7282         * monitor.c: Add some micro optimizations.
7283
7284         * icall.c (type_from_typename): Handle 'bool'.
7285
7286 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
7287
7288         * verify.c: Implement constructor verification per P III 1.8.1.4.
7289         Fixes #396716.
7290
7291 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
7292
7293         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
7294         holding the assemblies lock here too.
7295
7296 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
7297
7298         * verify.c: Kill stack_top function.
7299
7300 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
7301
7302         * verify.c: Kill stack_get function.
7303
7304 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
7305
7306         * verify.c (mono_method_verify): Last change broke the build. Fixed.
7307
7308 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
7309
7310         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
7311         more reliable.
7312
7313         * verify.c (mono_method_verify): Inflate params and locals to avoid
7314         mismatch when checking for compatibility.
7315
7316 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
7317
7318         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
7319         Length prefix should be size in bytes. Fix bug #339530.
7320         
7321         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
7322         Length prefix should be size in bytes. Fix bug #339530.
7323
7324         Code is contributed under MIT/X11 license.
7325
7326 2008-06-05  Bill Holmes <billholmes54@gmail.com>
7327
7328         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
7329
7330         Contributed under MIT/X11 license.
7331
7332 2008-06-05  Martin Baulig  <martin@ximian.com>
7333
7334         * mono-debug-debugger.c
7335         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
7336
7337 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
7338
7339         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
7340         while holding the assemblies lock to prevent deadlocks. Handle the case
7341         where the search hook returns NULL but the assembly was still loaded.
7342         Fixes #323696.
7343
7344         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
7345         modify domain state.
7346
7347 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
7348
7349         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
7350         * Makefile.am (pedump_LDADD): Post-process object files and
7351         add dtrace-generated object file, if necessary.
7352
7353         Code is contributed under MIT/X11 license.
7354
7355 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
7356
7357         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
7358
7359 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
7360
7361         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
7362
7363 2008-06-04  Mark Probst  <mark.probst@gmail.com>
7364
7365         * threads.c: Try to free everything from the delayed free table
7366         when shutting down threads, and set the variable to NULL after the
7367         table is freed so that calling
7368         mono_thread_hazardous_try_free_all() when shutting down the root
7369         domain doesn't crash.
7370
7371 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
7372
7373         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
7374         the caller if resulting type was inflated.
7375
7376         * class.c (mono_class_create_from_typespec): Free the MonoType if it
7377         was inflated.
7378
7379         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
7380
7381
7382 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
7383
7384         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
7385         class library tests.
7386
7387         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
7388         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
7389         #396989.
7390
7391 2008-06-04  Mark Probst  <mark.probst@gmail.com>
7392
7393         * domain.c, domain-internals.h: The JIT infos are now freed by the
7394         JIT info table code.  They are freed immediately if there only a
7395         single JIT info table in circulation.  If there is more, the free
7396         is delayed via a queue.
7397
7398         * threads.c, threads-types.h: New hazard pointer function for
7399         freeing all freeable delayed items in one sitting.
7400
7401 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
7402
7403         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
7404
7405         * reflection.c (typebuilder_setup_properties): Same.
7406
7407         * reflection.c (typebuilder_setup_events): Same.
7408
7409 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
7410
7411         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
7412         and use it for allocating memory.
7413
7414         * reflection.c (mono_marshal_spec_from_builder): Same.
7415
7416         * reflection.c: Change code to use new signatures.
7417
7418         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
7419
7420 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
7421
7422         * decimal.c (rescale128): Put back one line which was accidently commented
7423         out.
7424         
7425         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
7426         to cause crashes.
7427
7428 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
7429
7430         * reflection.c (mono_reflection_generic_class_initialize): Name must
7431         be always malloc'ed so we can free it later on. Do this for field, property
7432         and event.
7433
7434         * metadata.c (free_generic_class): Free field, property and event names.
7435
7436 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
7437
7438         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
7439         instead of g_memdup.
7440
7441         * reflection.c (typebuilder_setup_fields): Same.
7442
7443 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
7444
7445         * decimal.c (rescale128): Optimize this function a bit more.
7446
7447 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
7448
7449         * metadata.c (free_generic_class): Release some memory from
7450         SRE generic classes.
7451
7452 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
7453
7454         * reflection.c (mono_image_get_generic_field_token): No reference
7455         to name is kept, free it.
7456
7457         * reflection.c (mono_reflection_generic_class_initialize): Free
7458         more memory of the inflated field.
7459
7460 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
7461
7462         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
7463         code.
7464
7465 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
7466
7467         * reflection.c (mono_dynamic_image_free): Release memory used by
7468         MonoDynamicImage::array_methods elements.
7469
7470         * reflection.c (assembly_add_win32_resources): Release memory after
7471         encoding.
7472
7473 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
7474
7475         * decimal.c (log2_32): Use an optimized version for this function too.
7476         
7477         * decimal.c (log2_64): Fix this on 32 bit machines.
7478
7479 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
7480
7481         * class.c (mono_dup_array_type): Implement allocation using a mempool.
7482
7483         * class.c (mono_metadata_signature_deep_dup): Same.
7484
7485         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
7486         a mempool.
7487
7488         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
7489
7490         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
7491
7492         * metadata-internals.h: Added mono_metadata_signature_dup_full.
7493
7494         * class-internals.h: Update signatures to take a MonoMemPool.
7495
7496 2008-06-02  Dick Porter  <dick@ximian.com>
7497
7498         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
7499         * icall-def.h: Add
7500         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
7501         FormatMessage API to get the error text.  Fixes bug 321827.
7502
7503 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
7504
7505         * decimal.c: Add some micro optimizations to make decimal operations faster.
7506
7507 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
7508
7509         * reflection.c (method_encode_clauses): Take a mempool
7510         as parameter and use it to allocate the clause array.
7511
7512         * reflection.c (mono_image_get_field_on_inst_token): Free
7513         the inflated type after encoding it.
7514
7515         * reflection.c (mono_dynamic_image_free): Free each element
7516         of MonoDynamicImage::gen_params.
7517
7518         * reflection.c (reflection_methodbuilder_to_mono_method):
7519         Allocate the generic param array from the mempool.
7520         Allocate signature params from the mempool.
7521
7522         * reflection.c (mono_reflection_generic_class_initialize):
7523         Free inflated fields after been used.
7524
7525 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
7526
7527         * icall.c: Reapply the memory leak fixes as they no
7528         longer make mono crash.
7529
7530 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
7531
7532         * reflection.c (mono_type_get_object): Don't store the suplied
7533         MonoType with type_hash. A caller which pass a type that
7534         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
7535         might end with a pointer to freed memory.
7536         The solution is to use byval_arg or this_arg from the associated
7537         MonoClass of the supplied type.
7538
7539 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
7540
7541         * icall.c: Revert the rest of the last change as it breaks the build too.
7542
7543 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
7544
7545         * icall.c: Revert a leak fix as it's breaking the build.
7546
7547 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
7548
7549         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
7550
7551 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
7552
7553         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
7554
7555 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
7556
7557         * icall.c: Fix some memory leaks.
7558
7559 2008-05-29  Dick Porter  <dick@ximian.com>
7560
7561         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
7562         async socket operations from the pending list when a socket
7563         closes.  Leaving it until the threadpool services the event
7564         exposes a race condition when a socket descriptor is reused.
7565         Fixes bug 377589.
7566
7567 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
7568
7569         * object.c: Fix negative index check for array alocation.
7570
7571 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
7572
7573         * icall.c, marshal.c: Delegate wrappers should skip visibility.
7574         This check is performed by the verifier for IL created delegates
7575         and by Delegate::CreateDelegate for programatically created ones.
7576         Fixes #372406.
7577
7578 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
7579
7580         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
7581         Fix code to use mono_array_size_t instead of int.
7582
7583         Based on patch by Luis F. Ortiz.
7584         Contributed under X11 license.
7585         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
7586
7587 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
7588
7589         * icall.c: Added ves_icall_System_Array_GetLongLength and
7590         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
7591         arrays.
7592
7593         * icall.h: Export both new functions.
7594
7595         Based on patch by Luis F. Ortiz.
7596         Contributed under X11 license.
7597         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
7598
7599 2008-05-28  Martin Baulig  <martin@ximian.com>
7600
7601         The debugger now requires exactly r103463.
7602
7603         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
7604         This version is not supported by the debugger, wait for 72.
7605
7606 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
7607
7608         * object.h: Changed array related functions to use
7609         mono_array_size_t instead of guint32. Forgot to commit this file.
7610
7611         Patch by Luis F. Ortiz.
7612         Contributed under X11 license.
7613         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
7614
7615
7616 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
7617
7618         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
7619         don't define it. Use the number literal instead.
7620
7621 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
7622
7623         * icall.c: Changed array related functions to use
7624         mono_array_size_t instead of guint32.
7625
7626         * icall.c (ves_icall_System_Array_GetLength): Check for length
7627         overflow under MONO_BIG_ARRAYS.
7628
7629         Based on patch by Luis F. Ortiz.
7630         Contributed under X11 license.
7631         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
7632
7633 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
7634
7635         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
7636
7637         Based on patch by Luis F. Ortiz.
7638         Contributed under X11 license.
7639         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
7640
7641 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
7642
7643         * object.c, object.h: Changed array related functions to use
7644         mono_array_size_t instead of guint32.
7645
7646         Patch by Luis F. Ortiz.
7647         Contributed under X11 license.
7648         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
7649
7650 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
7651
7652         * object.h: Introduced mono_array_size_t typedef. This must be used
7653         in all places an array length is expected. This is 64bits wide if
7654         MONO_BIG_ARRAYS is enabled.
7655
7656         Patch by Luis F. Ortiz.
7657         Contributed under X11 license.
7658         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
7659
7660 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
7661
7662         * security-manager.c class.c: Set the class exception info by calling
7663         mono_class_set_failure ().
7664
7665         * class.c (mono_class_get_exception_data): New accessor function.
7666         (mono_class_set_failure): Store exception_data in the property hash.
7667
7668         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
7669         the struct as a property.
7670
7671         * loader.c (mono_get_method_full): Store the lookup result for method
7672         tokens in method_cache, the others in methodref_cache to decrease the memory
7673         usage of hash tables.
7674
7675         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
7676         (mono_image_init): method_cache is lazy inited now.
7677
7678         * metadata-internals.h (struct _MonoImage): Change method_cache to
7679         a MonoValueHashTable, add a separate methodref_cache.
7680
7681 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
7682
7683         * number-formatter.h: Fix tables to avoid arithemtic overflow in
7684           Double.ToString as exposed by Bug #383531.
7685
7686 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
7687
7688         * number-formatter.h: Make some tables static.
7689
7690         * class.c (mono_method_set_generic_container): New accessor function.
7691         (mono_method_get_generic_container): Ditto.
7692
7693         * class-internals.h (struct _MonoMethod): Remove rarely used 
7694         'generic_container' field, store it in the property hash instead. Add 
7695         'is_generic' boolean field instead.
7696
7697         * image.c (mono_image_init): Initialize property_hash.
7698         (mono_image_close): Destroy property_hash.
7699
7700         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
7701         hold rarely used fields of runtime structures belonging to this image.
7702
7703         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
7704         to get/set method->generic_container.
7705
7706         * loader.c (mono_get_method_from_token): Avoid loading the method header for
7707         generic methods.
7708
7709 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
7710
7711         * class.c (mono_class_inflate_generic_method_full): Don't increase
7712         mono_stats.inflated_method_count for methods found in the cache.
7713
7714         * threads.c (mono_thread_request_interruption): Add a comment about 
7715         QueueUserAPC ().
7716
7717 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
7718
7719         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
7720         interface_offsets_packed table.
7721         
7722         * class.c (mono_class_init): Remove some dead code.
7723
7724         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
7725         mono_class_setup_vtable () when CAS is active to detect security problems.
7726
7727 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
7728
7729         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
7730
7731         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
7732         parameters as it's irrelevant for delegate checking.
7733
7734 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
7735
7736         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
7737
7738         * class.c (mono_class_init): Control the creation of a generic vtable using
7739         a global which is true by default, but set to false by the runtime startup code.
7740         
7741         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
7742         Disabled for now since it breaks the embedding API.
7743         Move the setup of class->methods for arrays to mono_class_setup_methods ().
7744         (mono_class_setup_methods): Add a memory barrier.
7745
7746         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
7747         when mono_class_init () doesn't compute the generic vtable.
7748         
7749 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
7750         * profiler.c: Added mono_profiler_install_statistical_call_chain,
7751         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
7752         to support call chains (backtrace) in the stat profiler.
7753         * profiler.c, profiler-private.h: Likewise.
7754
7755 2008-05-22  Mark Probst  <mark.probst@gmail.com>
7756
7757         * generic-sharing.c: Init generic class when a method of it is
7758         requested via a runtime generic context.
7759
7760 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
7761
7762         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
7763
7764         * reflection.c (mono_type_get_object): Add a FIXME.
7765
7766         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
7767
7768         * class.c (mono_class_get_method_by_index): New helper function, returning an
7769         entry in the class->methods array.
7770
7771 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
7772
7773         * class.c (mono_class_init): Only do the array optimization for szarrays. 
7774         Avoid creating a generic vtable for generic instances as well.
7775         (mono_class_get_method_from_name_flags): Don't search in the metadata for
7776         generic instances.
7777
7778 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
7779
7780         * loader.c (mono_get_method_constrained): Inflate the signature
7781         with class context. Fix #325283.
7782
7783 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
7784
7785         * object.c (mono_class_create_runtime_vtable): Add a comment.
7786
7787         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
7788         where needed.
7789         (setup_interface_offsets): Handle the case when this is called twice for arrays.
7790         (mono_class_setup_vtable_general): Add an assert.
7791         (mono_class_init): Avoid creating a generic vtable for arrays.
7792
7793         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
7794         here, let mono_class_init () do that.
7795
7796         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
7797         interfaces in mscorlib.
7798
7799         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
7800         interfaces. Add some comments.
7801         (mono_class_init): Call mono_class_setup_methods () here since it is no
7802         longer called by mono_class_setup_vtable ().
7803
7804         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
7805         not set in class->vtable.
7806         (mono_class_create_runtime_vtable): Reenable the disabled code.
7807
7808         * object.c (mono_class_create_runtime_vtable): Disable the last change for
7809         now as it causes some test failures.
7810
7811         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
7812         if using the vtable trampoline. Also remove some strange code which put the
7813         generic methods themselves into the vtable slots. Remove the AOT init_vtable
7814         stuff as it is no longer needed.
7815
7816 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
7817
7818         * pedump.c: Give make --verify all option check code as well.
7819         Using --verify code won't check for metadata now.
7820
7821 2008-05-19  Martin Baulig  <martin@ximian.com>
7822
7823         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
7824
7825         * mono-debug.c
7826         (_mono_debug_using_mono_debugger): New global variable; it's set
7827         directly by the debugger, so mono_debug_using_mono_debugger() also
7828         works after attaching.
7829
7830 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
7831
7832         * object.c (mono_class_create_runtime_vtable): Use memory barriers
7833         as we do double checked locking on MonoClass::runtime_info and
7834         MonoClassRuntimeInfo::domain_vtables.
7835
7836 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
7837
7838         * debug-helpers.c (print_field_value): Fix a warning.
7839
7840 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
7841
7842         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
7843         set in the AOT case.
7844
7845 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
7846
7847         * class.c (mono_class_setup_vtable_general): Use memory barriers
7848         as we do double checked locking on MonoClass::vtable.
7849
7850 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
7851
7852         * reflection.c (resolve_object): Inflate only if the generic context
7853         is not null. Fixes #389886.
7854
7855 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
7856
7857         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
7858         instead of g_free.
7859
7860         Code is contributed under MIT/X11 license.
7861
7862 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
7863
7864         * class.c: Revert unrelated change.
7865
7866 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
7867
7868         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
7869         a generic instantiation, use mono_class_from_mono_type instead of playing
7870         with MonoType directly.
7871
7872 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
7873
7874         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
7875         checks must ignore generic instantiations, so mono_class_has_parent is not
7876         suitable. Fixes #390128.
7877
7878 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
7879
7880         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
7881         it to avoid registering tokens during metadata generation. Fixes #390023.
7882
7883 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
7884
7885         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
7886         consistent.
7887
7888         Contributed under MIT/X11 license.
7889
7890 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
7891
7892         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
7893         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
7894         to fixup the EXE image.
7895         (mono_cleanup): Use mono_close_exe_image.
7896         (mono_close_exe_image): New function.
7897         * image.c: Include "marshal.h".
7898         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
7899         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
7900         counting when the image is loaded outside of mono_image_open_full. Set status
7901         based on GetLastError.
7902         * coree.c: Include required headers. Add init_from_coree.
7903         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
7904         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
7905         (_CorExeMain): Set init_from_coree.
7906         (CorExitProcess): Only call ExitProcess for now.
7907         (CorBindToRuntimeEx): New stub implementation.
7908         (CorBindToRuntime): New function.
7909         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
7910         (MonoFixupExe): ILONLY executables require no fixups.
7911         (mono_set_act_ctx): New function to set activation context.
7912         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
7913         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
7914         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
7915         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
7916         as MONO_INTERNAL.
7917         * domain-internals.h: Add mono_close_exe_image.
7918
7919         Contributed under MIT/X11 license.
7920
7921 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
7922
7923         * metadata.c (mono_metadata_compute_size): Correctly calculate field
7924         size for generic param and event tables. Fixes #388977.
7925
7926 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
7927
7928         * loader.c (mono_method_signature): Use memory barriers because of the double
7929         checked locking pattern.
7930
7931         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
7932         aborting or aborted as well. Fixes #376391.
7933         
7934         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
7935         existing runtime state in the Suspend handler during shutdown.
7936
7937 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
7938
7939         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
7940
7941         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
7942         which are starting up or shutting down.
7943
7944         * threads.c (mono_threads_set_shutting_down): Don't return a value since
7945         this function never returns if the runtime is already shutting down.
7946
7947         * icall.c (ves_icall_System_Environment_Exit): Update after 
7948         mono_threads_set_shutting_down () signature change.
7949         
7950 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
7951
7952         * class.c: Added can_access_instantiation to verify if the instantiation
7953         is visible. Fix access check for nested types as they returned TRUE
7954         before doing type and generic instantiation visibility checks.
7955
7956 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
7957
7958         * reflection.c (mono_reflection_create_generic_class): The created type
7959         must have a different container from its TypeBuilder. Otherwise they
7960         will end sharing generic arguments, which is wrong.
7961
7962         Due to the sharing, making a generic instance of the created type using
7963         the TypeBuider generic arguments resulted in the generic type definition
7964         been returned, which is wrong as well.
7965
7966         As a bonus the code was leaking the type_params array. This memory should
7967         be allocated from the image mempool.
7968
7969         This fixes bug #354047.
7970
7971 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
7972
7973         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
7974         to here         as they are now used in assembly.c new code.
7975         Added a skipverification flag to MonoAssembly.
7976         New internal function mono_assembly_has_skip_verification.
7977
7978         * assembly.c: New function mono_assembly_has_skip_verification. It checks
7979         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
7980         part of #387274.
7981
7982 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
7983
7984         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
7985         needed. Fixes #387034.
7986
7987         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
7988
7989 2008-05-06  Miguel de Icaza  <miguel@novell.com>
7990
7991         * assembly.c (mono_assembly_load_reference): Prevent crash while
7992         disassembling Silverlight 2.0 executables while we still do not
7993         have GACed libraries.
7994
7995 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
7996
7997         * reflection.c: Special case generic type definitions as well. Fixes #383444.
7998
7999 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
8000
8001         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
8002         of the dynamic case. Fixes #387404.
8003
8004 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
8005
8006         *verify.c (mono_verifier_is_class_full_trust): If under
8007         verify_all and the verifier mode was not set, only
8008         gac and corlib types are fulltrust. This makes --verify-all
8009         usable to detect unverifiable code, which is the expected
8010         use case.
8011
8012 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
8013
8014         * verify.h: Ops, commited the header with debug
8015         enabled.
8016
8017 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
8018
8019         * verify.c (merge_stack): Use the new value on unverifiable
8020         stack merges.
8021
8022         * verify.c (verify_type_compatibility_full): Comparison
8023         of nullable types can't use mono_class_is_assignable_from.
8024
8025         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
8026         that makes all verification errors be reported.
8027
8028         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
8029         mono_method_verify.
8030
8031 2008-05-05  Robert Jordan  <robertj@gmx.net>
8032
8033         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
8034         support for value types. See #386415.
8035
8036         * object.c: comments.
8037
8038         Code is contributed under MIT/X11 license.
8039
8040 2008-05-05  Martin Baulig  <martin@ximian.com>
8041
8042         * debug-mono-symfile.h
8043         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
8044         for old pre-terrania symbol files.
8045
8046 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
8047
8048         * mono-config.c: Add ppc64 architecture.
8049
8050         Code is contributed under MIT/X11 license.
8051
8052 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
8053
8054         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
8055           PPC64 uses function descriptors as well.
8056
8057         Code is contributed under MIT/X11 license.
8058
8059 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
8060
8061         * object.c (compute_class_bitmap): Ignore literal static fields.
8062
8063         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
8064         var has an invalid format.
8065         (describe_ptr): Add some sanity checks for the vtable.
8066         (add_nursery_frag): Clear unused nursery fragments.
8067         (major_collection): Clear all remaining nursery fragments.
8068
8069 2008-05-03  Robert Jordan  <robertj@gmx.net>
8070
8071         * image.c, metadata-internals.h: add thunk_invoke_cache.
8072
8073         * marshal.c, marshal.h: implement
8074         mono_marshal_get_thunk_invoke_wrapper ().
8075
8076         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
8077
8078         Code is contributed under MIT/X11 license.
8079
8080 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
8081
8082         * verify.c (do_leave): Empty the stack.
8083
8084 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
8085
8086         * class.c (mono_class_is_assignable_from): Variance
8087         doesn't work between reference and value types. For example,
8088         given type C<T+>, C<int32> is not assignable to C<object>.
8089         Break the argument checking loop on first error. 
8090
8091 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
8092
8093         * icall.c : base64_to_byte_array() needs some more strict
8094           check for sequence of '=' characters. Patch by Santa
8095           Marta (http://deee.g.hatena.ne.jp/santamarta).
8096
8097           Contributed under MIT/X11 license.
8098           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
8099
8100 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
8101
8102         * domain.c: Disable LoadLibrary support to fix Win32 build.
8103
8104         Code is contributed under MIT/X11 license.
8105
8106 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
8107
8108         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
8109         to help with cache behaviour.
8110
8111 2008-05-01  Miguel de Icaza  <miguel@novell.com>
8112
8113         * appdomain.c (mono_domain_from_appdomain): Add new accessor
8114         method. 
8115
8116 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
8117
8118         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
8119
8120 2008-05-01  Dick Porter  <dick@ximian.com>
8121
8122         * process.c (process_get_fileversion): Only pass 16 bits of
8123         language ID to VerLanguageName.  Fixes bug 381204.
8124
8125 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
8126
8127         * verify.c (mono_method_verify): Fix the comparison
8128         operator for code bounds check.
8129
8130 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
8131
8132         * verify.c (mono_method_verify): Check the bounds of
8133         all access of the code array.
8134
8135 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
8136
8137         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
8138
8139 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
8140
8141         * image.c (mono_image_strong_name_position): Fix return value when the rva is
8142         not valid.
8143
8144 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
8145
8146         * loader.c (mono_get_method_from_token, mono_method_signature): Add
8147         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
8148         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
8149         fixup main EXE images when using mono.exe for mixed-mode assembly support.
8150         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
8151         mono_runtime_load.
8152         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
8153         runtime initialization from metadata.
8154         * assembly.c: Remove obsolete ceGetModuleFileNameA.
8155         (mono_set_rootdir): Use mono_get_module_file_name.
8156         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
8157         handles.
8158         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
8159         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
8160         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
8161         MonoCLIImageInfo. Add support for module handles.
8162         (load_cli_header): Update mono_cli_rva_image_map signature.
8163         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
8164         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
8165         (mono_image_rva_map): Add support for module handles.
8166         (mono_image_ensure_section_idx): Add support for module handles.
8167         (mono_image_close): Add support for module handles.
8168         (do_load_header): Add support for module handles.
8169         (mono_image_open_from_module_handle): New function for internal use.
8170         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
8171         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
8172         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
8173         handles.
8174         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
8175         * image.h: Add mono_image_fixup_vtable.
8176         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
8177         support.
8178         * coree.h: New file.
8179         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
8180         unsupported native code.
8181         (mono_marshal_set_callconv_from_modopt): New function splitted from
8182         mono_marshal_get_managed_wrapper.
8183         (mono_marshal_get_managed_wrapper): Use
8184         mono_marshal_set_callconv_from_modopt.
8185         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
8186         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
8187         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
8188         that results in a deadlock when the runtime is loaded in _CorDllMain.
8189         * Makefile.am: Add coree.c and coree.h.
8190
8191         Contributed under MIT/X11 license.
8192
8193 2008-04-28  Mark Probst  <mark.probst@gmail.com>
8194
8195         * generic-sharing.c: Search for type arguments in array element
8196         types as well.
8197
8198 2008-04-28  Mark Probst  <mark.probst@gmail.com>
8199
8200         * class-internals.h, generic-sharing.c: New, small runtime generic context.
8201
8202         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
8203
8204         * object.c: Don't setup the RGCTX when the vtable is created,
8205         because we're setting it up lazily now.
8206
8207 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
8208
8209         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
8210         64 bit support.
8211
8212 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
8213
8214         * verify.c (verify_class_for_overlapping_reference_fields): 
8215         If class is under fulltrust allow reference types to overllap
8216         if they have the same RVA.
8217
8218 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
8219
8220         * pedump.c: Added new flag valid-only, that makes the verifier
8221         behaves just like --security=validil. It won't fail type load
8222         due to unverifiable restrictions.
8223
8224 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
8225
8226         * class-internals.h (struct MonoMethod): Added a verification_success
8227         field to cache verifier executions. Reduced MonoMethod:slot size by
8228         one bit.
8229
8230 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
8231
8232         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
8233         instead of a 'vt' argument to save an indirection and to allow these to be used
8234         for valuetypes.
8235         (scan_vtype): New helper function to scan an area using a gc descriptor.
8236         (mono_gc_wbarrier_value_copy): Implement this.
8237         (handle_remset): Add support for REMSET_VTYPE.
8238         (find_in_remset_loc): Ditto.
8239         (mono_gc_base_init): Allow some debugging options to be controlled through the
8240         use of the MONO_GC_DEBUG env variable.
8241         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
8242         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
8243
8244 2008-04-23  Martin Baulig  <martin@ximian.com>
8245
8246         * domain.c (mono_domain_create): Move the call to
8247         mono_debug_domain_create() down, after allocating the domain id.
8248
8249 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
8250
8251         verify.c (verify_class_for_overlapping_reference_fields): Skip
8252         static fields while verifying for overlapping fields as they
8253         don't matter at all.
8254
8255 2008-04-23  Marek Habersack  <mhabersack@novell.com>
8256
8257         * domain-internals.h: added a declaration of
8258         mono_make_shadow_copy.
8259
8260         * assembly.c (mono_assembly_open_full): shadow copying of
8261         assemblies moved to here, so that all the assemblies within the
8262         application domain's private binary directories can be
8263         processed. Fixes bug #380546
8264
8265         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
8266         mono_make_shadow_copy and made non-static. The decision whether
8267         to shadow-copy an assembly is made based on its location - it's
8268         copied if it's in one of the private application domain binary
8269         directories and its different to the target file in the shadow
8270         directory. Fixes bug #380546
8271
8272 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
8273
8274         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
8275
8276         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
8277         types.
8278
8279         * reflection.c (mono_image_create_token): Handle 
8280         Method/ConstructorOnTypeBuilderInst.
8281         (resolve_object): Ditto.
8282         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
8283         so it can be called from resolve_object. Also handle the case when the inflated
8284         class already has its methods setup.
8285
8286 2008-04-21  Martin Baulig  <martin@ximian.com>
8287
8288         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
8289
8290 2008-04-20  Geoff Norton  <gnorton@novell.com>
8291
8292         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
8293         pointer dereference.
8294
8295 2008-04-15  Marek Habersack  <mhabersack@novell.com>
8296
8297         * appdomain.c (try_load_from): if IOMAP is in effect, call the
8298         portability API to look up the assembly file. Fixes behavior in
8299         situations when the application has a bin/ directory, but the
8300         assembly search patch refers to Bin/ (and thus the requested file
8301         name is Bin/SomeLibrary.dll). Fixes bug #379888
8302
8303 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
8304
8305         verify.c (mono_type_is_generic_argument): Extracted this check
8306         from a dozen places to here.
8307
8308         verify.c: Fixed all issues related to boxing generic arguments
8309         and their constraints.
8310
8311 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
8312
8313         verify.c (mono_class_interface_implements_interface): Fix win32 build.
8314
8315 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
8316
8317         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
8318         isn't finished yet. Fixes #363447.
8319
8320 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
8321
8322         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
8323         Fixes #346419.
8324
8325 2008-04-13  Jb Evain  <jbevain@novell.com>
8326
8327         * domain.c: update the 2.1 profile versions.
8328         Merged from the Moonlight 2 branch.
8329
8330 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
8331
8332         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
8333         mscorlibs for the non-refonly case as well.
8334
8335         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
8336         in mono_assembly_load_from_full (). Fixes #378924.
8337
8338 2008-04-11  Geoff Norton  <gnorton@novell.com>
8339
8340         * icall.c: The global extern environ doesn't exist on Mac.  We
8341         need to call NSGetEnviron instead.
8342
8343 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
8344
8345         verify.c: Add generic method constraint verification.
8346
8347 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
8348
8349         class.c (mono_class_inflate_generic_method_full): Add a long
8350         explanation to the is_mb_open hack. Remove the FIXME.
8351
8352 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
8353
8354         * verify.c (mono_method_verify): Mark all unknown opcodes
8355         as invalid. Mark jmp as unverifiable.
8356
8357 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
8358
8359         * verify.c: Add code to do type constraint verification on class instances.
8360
8361         * verify.c (mono_verifier_verify_class): Use the type constraint 
8362         verification code.
8363
8364 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
8365
8366         * class.c (mono_class_get_field_default_value): Don't pass cindex
8367         as hint to mono_metadata_get_constant_index. The local is not initialized
8368         and should contain garbage most of the time. This could only work
8369         with a lot of luck.
8370
8371 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
8372
8373         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
8374
8375 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
8376
8377         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
8378
8379         * class.c (mono_class_from_generic_parameter): Save the token of the
8380         generic param in MonoClass::sizes.generic_param_token.
8381
8382         * reflection.c (mono_custom_attrs_from_class): If the class type is
8383         VAR or MVAR retrieve the attributes of the generic param.
8384
8385 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
8386
8387         * class.c (mono_class_init): Do class verification if the verifier
8388         is enabled.
8389
8390 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
8391
8392         * verify-internal.h: Added mono_verifier_verify_class.
8393
8394         * verify.c: Added mono_verifier_verify_class. It checks for
8395         classes with explicit layout that have overlapping reference fields.
8396
8397         * pedump.c: Init the verifier state prior to verification. Fixed
8398         command line arguments.
8399
8400 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
8401
8402         * Makefile.am: Added verify-internals.h, hopefully fix the build.
8403
8404 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
8405
8406         * verify-internals.h: Fix a warning.
8407
8408 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
8409
8410         * verify-internals.h: New header with the verifier configuration
8411         extracted from mini.c.
8412
8413         * verify.c: Implemented the new functions exported by verify-internals.h.
8414
8415 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
8416
8417         * verify.c: Add proper verification of ckfinite.
8418
8419 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
8420
8421         * verify.c (do_conversion): Improved error message to something
8422         more meanfull.
8423
8424         * verify.c (check_is_valid_type_for_field_ops): Fix to work
8425         with primitive types.
8426
8427 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
8428
8429         * verify.c: Added tail prefix checking. Marked icall
8430         as unverifible.
8431
8432 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
8433
8434         * verify.c: Fix the detection of branches to the middle
8435         of an instruction.
8436
8437 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
8438
8439         * verify.c: Implemented verification of volatile. and
8440         unaligned. prefix. Check if a type is valid after retrieving it.
8441
8442 2008-04-01  Dick Porter  <dick@ximian.com>
8443
8444         * process.c (process_get_fileversion): If there's no string block,
8445         set the file language to en_US.  Fixes the other new part of bug
8446         374600.
8447
8448 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
8449
8450         * class.c: New functions mono_method_can_access_field_full and
8451         mono_method_can_access_method_full. They perform type visibility
8452         and type site check.
8453
8454         * class-internal.h: Added exported functions.
8455
8456         * verify.c: Use new functions to implement proper visibility checks.
8457
8458 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
8459
8460         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
8461
8462 2008-03-28  Dick Porter  <dick@ximian.com>
8463
8464         * process.c (process_get_fileversion): Use the first language ID
8465         we see, rather than insisting on an invariant language.  Fixes bug
8466         374600.
8467
8468 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
8469
8470         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
8471         the streams to fix reading of invalid memory later.
8472
8473         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
8474         to ease debugging.
8475
8476 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
8477
8478         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
8479         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
8480
8481 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
8482         * threads.h: Added MonoThreadManageCallback type and
8483         mono_thread_set_manage_callback prototype
8484         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
8485         (used to store the mono_thread_manage callback).
8486         * threads.c: Added mono_thread_set_manage_callback, and handle
8487         "MonoThread->manage_callback" in build_wait_tids.
8488
8489 2008-03-26  Dick Porter  <dick@ximian.com>
8490
8491         * process.c (process_get_fileversion): Set FileVersionInfo strings
8492         to Empty when the resource doesn't have the particular info.
8493         Fixes bug 355717.
8494
8495 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
8496
8497         * verify.c (mono_method_verify): Proper prefix validation.
8498
8499 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
8500
8501         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
8502         itself in a separate argument instead of throwing them. Fixes #373448.
8503
8504         * appdomain.c: Bump corlib version.
8505
8506 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
8507
8508         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
8509
8510 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
8511
8512         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
8513         version macros.
8514
8515 2008-03-20  Mark Probst  <mark.probst@gmail.com>
8516
8517         * generic-sharing.c, class-internals.h: Code for putting
8518         reflection types into the runtime generic context.
8519
8520 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
8521
8522         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
8523         Fixes #340662. 
8524
8525
8526 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
8527
8528         * verify.c (VerifyContext): Added instruction prefix data to the struct.
8529
8530         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
8531
8532         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
8533
8534         * verify.c (do_cast): Let the result value keep the boxed status.
8535
8536         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
8537
8538 2008-03-17  Jb Evain  <jbevain@novell.com>
8539
8540         * reflection.c: when running on a 2.0 runtime, emit
8541         unconditionally the #~ header version as 2.0, and the
8542         CLI header version as 2.5, for symmetry's sake with csc.
8543
8544 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
8545
8546         * class.c: Remove the unused cache_interface_offsets stuff.
8547
8548         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
8549         profiler.c: Fix warnings.
8550
8551 2008-03-16  Mark Probst  <mark.probst@gmail.com>
8552
8553         * generic-sharing.c, class-internals.h: Support for putting
8554         methods into the runtime generic context.
8555
8556 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
8557
8558         * class.c (mono_class_setup_fields): Ignore calls made to this function for
8559         classes which are generic instances of not-yet finished typebuilders. Fixes
8560         #351172.
8561
8562         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
8563
8564 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
8565
8566         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
8567
8568         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
8569         field, replace it with a hash table in MonoDynamicImage.
8570
8571         * reflection.c (inflate_mono_method): Access the generic definition object from
8572         image->generic_def_objects instead of imethod->reflection_info.
8573
8574         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
8575
8576         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
8577         
8578         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
8579         function in reflection.c so it is easier to keep in sync with the dynamic image
8580         creation code.
8581
8582         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
8583         mono_image_close ().
8584
8585 2008-03-15  Mark Probst  <mark.probst@gmail.com>
8586
8587         * class.c (mono_class_generic_sharing_enabled): Disable generic
8588         sharing for all architectures except AMD64 and x86 to fix build.
8589
8590 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
8591
8592         * verify.c: Use the generic definition MonoGenericContext when available.
8593         Remove code for checking generics instance compatibility in favor of
8594         mono_class_is_assignable_from.
8595
8596 2008-03-14  Mark Probst  <mark.probst@gmail.com>
8597
8598         * marshal.c, marshal.h, metadata-internals.h, image.c,
8599         wrapper-types.h: New wrapper for invoking a shared static method
8600         without having to pass the runtime generic context argument.
8601
8602 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
8603
8604         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
8605
8606 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
8607
8608         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
8609         
8610         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
8611         create a token from a FieldOnTypeBuilderInst.
8612         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
8613         (resolve_object): Ditto.
8614
8615         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
8616         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
8617
8618 2008-03-14  Martin Baulig  <martin@ximian.com>
8619
8620         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
8621
8622         * debug-mono-symfile.h
8623         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
8624         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
8625
8626 2008-03-10  Martin Baulig  <martin@ximian.com>
8627
8628         * debug-mono-symfile.h
8629         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
8630         `lexical_block_table_offset'.
8631         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
8632         `lexical_blocks'.
8633         (MonoSymbolFile): Added `version'.
8634
8635         * mono-debug.h
8636         (MonoDebugLexicalBlockEntry): Removed.
8637         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
8638         `lexical_blocks'.
8639
8640         * mono-debug.c (mono_debug_add_method): Don't compute lexical
8641         blocks here; the debugger now does this internally.
8642
8643 2008-02-27  Martin Baulig  <martin@ximian.com>
8644
8645         * object.c (mono_runtime_exec_main): Call
8646         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
8647         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
8648
8649 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
8650
8651         * verify.c (verify_type_compatibility_full): Allow native int to be converted
8652         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
8653
8654 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
8655
8656         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
8657         ldftn with a virtual method.
8658
8659 2008-03-13  Geoff Norton  <gnorton@novell.com>
8660
8661         * decimal.c:  Only include memory.h if the platform has it.
8662
8663 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
8664
8665         * assembly.c, class.c, metadata-internals.h: make sure public key
8666         tokesns are compared in a case-insensitive way. Also, all
8667         the lookups in the GAC use a lowercase public key token
8668         (gaacutil already does the lowercasing on install). Fixes
8669         bug #369541.
8670
8671 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
8672
8673         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
8674         and return value.
8675
8676 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
8677
8678         * image.c: when someone loads a mscorlib from a file, return the
8679         currently loaded mscorlib (fixes bug #369253).
8680
8681 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
8682
8683         * class.c: handle types with no parents by forcing them to have
8684         System.Object as a parent and marking them as broken (this currently
8685         allows the first part of bug #369173 to work as well, likely because
8686         we don't check for typeload exceptions everywhere yet).
8687
8688 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
8689
8690         * class.c: more complete check that types belong to corlib
8691         (fixes second part of bug #369173).
8692
8693 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
8694
8695         * generic-sharing.c:  Including glib.h for the MSVC builds to define
8696           "inline" to "__inline" before including mono-membar.h.
8697           
8698         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
8699           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
8700           MSVC builds.
8701
8702         Contributed under MIT/X11 license.
8703
8704 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
8705
8706         * verify.c (do_invoke_method): Remove return type validation.
8707
8708         * verify.c (do_ret): Do return type validation at return site instead of
8709         call site.
8710
8711 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
8712
8713         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
8714
8715         * verify.c: Some todos cleaned and improved a few error messages.
8716
8717 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
8718
8719         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
8720
8721 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
8722
8723         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
8724         system types correctly.
8725
8726         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
8727         function.
8728
8729 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
8730
8731         * assembly.c (build_assembly_name): Fix a warning.
8732
8733 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
8734
8735         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
8736         the called function takes an object type argument. Fixes storing or
8737         valuetypes across remoting as well as reducing memory usage.
8738         * image.c, metadata-internals.h: remove now unused ldfld_remote and
8739         stfld_remote wrapper caches.
8740
8741 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
8742
8743         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
8744         is not found.
8745
8746         * reflection.c (mono_image_register_token): New helper function to save
8747         a token->object mapping.        
8748
8749         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
8750         managed code.
8751
8752         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
8753         one dimension arrays. Fixes #367670.
8754         (mono_reflection_get_type_internal): Ditto.
8755
8756 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
8757
8758         * marshal.c: mono_load_remote_field_new() always returns object.
8759         so use the proper signature (fixes bug #366445).
8760
8761 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
8762         
8763         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
8764         add an 'inline_failure' flag instead.
8765
8766 2008-03-04  Mark Probst  <mark.probst@gmail.com>
8767
8768         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
8769         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
8770         contains the location of "this", used for exception handling.
8771
8772 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
8773
8774         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
8775         their size on all platforms for perf reasons.
8776
8777 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
8778
8779         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
8780         object-internal.h
8781
8782         * object-internal.h: Same.
8783
8784 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
8785
8786         * reflection.h: Fix the build I just broke.
8787
8788 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
8789
8790         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
8791         Test if a token is valid, this remove explicit usage of 
8792         MonoDynamicImage::tokens from the verifier code.
8793
8794         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
8795
8796         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
8797         instead of direct access to MonoDynamicImage::tokens.
8798
8799 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
8800
8801         * verify.c (token_bounds_check): Fix the build I just broke.
8802
8803 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
8804
8805         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
8806
8807         * verify.c (verifier_load_method): Fixed the errors message.
8808
8809         * verify.c (mono_method_verify): Fixed a debug message.
8810
8811 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
8812
8813         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
8814         mono-perfcounters.h, class-internals.h: support for predefined
8815         writable counters, query of categories and counters, bugfixes.
8816
8817 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
8818
8819         * verify.c (do_refanytype): Verify the refanytype opcode.
8820
8821         * verify.c (mono_method_verify): Use do_refanytype.
8822
8823 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
8824
8825         * verify.c (do_mkrefany): Verify the mkrefany opcode.
8826
8827         * verify.c (mono_method_verify): Use do_mkrefany.
8828
8829 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
8830
8831         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
8832         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
8833         implementation.
8834
8835 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
8836
8837         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
8838         the type load exception.
8839
8840 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
8841
8842         * verify.c: Added a few FIXME for method signatures
8843
8844         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
8845         of mono_method_get_signature and get vararg call working. Removed unused
8846         checks for return value.
8847
8848         * verify.c (do_refanyval): Verify the refanyval opcode.
8849
8850         * verify.c (mono_method_verify): Implemented verification of arglist and
8851         use do_refanyval.
8852
8853 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
8854
8855         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
8856         vtypes to marshal.c.
8857
8858         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
8859         it works for AOT as well.
8860
8861 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
8862
8863         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
8864         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
8865         the system time is adjusted.
8866
8867 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
8868
8869         * icall.c, icall-def.h: use the new time functions (fixes the
8870         non-monotonic behaviour of TickCount).
8871
8872 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
8873
8874         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
8875         it breaks the build.
8876         
8877         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
8878         cattr is not finished yet.
8879
8880 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
8881
8882         * verify.c: Proper token validation for field, method and type.
8883
8884 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
8885
8886         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
8887
8888         * loader.c (method_from_memberref): Generate type load error instead of method missing
8889         if the type is not found.
8890
8891 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
8892
8893         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
8894         some of the conversions caused the generation of a marshal directive exception.
8895
8896 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
8897
8898         verify.c: Report which exception should be thrown by the JIT.
8899         Added a lot of FIXME notes.
8900
8901 2008-02-22  Mark Probst  <mark.probst@gmail.com>
8902
8903         * generic-sharing.c: Runtime generic context slots are not
8904         instantiated on init anymore.  Instead, provide function to do the
8905         instantiating on demand.
8906
8907         * class-internals.h: Added vtable to runtime generic context.
8908         Macros for encoding direct and indirect slot offsets in one
8909         guint32.
8910
8911 2008-02-21  Mark Probst  <mark.probst@gmail.com>
8912
8913         * object.c, generic-sharing.c: Moved some generic sharing code
8914         from object.c to generic-sharing.c.
8915
8916         * generic-sharing.c: Added support for extensible runtime generic
8917         context.
8918
8919         * metadata-internals.h: Two new hash tables in MonoImage for
8920         extensible runtime generic context support.
8921
8922         * domain.c: Unregister generic vtables upon domain unloading.
8923
8924         * image.c: Destroy new hash tables upon image unloading.
8925
8926         * metadata.c: Unregister generic subclasses upon image unloading.
8927
8928         * class-internals.h: New data structure for runtime generic
8929         context template.  New fields in the runtime generic context for
8930         extensible part.
8931
8932         * Makefile.am: Added generic-sharing.c.
8933
8934 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
8935
8936         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
8937         there is a pending loader exception, raise it.
8938
8939         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
8940         same.
8941
8942         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
8943         same.
8944
8945         Fixes #363450.
8946
8947 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
8948
8949         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
8950
8951         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
8952         
8953         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
8954         ref-only requests for compatibility with MS.
8955
8956 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
8957
8958         * reflection.c (mono_custom_attrs_from_method): Don't silently
8959         return an empty list for generic method instances.
8960         (mono_custom_attrs_from_param): Likewise.
8961
8962 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
8963             Raja R Harinath  <harinath@hurrynot.org>
8964
8965         Fix #354757
8966         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
8967         * class.c (mono_class_inflate_generic_method_full): Initialize it
8968         when a fully-open method is instantiated.
8969         * metadata.c (inflated_method_equal, inflated_method_hash): Update
8970         to new field.
8971         * reflection.c (inflate_mono_method): Don't create a temporary context.
8972
8973 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
8974
8975         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
8976         Compute correct value, to prepare for imethod->reflection_info going away.
8977
8978 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
8979
8980         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
8981
8982 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
8983
8984         * verify.c: Implement skip visibility flag.
8985
8986 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
8987
8988         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
8989         which contains an extra field to tell the kind of exception that should be thrown.
8990
8991         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
8992
8993 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
8994
8995         * loader.c (mono_method_get_param_names): Initialize 'klass' after
8996         'method' is updated.
8997
8998 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
8999
9000         * class.c (mono_class_layout_fields): Set class->min_align for classes using
9001         explicit layout as well. Fixes #360375.
9002
9003 2008-02-11  Geoff Norton  <gnorton@novell.com>
9004
9005         * loader.c: Guard and dereference against inflated generic methods
9006
9007 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
9008
9009         * class.c: Include Retargetable spec in assembly name.
9010         * assembly.c: Always include PublicKeyToken spec in assembly name
9011         (with value "null" if assembly is not signed), and include
9012         Retargetable spec.
9013         * icall-def.h: Added icall for Assembly.get_fullname.
9014         * icall.c: Added icall returning the fullname of an assembly.
9015
9016 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
9017
9018         * class.c (mono_class_setup_vtable_general): Add a missing call to
9019         mono_class_setup_methods () which is needed in the AOT case.
9020
9021 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
9022
9023         * verify.c (mono_type_get_stack_name): Added. Return the name for the
9024         stack type of the given MonoType.
9025
9026         * verify.c (verify_type_compatibility_full): Handle the void type.
9027
9028         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
9029         way stack merging works.
9030
9031         * verify.c (store_local): Improved verification message.
9032
9033         * verify.c (do_branch_op): If the merging is invalid, the method
9034         is unverifiable and not invalid. Improved error message.
9035
9036         * verify.c (merge_stacks): Properly merge a boxed valuetype and
9037         a reference type diferent than System.Object. Improved error
9038         message.
9039
9040 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
9041
9042         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
9043
9044         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
9045         type of an enum even if the argument is byref.
9046
9047         * verify.c: Replace all explicit uses of enumtype and enum_basetype
9048         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
9049
9050         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
9051
9052         *verify.c (verify_type_compatibility_full): Make enum types
9053         compatible with their base types.
9054
9055         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
9056         types are compatible for the special case of a boxed valuetype and
9057         System.Object.
9058
9059         * verify.c (verify_stack_type_compatibility): The function
9060         is_compatible_boxed_valuetype was extracted from here.
9061
9062         * verify.c (push_arg): Only set ctx->has_this_store if the method
9063         is not static.
9064
9065         * verify.c (do_ldelem): Fixed a typo in an error message and added
9066         strict check for mixing int32 and native int as the array type
9067         and ldelem type.
9068
9069         * verify.c (merge_stacks): Consider boxed valuetypes in the
9070         compatibility checks.
9071
9072 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
9073         * profiler.h: (MonoGCEvent): Added start-stop the world events.
9074
9075 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
9076         *class.c: use_new_interface_vtable_code: renamed the env var to have
9077         a "MONO_" prefix, and fix the logic to enable it by default.
9078
9079 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
9080         *class.c:
9081         mono_class_setup_vtable_general: rewrote the way in which interface
9082         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
9083         makes the code more maintainable.
9084         For now the old code is still there, and can be activated setting
9085         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
9086
9087 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
9088
9089         * verify.c: guarded some debug functions around and #ifdef.
9090
9091         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
9092
9093 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
9094
9095         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
9096         changes for now since they seem to break too many things.
9097
9098 2008-02-05  Mark Probst  <mark.probst@gmail.com>
9099
9100         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
9101         mono_marshal_find_nonzero_bit_offset): Added macro and function
9102         for finding the byte- and bit-offset of a bitfield within a
9103         struct.
9104
9105 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
9106
9107         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
9108         (mono_marshal_get_struct_to_ptr): Ditto.
9109
9110         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
9111         cctor_signature.
9112
9113 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
9114
9115         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
9116         between methods for non-corlib types.
9117
9118 2008-02-02  Geoff Norton  <gnorton@novell.com>
9119
9120         * loader.c (mono_method_get_param_names): Populate the parameter name for 
9121         generic parameters as well. (Fixes #342536)
9122
9123 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
9124
9125         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
9126
9127         * verify.c (do_invoke_method): Fix for calling with byref structs.
9128
9129         * verify.c (do_cast): push a boxed value type based on the type token and not
9130         the type of stack.
9131
9132 2008-01-31  William Holmes  <billholmes54@gmail.com>
9133
9134         * process.c (process_module_string_read): Check the size returned form 
9135           VerQueryValue to avoid out of memory exception. 
9136
9137 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
9138
9139         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9140         Handle properly modules which are not in the moduleref table. Fixes
9141         #356938.
9142
9143 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
9144
9145         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
9146         the dynamic case which is now in managed code.
9147         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
9148
9149         * marshal.c (mono_string_to_bstr): Fix a warning.
9150         (init_com_provider_ms): Ditto.
9151
9152         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
9153
9154         * exception.c (mono_get_exception_out_of_memory): New helper function.
9155
9156 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
9157
9158         * marshal.c: Add support for BSTR marshalling
9159         using other COM systems.
9160
9161         Code is contributed under MIT/X11 license.
9162
9163 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
9164
9165         * object.c (mono_runtime_invoke_array): reverted previous
9166         commit as it breaks the build.
9167
9168 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
9169
9170         * object.c (mono_runtime_invoke_array): Verify arguments for
9171         invalid types. Fixes #348522.
9172
9173 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
9174
9175         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
9176         non-final virtual calls using call. 
9177
9178         * verify.c (do_invoke): fixed some TODOs.
9179
9180         * verify.c (push_arg): set has_this_store for "ldarga 0".
9181
9182 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
9183
9184         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
9185         which belong to an inflated class. Fixes #356531.
9186
9187 2008-01-26  Robert Jordan  <robertj@gmx.net>
9188
9189         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
9190         which resort to FindFirstFile when a certain error condition
9191         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
9192         Code is contributed under MIT/X11 license.
9193
9194 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
9195
9196         * marshal.c (emit_marshal_string): Fix out string marshalling
9197         to use specified encoding. Fixes #323900.
9198
9199         Code is contributed under MIT/X11 license.
9200
9201 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
9202
9203         * class.c (mono_class_inflate_generic_method_full): Don't modify
9204         iresult->context after cache check.
9205
9206 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
9207
9208         * class.c (mono_class_inflate_generic_method_full): Change the
9209         struct assignments to memcpy for better visibility and add some comments.
9210
9211 2008-01-23  Dick Porter  <dick@ximian.com>
9212
9213         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
9214         procedure, and make it work on windows.
9215
9216 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
9217
9218         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
9219         a MonoReflectionTypeBuilder since it is always of that type.
9220
9221         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
9222
9223         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
9224
9225         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
9226         
9227         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
9228
9229         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
9230
9231         * reflection.c (mono_reflection_create_runtime_class): Remove already created
9232         instantiations from the type cache.
9233
9234 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
9235
9236         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
9237
9238         * verify.c (do_unbox_value): push a controled mutability managed pointer.
9239
9240 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
9241
9242         * verify.c (do_ldstr): added, verifies if the #US token is valid.
9243
9244         * verify.c (mono_method_verify): removed old TODO
9245
9246 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
9247
9248         * verify.c (do_newobj): add visibility check.
9249
9250 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
9251
9252         * verify.c (do_load_function_ptr): add visibility check.
9253
9254 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
9255         *class.c:
9256         mono_generic_class_get_class: hook profiler events.
9257         mono_field_get_offset: added to support heap-shot in the new profiler.
9258         *class.h: exported mono_field_get_offset.
9259         * reflection.c:
9260         mono_reflection_setup_internal_class: hook profiler events.
9261
9262 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
9263
9264         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
9265         argument here too and use it to avoid checking for pending exceptions if 
9266         possible.
9267
9268 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
9269
9270         * assembly.c (build_assembly_name): add arg for passing the assembly
9271         flags. Do not consider a PublicKey with value "null" valid.
9272         (mono_assembly_name_parse_full): added boolean argument that will be
9273         set if the assembly name contains a PublicKeyToken spec. Added support
9274         for the Retargetable spec for which only Yes or No are allowed as valid
9275         value. Consider assembly name invalid if Retargetable spec is set, but
9276         either version, culture or public key (token) are not specified.
9277         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
9278         with implementation in assembly.c.
9279         * icall.c (fill_reflection_assembly_name): also copy assembly flags
9280         from MonoAssemblyName.
9281         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
9282         introduced argument for mono_assembly_name_parse_full to know if the
9283         assembly name has a PublicKeyToken spec, and if it has instruct
9284         fill_reflection_assembly_name to use default value for keyToken (if
9285         PublicKeyToken is null).
9286
9287 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
9288
9289         * verify.c (mono_method_verify): fixed ovf ops with
9290         float values. They are unverifiable now.
9291
9292 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
9293
9294         * class.c (set_failure_from_loader_error): add BadImageException to the
9295         list of exceptions that can cause a type to fail to load.
9296
9297         * class.c (mono_class_get_exception_for_failure): same.
9298
9299 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
9300
9301         * verify.c (in_any_exception_block): added, check if offset
9302         is part of any exception handling clause.
9303
9304         * verify.c (get_stack_type): added VAR and MVAR types.
9305
9306         * verify.c (do_stobj): better error messages.
9307
9308         * verify.c (do_cpobj): added, check cpobj.
9309
9310         * verify.c (do_initobj): added, check initobj.
9311
9312         * verify.c (do_sizeof): added, check sizeof.
9313
9314         * verify.c (do_localloc): added, check localloc.
9315
9316         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
9317
9318 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
9319
9320         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
9321         save_lmf/restore_lmf opcodes.
9322
9323         * threads.c (mono_threads_install_notify_pending_exc): New function to
9324         install a callback notifying the JIT there is a pending exception on a thread.
9325         (mono_thread_request_interruption): Call the new callback.
9326         (mono_thread_get_and_clear_pending_exception): New function to return the
9327         exception pending on a thread.
9328
9329         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
9330         to turn off checking for pending exceptions.
9331         (mono_marshal_get_native_wrapper): Ditto.
9332
9333 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
9334
9335         * threads-types.h: Get rid of the unnecessary extern declarations.
9336
9337 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
9338
9339         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
9340         return field from parent class if not private.
9341         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
9342         returns fields from parent class if they are not private.
9343         (method_nonpublic): added function to determine if a given method
9344         should be considered non-public. Returns false for private methods
9345         on parent class, and internal methods from parent on the 1.0 profile.
9346         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
9347         use method_nonpublic function to determine whether method should be
9348         returned.
9349         (property_accessor_public): use newly introduced method_nonpublic
9350         function to determine whether accessor is non-public. 
9351         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
9352         event from parent class if not private. Only return static event if
9353         Static flag is set, and only return static event from parent class if
9354         FlattenHierarchy flag is set.
9355         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
9356         include non-private events from parent class.
9357
9358 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
9359
9360         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
9361         warning.
9362
9363 2008-01-16  Wade Berrier <wberrier@novell.com>
9364
9365         * security.c: Add assembly.h header to appease some warnings
9366
9367 2008-01-16  Dick Porter  <dick@ximian.com>
9368
9369         * process.c (process_module_string_read): Remove trailing null
9370         when saving string.
9371
9372 2008-01-16  Mark Probst  <mark.probst@gmail.com>
9373
9374         * class-internals.h: A new data structure describing the layout of
9375         a runtime generic context (MonoRuntimeGenericContextTemplate).
9376
9377         * metadata-internals.h: Added a hash table to MonoDomain that maps
9378         from open generic classes to their runtime generic context
9379         templates.
9380
9381         * object.c: Building of the runtime generic context, including
9382         proper handling of generic type arguments of superclasses.
9383         Building of the runtime generic context according to the template.
9384
9385 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
9386
9387         * class.c (mono_class_setup_fields): Set field.count for generic instances.
9388         Fixes #350856.
9389
9390         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
9391         mono_portability_find_file (). Fixes #325466.
9392         (mono_image_get_public_key): Fix a warning.
9393
9394 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
9395
9396         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
9397         Fixes #353550.
9398         (mono_class_from_name_case): Ditto.
9399
9400 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
9401
9402         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
9403           common storage for the tables used in the System/NumberFormatter class.
9404
9405 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
9406
9407         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
9408
9409 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
9410
9411         * verify.c (get_boxable_mono_type): check if the token is valid.
9412
9413         * verify.c (set_stack_value): changed to add an error if an
9414         invalid type is set on stack. Changed all callers due to signature change.
9415
9416         * verify.c (do_stobj): implement stobj validation.
9417
9418 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
9419
9420         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
9421         set container->is_method, it was set earlier.
9422
9423         * metadata.c (type_in_image): Handle MVARs which belong to not finished
9424         generic methods.
9425
9426         * reflection.c (mono_reflection_initialize_generic_parameter): Set
9427         is_method of the generic container to TRUE for methods.
9428
9429 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
9430
9431         * metadata.c (type_in_image): Handle type parameters properly.
9432
9433         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
9434         memory ownership of this structure.
9435
9436 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
9437
9438         * verify.c (get_boxable_mono_type): make typedref types been just
9439         unverifiable. check for void type.
9440
9441         * verify.c (do_unbox_any): added, verify opcode unbox.any.
9442
9443         * verify.c (do_load_function_ptr): accept method spec tokens.
9444
9445 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
9446
9447         * marshal.c (mono_class_native_size): Always set *align even if this is called
9448         recursively.
9449
9450 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
9451
9452         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
9453         out-of-date.
9454
9455 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
9456
9457         * verify.c: removed some old unused tables. A huge bunch of small fixes
9458         to things found while testing the verifier with mono basic.
9459
9460         * verify.c (dump_stack_value): dump null literal flag to.
9461
9462         * verify.c (verify_type_compatibility_full): fix comparison
9463         for types that have a generic super type.
9464
9465         * verify.c (verify_stack_type_compatibility): fix compatibility
9466         between null literals and reference types. fix compatibility between
9467         boxed valuetypes and object. fix corner case test for enums.
9468
9469         * verify.c (do_cmp_op): proper verification of cgt.un in case
9470         of reference types.
9471
9472         * verify.c (do_invoke_method): fix error message.
9473
9474         * verify.c (do_store_indirect
9475
9476         * verify.c (check_is_valid_type_for_field_ops): proper verification
9477         of managed pointers to valuetypes and boxed valuetypes. proper verification
9478         of null literals.
9479
9480         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
9481         allow token to be a reference type.
9482
9483         * verify.c (do_cast): proper handling of boxes valuetypes.
9484
9485         * verify.c (do_stelem): proper handling of storing a boxed valuetype
9486         in object[].
9487
9488         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
9489         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
9490         fixed the decoding of unbox_any
9491
9492 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
9493
9494         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
9495
9496 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
9497
9498         * verify.c (do_newobj): do delegate verification.
9499
9500         * verify.c (verify_delegate_compatibility): perform delegate
9501         verification.
9502
9503         * verify.c (verify_ldftn_delegate): perform tests related to
9504         ldftn delegates.
9505
9506         * verify.c (mono_delegate_signature_equal): perform the
9507         slightly diferent signature comparison required by delegates.
9508
9509         * metadata.c (mono_metadata_type_equal_full): added and exported
9510         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
9511         allows signature only comparison.
9512
9513         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
9514         as MONO_INTERNAL.
9515
9516 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
9517
9518         * verify.c: added a bunch of stack_slot_* functions to
9519         make access to stack slot type easier. This is required to
9520         allow optional flags, like null literal, boxed value and
9521         this pointer.
9522         All access paths to IlStackDesc::stype have been changed 
9523         to use these new funcions.
9524         Removed a bunch of unused functions and cleared all warnings.
9525         This patch introduces the usage of the this pointer and 
9526         boxed value flags.
9527
9528 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
9529
9530         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
9531
9532 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
9533
9534         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
9535         match managed version.
9536
9537         * appdomain.c: Bump corlib version.
9538         
9539         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
9540         argument.
9541
9542 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
9543
9544         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
9545         Set public key token to zero-length byte array if assembly is not
9546         strongnamed.
9547
9548 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
9549
9550         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
9551         writing a vtype array elem.
9552
9553 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
9554
9555         * assembly.c (build_assembly_name): return FALSE if length of token is
9556         not 16 (if not "null").
9557         (mono_assembly_name_parse_full): return FALSE if value of version,
9558         culture, token or key is 0.
9559         * icall.c (fill_reflection_assembly_name): add boolean arguments to
9560         specify whether public key and public key token must be set to default
9561         value (zero-length byte array) if not available. Set versioncompat to
9562         SameMachine. If public key is available or the default is set, then
9563         set PublicKey flag.
9564         (ves_icall_System_Reflection_Assembly_FillName): if no public key
9565         is available, use empty byte array as default value. On the 2.0
9566         profile, use default value for public key token if not set.
9567         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
9568         profile, use default value for public key if not set. On the 2.0
9569         profile, use default value for public key token if not set.
9570         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
9571         default values for public key and public key token.
9572
9573 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
9574
9575         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
9576         field to keep it in synch with the managed object.
9577
9578         * marshal.c (emit_marshal_object): Add support for byref marshalling of
9579         delegates. Fixes #351520.
9580
9581         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
9582         contains defined memory.
9583         
9584         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
9585
9586         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
9587         
9588         * sgen-gc.c (check_consistency): New helper function to do a consistency check
9589         of the GC data structures.
9590
9591         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
9592
9593         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
9594         
9595         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
9596         barrier.
9597         (mono_array_clone_in_domain): Ditto.
9598         (mono_array_clone_in_domain): Ditto.
9599
9600         * threads.c (start_wrapper): Register the thread start argument as a GC root.
9601         (cache_culture): Use a write barrier.
9602
9603         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
9604         (ves_icall_get_property_info): Ditto.
9605
9606         * object.h (MONO_STRUCT_SETREF): New macro.
9607
9608         * class-internals.h (MonoStats): Add some GC statistics.
9609
9610         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
9611
9612 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
9613
9614         * exception.c (mono_exception_from_name_two_strings):
9615         Break from loop after method is found.
9616
9617 2008-01-04  Dick Porter  <dick@ximian.com>
9618
9619         * process.c (process_module_string_read): Rename variable to
9620         reflect correct usage, after fixing bug 345972.
9621
9622 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
9623
9624         * verify.c (mono_type_create_fnptr_from_mono_method): 
9625         created a MonoType function pointer instance to be used during
9626         verification. The verifier releases this memory at end.
9627
9628         * verify.c (mono_method_is_constructor): extracted repeated
9629         checks for constructor into a single class.
9630
9631         * verify.c (do_push_field): use new extracted method
9632         for constructor check.
9633
9634         * verify.c (do_newobj): same.
9635
9636         * verify.c (do_ldftn): renamed to do_load_function_ptr
9637         and make it verify ldvirtftn too.
9638
9639         * verify.c (mono_method_verify: proper verification
9640         of ldvirtftn. release created MonoMethod instances.
9641
9642 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
9643
9644         * verify.c (token_bounds_check): added.
9645
9646         * verify.c (do_ldftn): added.
9647
9648         * verify.c (mono_method_verify): proper verificartion of ldftn.
9649
9650 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
9651
9652         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
9653         than the table row count. It's the resposibility of the caller to
9654         make the bounds check and raise the correct error.
9655
9656         * metadata.c (mono_metadata_decode_row_col): Same.
9657
9658         * loader.c (mono_get_method_from_token): perform bounds check
9659         on token for methoddef table.
9660
9661 2007-12-29  Miguel de Icaza  <miguel@novell.com>
9662
9663         * icall.c
9664         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
9665         assert into a negative result, the managed code already coped with
9666         that.
9667
9668         Some folks on Windows reported this error. 
9669
9670 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
9671
9672         * appdomain.c: Bump corlib version.
9673         * icall.c:
9674         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
9675         CultureInfo.CreateCulture to create CultureInfo for name.
9676         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
9677         create CultureInfo for name. Fixes bug #347174.
9678
9679 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
9680
9681         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
9682         flags.
9683
9684         * verify.c (is_valid_branch_instruction): allow branching to the
9685         first instruction of the protected block.
9686
9687         * verify.c (is_valid_cmp_branch_instruction): same.
9688
9689         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
9690         avoid double initialization.
9691
9692         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
9693         detect which cases the eval stack should just be copied.
9694
9695         * verify.c (mono_method_verify): check if the eval stack
9696         is empty when entering a protected block.
9697
9698 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
9699
9700         * verify.c: added is_clause_in_range, is_clause_inside_range,
9701         is_clause_nested and verify_clause_relationship. They perform
9702         the verifications stated in P1 12.4.2.7.
9703
9704         * verify.c (mono_method_verify): remove some unused variables,
9705         add the new exception clause checks, add instruction border
9706         checks for protected block start/end, improved some error 
9707         messages and fixed a bug in the way invalid instruction access
9708         is detected.
9709
9710 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
9711
9712         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
9713         from GC 7.0 if available.
9714
9715         * object.c: Remove an unused define.
9716         
9717         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
9718
9719         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
9720
9721         * null-gc.c (mono_gc_make_descr_for_array): Implement.
9722
9723         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
9724
9725         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
9726         to take the same arguments as the other make_descr functions.
9727
9728         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
9729
9730         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
9731         directly.
9732
9733         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
9734         mini.c.
9735
9736         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
9737         call to boehm-gc.c.
9738
9739         * boehm-gc.c (mono_gc_register_root): Fix a warning.
9740
9741         * null-gc.c (mono_gc_register_root): Fix a warning.
9742
9743         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
9744
9745         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
9746         (mono_gc_base_init): Call GC_init ().
9747
9748         * null-gc.c: Define mono_gc_register_root () as a no-op.
9749
9750         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
9751
9752 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
9753
9754         * verify.c: add prototype for merge_stacks at top
9755
9756         * verify.c (do_switch): added.
9757
9758         * verify.c (merge_stacks): on some cases the stack merging
9759         was not happening properly. Unequal stack sizes at merge
9760         points should be invalid.
9761
9762         * verify.c (mono_method_verify): added more debug info on stack state.
9763         verify switch properly.
9764
9765 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
9766
9767         * method-builder.h: New file, moved the mono_mb_ declarations here from 
9768         marshal.h.
9769
9770         * boehm-gc.c marshal.c: Include method-builder.h.
9771
9772         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
9773
9774         * marshal.c: Remove some code which is now in method-builder.c.
9775
9776 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
9777
9778         * method-builder.c: New file, extraction of the method builder functionality 
9779         from marshal.c.
9780
9781         * marshal.c: Move the mb functions into method-builder.c.
9782
9783         * marshal.h marshal.c: Export some mono_mb_... functions.
9784
9785         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
9786
9787         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
9788         the caller.
9789
9790         * class.c (mono_class_get_full): Check the token type in the dynamic case.
9791
9792         * loader.c (mono_field_from_token): Ditto.      
9793
9794         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
9795         type as well.
9796         
9797         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
9798         Fixes #342565.
9799
9800         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
9801         a helper function for setting it.
9802
9803         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
9804
9805         
9806         * assembly.c: Significally simplify code now that referenced assemblies are 
9807         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
9808
9809         * threads.h: Don't include  the internal threads-types.h header file. Fixes
9810         #349952.
9811
9812 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
9813
9814         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
9815         instructions that were target of branches or are at protected block boundaries.
9816
9817         * verify.c (in_same_block): handle filter clauses.
9818
9819         * verify.c (is_valid_branch_instruction): added. checks the target of
9820         instructions br or brtrue/false.
9821
9822         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
9823         binary branch instructions such as beq and bge.
9824
9825         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
9826         and made it pin the instruction as been part of the exception block.
9827
9828         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
9829         of in_same_block.
9830
9831         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
9832         of in_same_block.
9833
9834         * verify.c (do_ret): ret from a protected block is unverifiable and
9835         not invalid.
9836
9837         * verify.c (do_static_branch): verify br and br.s instructions.
9838
9839         * verify.c (merge_stacks): add extra param to support detection
9840         of branches in the middle of instructions.
9841         
9842         * verify.c (mono_method_verify): verify branches and exception blocks
9843         that target the middle of instructions. Proper verification of br and br.s.
9844
9845 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
9846
9847         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
9848         skip_visibility field.
9849         (reflection_methodbuilder_from_dynamic_method): Ditto.
9850
9851         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
9852         registrations. Fixes #348193.
9853
9854         * threads.h: Move the internal mono_thread_get_pending_exception () to
9855         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
9856
9857 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
9858
9859         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
9860         icall registration. Fixes #348193.
9861
9862         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
9863         for corlib classes into object. Fixes #349621.
9864
9865 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
9866
9867         * icall.c (property_accessor_nonpublic): new function to determine
9868         whether an accessor allows a property to be considered non-public.
9869         Returns false for private accessor(s) from parent class, and internal
9870         accessor(s) from parent on 2.0 profile (and higher).
9871         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
9872         to determine whether property should be included if NonPublic flag
9873         is set. Fixes bug #349078.
9874
9875 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
9876
9877         * verify.c (init_stack_with_value): added.
9878
9879         * verify.c (mono_method_verify): extracted common
9880         code for exception initialization into init_stack_with_value.
9881
9882         * verify.c (mono_method_verify): initialize the exception
9883         for handler clauses as well.
9884
9885         * verify.c (mono_method_verify): fix the exception clause
9886         ordering rules, it should use handler end offset and not
9887         start offset.
9888
9889 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
9890
9891         * rawbuffer.c: remove useless warning.
9892
9893 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
9894
9895         * threads.h, threads-types.h: move functions to the correct header
9896         (fixes bug#349952).
9897
9898 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
9899
9900         * verify.c (mono_method_verify): proper verification
9901         of exception handling clauses ranges and fallthru in
9902         and out of protected blocks.
9903
9904 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
9905
9906         * verify.c (mono_method_verify): fixed compilation issue.
9907
9908 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
9909
9910         * verify.c (mono_method_verify): a printf slipped in, changed
9911         to use verifier debug macro.
9912
9913 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
9914
9915         * verify.c (is_correct_leave): check for filter clauses.
9916
9917         * verify.c (do_filter): added.
9918
9919         * verify.c (mono_method_verify): property verification of leave.
9920
9921
9922 2007-12-18  Mark Probst  <mark.probst@gmail.com>
9923
9924         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
9925         Win32 build, until we figure out how to do the proper thing on
9926         Win32.
9927
9928 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
9929
9930         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
9931         by the previous patch.
9932         
9933         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
9934         the assembly resolve handler for refonly assemblies.
9935
9936 2007-12-17  Mark Probst  <mark.probst@gmail.com>
9937
9938         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
9939         Make sure only one thread is allowed to commence shutdown, and
9940         don't allow new threads to be started once shutdown is in
9941         progress.
9942
9943 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
9944
9945         * verify.c (is_correct_endfilter): added.
9946
9947         * verify.c (is_unverifiable_endfilter): added.
9948
9949         * verify.c (do_endfilter): added.
9950
9951         * verify.c (mono_method_verify): property verification of endfilter
9952         and fixed a corner case or endfinally.
9953
9954 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
9955
9956         * verify.h: new flags to support fail fast of unverifiable code and
9957         do non-strict verification. Non-strict verification is required to
9958         have MS runtime compatibility. There are a huge amount of unverifiable
9959         code that it accepts as verifiable. The strict mode verifies the code
9960         as the specs says.
9961         Non-strict mode will be required in cases where code needs to be
9962         accepted as verifiable but fails under strict mode.
9963
9964         * pedump.c: added support to fail fast and non-strict verification.
9965
9966         * verify.c: added support for both fail fast and non-strict verification.
9967
9968 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
9969
9970         * verify.c (is_correct_endfinally): added.
9971
9972         * verify.c (mono_method_verify): property verification of endfinally.
9973
9974 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
9975
9976         * verify.c (in_any_block): check for filter clauses.
9977
9978         * verify.c (is_correct_rethrow): added.
9979
9980         * verify.c (mono_method_verify): property verification of rethrow.
9981
9982         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
9983
9984 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
9985
9986         * verify.c (do_throw): added.
9987
9988         * verify.c (mono_method_verify): property verification of throw
9989
9990 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
9991
9992         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
9993         assemblies. Fixes #346425.
9994
9995 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
9996
9997         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
9998         FieldBuilders.
9999
10000         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
10001
10002         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
10003         prevent asserts when this is called with a token which might not be valid.
10004
10005         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
10006         lookup_dynamic_token_class with valid_token == FALSE.
10007
10008         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
10009
10010         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
10011
10012         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
10013         
10014 2007-12-10  Mark Probst  <mark.probst@gmail.com>
10015
10016         * gc.c: Don't delay threadpool thread finalization unless Mono is
10017         shutting down.
10018
10019 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
10020
10021         * threads.c: turn an assert into a non-fatal warning.
10022
10023 2007-12-09  Robert Jordan  <robertj@gmx.net>
10024
10025         * icall.c (GetVirtualMethod): Add missing argument validation.
10026
10027 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
10028
10029         * verify.c (do_cast): added.
10030
10031         * verify.c (mono_method_verify): property verification of castclass and isinst.
10032
10033
10034 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
10035
10036         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
10037
10038         * verify.c (do_stelem): added.
10039
10040         * verify.c (mono_method_verify): property verification of stelem.X.
10041
10042 2007-12-07  Mark Probst  <mark.probst@gmail.com>
10043
10044         * class.c, class-internals.h: Introduce an environment variable
10045         (MONO_GENERIC_SHARING) through which the extent of generic code
10046         sharing can be controlled (share all classes, share only corlib
10047         classes, or share nothing).
10048
10049         * object.c: Only create runtime generic context for classes for
10050         which sharing is enabled.
10051
10052 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
10053
10054         * verify.c (do_ldelem): refactor it to work with ldelem.any.
10055
10056         * verify.c (mono_method_verify): property verification of ldelem.any.
10057
10058 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
10059
10060         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
10061         added ldelem.X opcodes.
10062
10063         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
10064
10065         * verify.c: proper verification of ldelem.X 
10066
10067 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
10068
10069         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
10070
10071 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
10072
10073         * verify.c (mono_method_verify): null literal requires special handling,
10074         the value pushed on stack need to be flagged as so.
10075
10076         * verify.c (do_ldelema): Verify ldelema properly.
10077
10078 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
10079
10080         * verify.c: Verify ldlen properly.
10081
10082 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
10083
10084         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
10085         to the target object's type. Fixes #346160.
10086
10087 2007-12-05  Dick Porter  <dick@ximian.com>
10088
10089         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
10090         Solaris needs the same workaround as BSD-derived systems.  Fixes
10091         bug 323524, patch by Burkhard Linke
10092         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
10093
10094 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
10095
10096         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
10097         handle to use when error dialog is shown; otherwise, update mask
10098         to show no error dialog when an error occurs.
10099
10100 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
10101
10102         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
10103
10104         * class.c (mono_class_get_field_default_value): New helper function to initialize
10105         field->def_type and field->data.
10106
10107 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
10108
10109         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
10110         the general one.
10111
10112         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
10113
10114         * marshal.c: Avoid depending on delegate->method_info being set.
10115
10116         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
10117         
10118         * object.c (mono_delegate_ctor): Set delegate->method.
10119
10120         * object-internals.h (struct _MonoDelegate): Add 'method' field.
10121
10122         * appdomain.c: Bump corlib version.
10123
10124 2007-11-27  Raja R Harinath  <harinath@gmail.com>
10125
10126         * metadata.c (mono_generic_inst_equal_full): Short-circuit
10127         equality check if we're comparing canonicalized MonoGenericInsts.
10128
10129 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
10130
10131         * class.c (generic_array_methods): Call mono_class_setup_methods () before
10132         accessing class->methods.
10133
10134 2007-11-22  Dick Porter  <dick@ximian.com>
10135
10136         * threads.c: Ensure that the synch_cs is set before trying to use
10137         it.
10138
10139 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
10140
10141         * profiler.c: r89126 broke the statistial profiler, unbreak.
10142
10143 2007-11-22  Martin Baulig  <martin@ximian.com>
10144
10145         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
10146
10147         * mono-debug.c
10148         (mono_debug_debugger_version): Bump to 3.
10149         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
10150         -> mono_debugger_class_initialized().
10151
10152         * mono-debug-debugger.c
10153         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
10154
10155         * class.c
10156         (mono_debugger_start_class_init_func): Removed.
10157         (mono_debugger_class_loaded_methods_func): Added.
10158         (mono_class_setup_methods): Call it here.
10159
10160 2007-11-22  Martin Baulig  <martin@ximian.com>
10161
10162         * mono-debug.c
10163         (mono_debug_add_delegate_trampoline): New public method.
10164         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
10165
10166         * mono-debug.h
10167         (MonoSymbolTable): Added `global_data_table'.
10168         (MonoDebuggerTypeKind): Removed.
10169
10170 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
10171
10172         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
10173         these methods.
10174
10175         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10176         
10177 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
10178
10179         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
10180
10181 2007-11-20  Martin Baulig  <martin@ximian.com>
10182
10183         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
10184
10185         * mono-debug-debugger.c
10186         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
10187         (mono_debugger_remove_breakpoint): Likewise.
10188         (mono_debugger_check_breakpoints): Likewise.
10189         (mono_debugger_register_class_init_callback): New public method.
10190         (mono_debugger_remove_class_init_callback): Likewise.
10191         (mono_debugger_add_type): Likewise.
10192
10193         * mono-debug-debugger.h
10194         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
10195
10196 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
10197
10198         * class.c: more interface implementations needed for the
10199         array enumerator (fixes bug #341112).
10200
10201 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
10202
10203         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
10204         fix ParamName of ArgumentNullExceptions.
10205
10206 2007-11-17  Miguel de Icaza  <miguel@novell.com>
10207
10208         * reflection.c (mono_reflection_encode_sighelper): Generate the
10209         modopts and modreqs.   I have a useless test that crashes monodis,
10210         but that shows the code working.
10211
10212 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
10213
10214         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
10215         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
10216
10217 2007-11-15  Dick Porter  <dick@ximian.com>
10218
10219         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
10220         When joining a thread, it's the thread that's calling Join that
10221         gets WaitSleepJoin state not the target.  Fixes the standalone
10222         test case in bug 334740, and hopefully the whole bug too.
10223
10224 2007-11-15  Dick Porter  <dick@ximian.com>
10225
10226         * process.c: Read file version info from the files pointed at by
10227         process modules, not the current process.  Fixes bug 315969.
10228
10229         Use windows typedef names in some places to fix warnings on the
10230         windows build.
10231
10232 2007-11-15  Mark Probst  <mark.probst@gmail.com>
10233
10234         * image.c, metadata-internals.h: Added a generic_class_cache hash
10235         to MonoImage for looking up generic classes when sharing generics.
10236
10237 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
10238
10239         * sgen-gc.c: warning cleanups.
10240
10241 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
10242
10243         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
10244         inherited properties.
10245
10246 2007-11-14  Mark Probst  <mark.probst@gmail.com>
10247
10248         * object.c, class-internals.h: Added more information to the
10249         runtime generic context.
10250
10251 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
10252
10253         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
10254         instead of just the target method. Generalize the abstract method handling to
10255         handle any non-static method.
10256
10257         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
10258         mono_marshal_get_delegate_invoke () signature change.
10259
10260 2007-11-13  Mark Probst  <mark.probst@gmail.com>
10261
10262         * class.c, class-internals.h: Made
10263         mono_type_get_basic_type_from_generic () public.  Fixed member
10264         access check for shared generics.
10265
10266         * loader.c: Don't insert field into field cache if it's part of a
10267         non-inflated generic class.
10268
10269         * domain.c, domain-internals.h: The generic sharing context is now
10270         part of the jit info data structure.  Added two accessor
10271         functions.
10272
10273 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
10274
10275         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
10276         the array Get/Set/Address methods, since the JIT inlines them.
10277
10278         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
10279
10280         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
10281         (mono_image_init): Initialize runtime_invoke_direct_cache.      
10282
10283         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
10284         mono_marshal_get_delegate_invoke signature change.
10285
10286         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
10287         an additional argument. Add support for invoking abstract methods.
10288
10289         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
10290
10291         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
10292
10293 2007-11-09  Mark Probst  <mark.probst@gmail.com>
10294
10295         * class.c: Do field layout for open generic classes as well.
10296
10297 2007-11-09  Mark Probst  <mark.probst@gmail.com>
10298
10299         * gc.c, gc-internal.h: Don't finalize threadpool threads with
10300         other objects, because the threadpool is still around.  Put them
10301         in a list instead and after finalizing all other objects in the
10302         root domain shut down the thread pool and then finalize the
10303         threads.  Fixes bug #337383.
10304
10305         * threads.c, thread-types.h: New mono_thread_create_internal()
10306         function for marking a thread with the threadpool flag before it
10307         started.  Set synch_cs to NULL after freeing it.
10308
10309         * threadpool.c: Mark threadpool threads before they start.
10310
10311 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
10312
10313         * reflection.h, reflection.c: don't export random functions
10314         and lazy load dbnull and missing objects.
10315
10316 2007-11-07  Jonathan Chambers <joncham@gmail.com>
10317
10318         * class.c: Initialize COM types if COM interfaces
10319         are present (not just COM classes).
10320         
10321         Code is contributed under MIT/X11 license.
10322
10323 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
10324         * reflection.c:
10325         create_dynamic_mono_image: hook module profiler events (dynamic case).
10326         mono_image_basic_init: hook assembly profiler events (dynamic case).
10327
10328 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
10329         * profiler.c:
10330         simple_appdomain_unload: completely terminate the profiler
10331         instead of only processing the statistical samples.
10332         simple_shutdown: make sure this is really called exactly once,
10333         even in multithreaded applications, and always listen to
10334         appdomain events.
10335         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
10336         here, the "[un]load" functions will do it.
10337         Fixes bugs #333791 and #325261.
10338
10339 2007-11-07  Geoff Norton  <gnorton@novell.com>
10340
10341         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
10342         rather than depend on __APPLE__.
10343
10344 2007-11-07  Mark Probst  <mark.probst@gmail.com>
10345
10346         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
10347
10348 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
10349
10350         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
10351         UTF16 MonoString. Fix the crash from bug #335488
10352
10353 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
10354
10355         * marshal.c: Correct (for non-Win32 OS) length != size in 
10356         mono_string_from_bstr. Fix #339530.
10357
10358 2007-11-06  Geoff Norton  <gnorton@novell.com>
10359
10360         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
10361         to succeed
10362
10363 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
10364
10365         * process.c: Added run-time GetProcessId API detection for Windows.
10366
10367 2007-11-04  Miguel de Icaza  <miguel@novell.com>
10368
10369         * reflection.c  (mono_param_get_objects): If a parameter has the
10370         attribute [System.Runtime.InteropServices.Optional] we should
10371         set the DefaultValue of the ParameterInfo to be
10372         System.Reflection.Missing instead of DBNull.
10373
10374         See bug #339013.
10375
10376         (mono_get_reflection_missing_object): New method,
10377         returns the System.Reflection.Missing.Value singleton instance.
10378
10379 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
10380
10381         * culture-info-table.h : regenerated.
10382
10383 2007-11-02  Jonathan Chambers <joncham@gmail.com>
10384
10385         * icall.c: Use GetEnvironmentStrings on windows
10386         so we are using the same environment block as 
10387         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
10388         #333740.
10389         
10390         Code is contributed under MIT/X11 license.
10391
10392 2007-10-31  Martin Baulig  <martin@ximian.com>
10393
10394         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
10395
10396         * mono-debug-debugger.h
10397         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
10398
10399 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
10400
10401         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
10402         classes.
10403
10404 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
10405
10406         * culture-info-table.h : regenerated.
10407
10408 2007-10-30  Robert Jordan  <robertj@gmx.net>
10409
10410         * icall-def.h, icall.c:
10411         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
10412
10413         Code is contributed under MIT/X11 license.
10414
10415 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
10416
10417         * class.c (mono_class_setup_vtable): Find the inflated methods in the
10418         inflated class instead of inflating them again.
10419         
10420         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
10421         dynamic case.
10422
10423         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
10424         Call setup_supertypes () after klass->parent is set.
10425         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
10426
10427         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
10428         for inflated instances of not yet created dynamic generic classes.
10429         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
10430         times from inflated_method.
10431         (methodbuilder_to_mono_method): Ditto.
10432
10433 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
10434
10435         * gc.c: code cleanup and removed old untested option of not creating the
10436         finalizer thread.
10437
10438 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
10439
10440         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
10441         creating a jump trampoline for dynamic methods.
10442
10443 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
10444
10445         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
10446         generic TypeBuilders when called from another method of the same type (bug #335131).
10447
10448
10449 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
10450
10451         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
10452         doesn't seem to work perfectly.
10453         
10454         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
10455         called multiple times.
10456         (methodbuilder_to_mono_method): Ditto.
10457         (resolve_object): Inflate FieldBuilder's.
10458
10459 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
10460
10461         * string-icalls.c, string-icalls.h, appdomain.c: patch from
10462         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
10463         RemoveEmptyEntries in the string.Split implementation (bug #322375).
10464
10465 2007-10-26  Dick Porter  <dick@ximian.com>
10466
10467         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
10468         Thread initialisation changes
10469
10470 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
10471
10472         * verify.c: fix compatibility check between arrays and System.Array
10473
10474 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
10475
10476         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
10477         too. Fixes #336999.
10478
10479 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
10480
10481         * object.c (mono_value_box): Use typed allocation here.
10482
10483 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
10484
10485         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
10486         trampoline instead of compiling the method right away.
10487
10488         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
10489
10490 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
10491
10492         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
10493         related fields for dynamic classes. Fixes #334493.
10494
10495 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
10496
10497         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
10498         
10499         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
10500
10501         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
10502         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
10503
10504         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
10505
10506         * reflection.c (create_generic_typespec): Initialize klass->generic_container
10507         if needed.
10508         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
10509
10510 2007-10-18  Jonathan Chambers <joncham@gmail.com>
10511
10512         * marshal.c: Use correct key when removing item
10513         from ccw_hash.
10514         
10515         Code is contributed under MIT/X11 license.
10516
10517 2007-10-17  William Holmes  <billholmes54@gmail.com>
10518
10519         *marshal.c: Adding a case to marshal booleans to U1
10520
10521         Code is contributed under MIT/X11 license.
10522
10523 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
10524
10525         * class.c (mono_class_from_name): Search the modules compromising dynamic
10526         assemblies. Fixes #331601.
10527
10528 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
10529
10530         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
10531         exception if the type name contains an assembly component. Fixes #334203.
10532
10533         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
10534         modules inside dynamic assemblies. Fixes #334200.
10535         
10536         * reflection.c: Set image->public_key and image->public_key_length;
10537
10538         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
10539         fields.
10540
10541         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
10542         
10543 2007-10-16  Mark Probst  <mark.probst@gmail.com>
10544
10545         * metadata.c: Implemented correct comparing of generic classes.
10546         An inflated generic class can be equal to a non-inflated one if it
10547         is inflated with generic type variables as type arguments.  Fixes
10548         bug #333798.
10549
10550 2007-10-15  Dick Porter  <dick@ximian.com>
10551
10552         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
10553         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
10554         81646.
10555
10556         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
10557         instead of a monitor lock.  This means that monitor_try_enter and
10558         co can set the thread state safely.
10559         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
10560         thread_interrupt_requested, so interrupt actually works.
10561
10562         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
10563         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
10564         state accessor function
10565
10566 2007-10-15  Martin Baulig  <martin@ximian.com>
10567
10568         * mono-debug.h
10569         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
10570         the debugger with the current runtime.
10571
10572 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
10573
10574         * object.c, object-internals.h: added the ability to set a single
10575         trampoline for all the slots in a vtable.
10576
10577 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
10578
10579         * marshal.c: deal with a possible race condition during multicast
10580         delegate invocation.
10581
10582 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
10583
10584         * class.c: ensure value type methods don't have the synchronized
10585         flag set.
10586
10587 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
10588
10589         * string-icalls.c, string-icalls.h: reverted unapproved patch that
10590         breaks the build.
10591
10592 2007-10-11  Joel Reed  <joelwreed@comcast.com>
10593
10594         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
10595         to take an options parameter so that empty entries can be removed during
10596         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
10597
10598 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
10599
10600         * marshal.c: make sure we don't store the signature from a dynamic
10601         method into the runtime invoke cache (bug #327189).
10602
10603 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
10604
10605         * marshal.c: make sure the wrapper methods are properly initialized.
10606
10607 2007-10-11  Mark Probst  <mark.probst@gmail.com>
10608
10609         * metadata.c, metadata-internals.h: Generalized
10610         mono_type_stack_size() to mono_type_stack_size_internal() which
10611         takes an additional argument specifying whether it allows open
10612         types.
10613
10614 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
10615
10616         * verify.c (do_invoke_method): handle typedbyref params
10617         correctly and check for unverifiable return values.
10618
10619         * verify.c (do_newobj): fix a warning.
10620
10621 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
10622
10623         * verify.c: don't tread typedbyref as allways unverifable,
10624         so uses, like (ld/st)loc.0 are valid. verify for the cases
10625         that it matters, like boxing related operations.
10626
10627 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
10628
10629         * verify.c: add verification of the newobj opcode. verification
10630         of delegate instantation still missing due ldftn and virldftn not
10631         pushing the function type on stack
10632
10633 2007-10-08  Mark Probst  <mark.probst@gmail.com>
10634
10635         * class-internals.h: Runtime generic context data structure
10636         definition.
10637
10638         * object.c: Initialization of runtime generic context at runtime
10639         vtable creation time.
10640
10641 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
10642         * class.c (mono_class_create_from_typedef,
10643         mono_class_from_generic_parameter, mono_ptr_class_get,
10644         mono_fnptr_class_get, mono_bounded_array_class_get)
10645         * domain.c (mono_domain_create, mono_domain_free)
10646         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
10647         * image.c (do_mono_image_load, mono_image_close):
10648         Hooked up load-unload profiler events.
10649
10650 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
10651
10652         * domain.c: track statistics about the actual amount of native code
10653         allocated.
10654
10655 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
10656
10657         * class.c: the valuetype enumerators don't have the additional
10658         supertypes interfaces.
10659
10660 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
10661
10662         * class.c: need more interfaces setup for the IEnumerator<T>
10663         object created for arrays (tests/ienumerator-interfaces.2.cs).
10664
10665 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
10666
10667         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
10668
10669 2007-10-05  Alp Toker  <alp@atoker.com>
10670
10671         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
10672         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
10673         #315863.
10674
10675 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
10676
10677         * verify.c (verify_type_compatibility_full): verification of
10678         compatibility improved, validates correctly non-strict checks between
10679         native int and I4 types different than (unsigned)int32.
10680
10681         * verify.c (do_store_indirect): added, do all verification of
10682         ldind.X opcodes. 
10683
10684         * verify.c (get_load_indirect_mono_type): renamed to
10685         get_indirect_op_mono_type, as it now returns the MonoType for 
10686         ldind.X and stind.X opcodes.
10687
10688 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
10689
10690         * reflection.c: Fix the encoding of generic type definition for
10691         TypeBuilders.
10692
10693         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
10694         mono_image_typedef_or_ref but allows to specify if typespec lookups should
10695         be made. Typespec check is done prior to typeref cache lookup.
10696
10697         * reflection.c (mono_image_typedef_or_ref): now just delegate to
10698         mono_image_typedef_or_ref_full.
10699
10700         * reflection.c (encode_generic_class): encode the generic class
10701         directly instead of calling encode_type.
10702
10703         * reflection.c (encode_type): encode the generic type definition
10704         MonoClass as a generic instantiation.
10705
10706         * reflection.c (create_typespec): cache typespec tokens in
10707         the assembly->typespec cache. Don't create typespec for a generic
10708         instance MonoClass. Create typespec for the generic type defintion.
10709
10710         * reflection.c (create_generic_typespec): encode the generic
10711         class directly instead of calling encode_type.
10712
10713         * reflection.c (mono_image_create_token): encode the generic
10714         type definition not using a typespec for MonoType instances.
10715
10716
10717 2007-10-04  Raja R Harinath  <rharinath@novell.com>
10718
10719         Fix #328812
10720         * class.c (mono_image_init_name_cache): Don't return nested
10721         'protected internal' classes.
10722         (mono_class_from_name_case): Likewise.
10723
10724 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
10725
10726         * icall-def.h, icall.c : get_bundled_machine_config() is now the
10727           common function used by both DefaultConfig in System.dll and
10728           InternalConfigurationHost in System.Configuration.dll.
10729
10730 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
10731
10732         * class.c: automatically add to vectors only a few essential explicit
10733         generic interfaces. The rest of the interfaces that arrays should
10734         provide are currently implicitly added (but still not lazily, see the
10735         design in the discussion of bug#325495 for the details of what is
10736         needed for that). Additionally, implicit interfaces are assigned the
10737         same vtable slot as the explicit interfaces (as they are compatible):
10738         this enables huge memory savings since we don't need to instantiate
10739         as many memthods and as large vtables anymore. Also, Since
10740         GetEnumerator<T> returns an instance of a type that is required to
10741         support a similarly large set of interfaces as arrays, we add
10742         implicit interfaces and interface offset sharing support to those
10743         types, too. This change adds all the required interfaces so that
10744         the anonarray.cs test case in the bug report works (we don't add
10745         all the interfaces to arrays of arrays 3-level deep and more because
10746         of the memory requirements explained in the bug and since they are much
10747         less common: the lazy-loading support will enabled them to work, too).
10748
10749 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
10750
10751         * verify.c (merge_stacks): major clean up, all type compatibility
10752         checks are done by verify_type_compatibility. This fix my earlier lack
10753         of understanding of the CLR type system and merge_stacks no longer looks
10754         scary.
10755
10756         * verify.c: fixed some bad spelling.
10757
10758 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
10759
10760         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
10761         a given stack slock.
10762         
10763         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
10764         verify_type_compatibility_full. This removed a near indentical function and fixed
10765         handling of Int32 and IntPtr across all opcodes.
10766
10767 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
10768
10769         * class.c: only vectors have the additional generic interfaces.
10770
10771 2007-10-01  Jonathan Chambers <joncham@gmail.com>
10772
10773         * mono-config.c: Use g_strcasecmp instead of
10774         strcasecmp like everywhere else to fix
10775         compilation with MSVC.
10776         
10777         Code is contributed under MIT/X11 license.
10778
10779 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
10780
10781         * object.c, object-internals.h: refactored the IMT code to enable
10782         building a single slot at a time and lazily creating the IMT trampolines
10783         and thunks.
10784
10785 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
10786
10787         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
10788
10789         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
10790         Fixes #328501.
10791         
10792 2007-09-29  Raja R Harinath  <harinath@gmail.com>
10793
10794         * loader.c (method_from_methodspec): Rearrange to avoid
10795         un-necessary exposition.  Don't assert out if the method's
10796         declaring type is a generic type definition.
10797
10798 2007-09-28  Martin Baulig  <martin@ximian.com>
10799
10800         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
10801
10802 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
10803
10804         * class-internals.h: optimize field layout of MonoClass to
10805         requires less cachelines at runtime and save a few bytes on 64 bit
10806         systems.
10807
10808 2007-09-28  Jb Evain  <jbevain@novell.com>
10809
10810         * reflection.c: when encoding type names in custom attributes,
10811         if the type is a closed generic type, its generic arguments
10812         have to be serialized as AssemblyQualifiedName, so that when
10813         they are deserialized, it's possible to re-create them properly.
10814         Fixes #329450.
10815
10816
10817 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
10818
10819         * object.c, class-internals.h: added delegate-creation counter.
10820
10821 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
10822
10823         * class.c: cleanup of the code that synthetizes interfaces for
10824         arrays in 2.0: saves quit a bit of corlib mempool memory.
10825         Code to fix bug #325495 ifdeffed out for now until the issues
10826         with memory usage and O(n^2) behaviour are fixed.
10827
10828 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
10829
10830         * marshal.c: when possible, do not duplicate the name of the methods
10831         in the method builder and in the generated MonoMethod.
10832
10833 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
10834         * verify.c: added support for type checking ldind_* opcodes.
10835
10836 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
10837
10838         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
10839         which is used to distinguish the fully open instantiation of a TypeBuilder
10840         with the rest. This temporary hack is required to restore the property that
10841         the fully open instantiation is the same type of the generic type definition.
10842
10843         * class-internals.h (mono_generic_class_is_generic_type_definition):
10844         new function as part of the internal API.
10845
10846         * class.c (inflate_generic_type): return NULL when the generic inst is
10847         fully open. The fully open generic type is now the same as the generic type
10848         definition for non TypeBuilder types.
10849
10850         * class.c (mono_generic_class_get_class): removed assert since it is
10851         no longer valid, gklass->cached_class can point to the generic type definition.
10852
10853         * class.c (mono_generic_class_is_generic_type_definition): new.
10854
10855         * metadata.c (mono_generic_class_hash): added is_tb_open field
10856         to the hash calculation.
10857
10858         * metadata.c (free_generic_class): if the generic class is associated
10859         with the generic type definition, its field will come from the mempool and
10860         must not be freed.
10861
10862         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
10863         new, this function identifies the corner case of a TypeBuilder fully open
10864         instantiation.
10865
10866         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
10867         for lookup. Set gclass->cached_class to be the container class in case of
10868         the fully open instantiation of non TypeBuilder types.
10869
10870         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
10871         to compare generic classes.
10872
10873         * reflection.c (method_encode_methodspec): remove assert that
10874         no longer is valid.
10875
10876         * reflection.c (mono_reflection_generic_class_initialize): add
10877         an aditional assert to ensure the proper type is used.
10878
10879 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
10880
10881         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
10882         to enjoy it.
10883
10884 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
10885
10886         * verify.c (push_arg): Fixed support for ldarga
10887         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
10888         MonoType used as first arg in case of instance calls.
10889
10890 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
10891
10892         * verify.c: Support for verifying VAR and MVAR types, 
10893
10894 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
10895
10896         * icall.c (ves_icall_get_property_info): Set the reflected type of the
10897         accessors correctly.
10898
10899 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
10900
10901         * threads.c: support OSX and other systems in
10902         mono_thread_get_stack_bounds (bug #328026).
10903
10904 2007-09-25  Martin Baulig  <martin@ximian.com>
10905
10906         * mono-debug.h
10907         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
10908
10909 2007-09-24  Martin Baulig  <martin@ximian.com>
10910
10911         * mono-debug.h
10912         (MonoDebugClassEntry): Moved the definition of this struct into
10913         mono-debug.c to make it private.
10914
10915         * mono-debug.c
10916         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
10917         type table per symbol file, we don't need to store the symfile id
10918         any longer.
10919
10920 2007-09-24  Martin Baulig  <martin@ximian.com>
10921
10922         Create one type table per symbol file, since a `MonoClass *' gets
10923         invalid when its image is unloaded.
10924
10925         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
10926         (MonoDebugHandle): Added `type_table'.
10927
10928 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
10929
10930         * mempool.c, mempool.h: added mono_mempool_new_size () API
10931         to be able to specify a smaller initial size for the pool.
10932         Adjusted the code to slowly increase pool size before using
10933         the previous default size.
10934         * image.c: use a small initial size for image mempools.
10935
10936 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
10937
10938         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
10939         Fixes ##320990.
10940
10941         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
10942         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
10943
10944 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
10945
10946         * metadata.c (mono_type_create_from_typespec): Remove an invalid
10947         free. Fixes #327438.
10948
10949 2007-09-21  Raja R Harinath  <harinath@gmail.com>
10950
10951         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
10952         generic instantiations, etc.
10953         <MONO_TYPE_ARRAY>: Likewise.
10954
10955 2007-09-21  Martin Baulig  <martin@ximian.com>
10956
10957         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
10958         these structs were never defined.
10959         (MonoDebugHandle): Removed the `_priv' field, it was never used.
10960
10961 2007-09-21  Martin Baulig  <martin@ximian.com>
10962
10963         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
10964
10965 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
10966
10967         * image.c: removed the guid hash tables: we can get the same info
10968         without the additional memory usage hit (partially fixes also bug #327052).
10969
10970 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
10971
10972         * profiler.h, profiler-private.h, profiler.c: add a new profiler
10973         event to handle unloading methods. After the event is called, the
10974         corresponding MonoMethod* must be considered invalid.
10975         * loader.c (mono_free_method): call the new mono_profiler_method_free
10976         event.
10977
10978 2007-09-20  Mark Probst  <mark.probst@gmail.com>
10979
10980         * domain-internals.h: New flag in MonoJitInfo which marks shared
10981         generic methods.  New hash table (shared_generics_hash) in
10982         MonoDomain to keep track of shared generic methods.  Prototypes
10983         for functions to register and lookup shared generic methods.
10984
10985         * domain.c: Support for registering and looking up shared generic
10986         methods via a hash table (shared_generics_hash) in MonoDomain.
10987
10988         * class-internals.h: New exception to signal failure of shared
10989         compilation of a generic method.  New counters for generics
10990         sharing in MonoStats.
10991
10992 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
10993
10994         * image.c, metadata-internals.h: don't keep a file descriptor open
10995         for loaded assemblies (bug#325988).
10996
10997 2007-09-19  Raja R Harinath  <rharinath@novell.com>
10998
10999         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
11000         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
11001         use the corresponding datatypes.
11002         (type_in_image): Update to changes.
11003         (CleanForImageUserData): Simplify.
11004         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
11005         Avoid quadratic behaviour in handling the "stolen" list by
11006         separating the filter predicate out, and by prepending the stolen
11007         items rather than appending them.
11008         (steal_ginst_in_image): Likewise.
11009         (mono_metadata_clean_for_image): Update to changes.
11010
11011 2007-09-19  Martin Baulig  <martin@ximian.com>
11012
11013         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
11014
11015 2007-09-19  Martin Baulig  <martin@ximian.com>
11016
11017         * mono-debug.c (mono_debug_cleanup): Don't call
11018         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
11019
11020 2007-09-19  Raja R Harinath  <harinath@gmail.com>
11021
11022         Fix crash on 'make run-test' in mcs/errors
11023         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
11024         Avoid more potential allocations in mono_class_from_mono_type.
11025         (ginst_in_image): Update to changes.
11026         (gclass_in_image): Rearrange slightly.
11027
11028 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
11029
11030         * class.c (mono_class_init): Move the code that sets up class->methods to 
11031         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
11032
11033         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
11034         canonical instance of an inflated generic signature.
11035         (mono_type_create_from_typespec): Remove an invalid free.
11036
11037         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
11038
11039 2007-09-18  Marek Habersack  <mhabersack@novell.com>
11040
11041         * domain-internals.h: added a declaration of the
11042         mono_assembly_load_full_nosearch internal function.
11043
11044         * assembly.c (mono_assembly_load_with_partial_name): use
11045         mono_try_assembly_resolve return value properly.
11046         (mono_assembly_load_full_nosearch): copied the function body from
11047         mono_assembly_load_full, without the code to invoke assembly
11048         search hooks.
11049         (mono_assembly_load_full): calls the above new function and if the
11050         assembly is not resolved, invokes the search hooks.
11051
11052         * appdomain.c (mono_runtime_init): restore the global postload
11053         assembly search handlers.
11054
11055 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
11056
11057         * class.c (mono_class_init): Make sure class->methods and class->properties
11058         are never NULL in the generics case.
11059
11060         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
11061
11062 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
11063
11064         * metadata.c (free_generic_class): Disable some code to fix the build.
11065
11066         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
11067
11068         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
11069         from the image mempool.
11070
11071         * metadata.c (free_generic_class): Free more data from the inflated class.
11072
11073         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
11074
11075         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
11076         mempool.
11077         (mono_type_create_from_typespec): Ditto.
11078
11079         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
11080         MonoImage to the caller.
11081         (mono_init_internal): Save the opened image in a global variable.
11082         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
11083
11084         * reflection.c (resolve_object): Fix a leak.
11085
11086         * metadata.c: Fix the freeing of data in the generics caches.
11087         
11088         * metadata.c (free_generic_inst): Comment this out to fix the build.
11089         (free_generic_class): Ditto.
11090
11091         * metadata.c: Free cached generic methods, instantinations and classes when
11092         they are removed from the caches.
11093         (mono_metadata_free_type): Free the type itself.
11094
11095         * class.c: Free the result of mono_class_inflate_generic_type () in a few
11096         places.
11097
11098 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
11099
11100         * boehm-gc.c: restrict managed allocs to __thread supporting
11101         architectures.
11102
11103 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
11104
11105         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
11106         (mono_generic_class_get_class): Fix a leak.
11107
11108         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
11109         mono_metadata_free_type ().
11110         (mono_metadata_inflate_generic_inst): Fix a leak.
11111
11112 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
11113
11114         * mono-debug.c (free_header_data): Fix a leak missed earlier.
11115
11116         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
11117         mempool.
11118
11119         * mono-debug.c (mono_debug_close_image): Fix call to 
11120         g_hash_table_remove ().
11121
11122 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
11123
11124         * icall-def.h: redirect all the string ctor to the managed
11125         CreateString () methods.
11126         * string-icalls.c, string-icalls.h: removed dead code for string
11127         ctors and icalls.
11128
11129 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
11130
11131         * mono-debug.c: Fix memory leaks.
11132
11133 2007-09-14  Jonathan Chambers <joncham@gmail.com>
11134
11135         * threads-types.h: Implement mono_hazard_pointer_set and 
11136         mono_hazard_pointer_clear macros using do/while(0) to fix
11137         compilation with MSVC.
11138         
11139         Code is contributed under MIT/X11 license.
11140
11141 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
11142
11143         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
11144         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
11145
11146 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
11147
11148         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
11149         icalls.
11150
11151 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
11152
11153         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
11154         managed-code allocated as well.
11155
11156 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
11157
11158         * class.c (mono_class_is_assignable_from): Add support for generic variance.
11159
11160 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
11161
11162         * boehm-gc.c: fixed the build after the AOT changes.
11163
11164 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
11165
11166         * wrapper-types.h: Add an ALLOC wrapper type.
11167
11168         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
11169         reference managed allocator methods.
11170
11171 2007-09-12  Marek Safar  <marek.safar@gmail.com>
11172
11173         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
11174         of Type array and not MonoType, a fix suggested by Hari.
11175         
11176 2007-09-12  Jonathan Chambers <joncham@gmail.com>
11177
11178         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
11179         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
11180         
11181         Code is contributed under MIT/X11 license.
11182
11183 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
11184
11185         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
11186
11187 2007-09-12  Marek Habersack  <mhabersack@novell.com>
11188
11189         * image.c (do_mono_image_open): if assembly file fails to open and
11190         MONO_IOMAP is in effect, try to find the path in a
11191         case-insensitive way.
11192
11193         * appdomain.c (mono_runtime_init): do not install postload hooks -
11194         tests show that MS.NET doesn't use anything of that sort to
11195         trigger the AppDomain.AssemblyResolve event.
11196         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
11197         made non-static.
11198         (mono_runtime_init): init portability helpers here.
11199
11200         * assembly.c (mono_assembly_load_with_partial_name): if other   
11201         attempts fail, trigger the AppDomain.AssemblyResolve event handler
11202         to resolve the assembly.
11203
11204         * domain-internals.h: added mono_try_assembly_resolve and marked
11205         it as internal.
11206
11207 2007-09-11  Jb Evain  <jbevain@novell.com>
11208
11209         * object-internals.h (MonoReflectionDynamicMethod): add
11210         a `MonoReflectionType *owner` field. The owner is used
11211         * reflection.c:
11212         (mono_reflection_create_dynamic_method): use the owner of the dynamic
11213         method as the class declaring the dynamic method.
11214         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
11215         dynamic method to the declaring type of the methodbuilder.
11216
11217 2007-09-11  Mark Probst  <mark.probst@gmail.com>
11218
11219         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
11220         rules for calling methods via reflection.
11221
11222 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
11223
11224         * reflection.c (resolve_object): Add support for MonoGenericClass. 
11225         Inflate MonoType's.
11226
11227 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
11228
11229         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
11230         provide a managed method that does fast allocations without needing
11231         a managed->unmanaged transition. Boehm GC implementation currently
11232         enabled for ptrfree objects on sane architectures.
11233
11234 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
11235
11236         * marshal.c, marshal.h: exported a couple of useful functions and
11237         added mono_mb_get_label () to easily handle backward branches.
11238
11239 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
11240
11241         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
11242
11243 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
11244
11245         * loader.c (find_method): Fixed the regression introduced while
11246         fixing bug #81466.
11247
11248 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
11249
11250         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
11251         well.
11252         
11253         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
11254         icall.c reflection.c: Pass a MonoGenericContext argument to 
11255         mono_lookup_dynamic_token ().
11256
11257         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
11258         #82744.
11259         
11260 2007-09-09  Robert Jordan  <robertj@gmx.net>
11261
11262         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
11263         for generic methods.
11264
11265         * object.c (mono_object_get_virtual_method): Handle generic methods.
11266         Fixes bug #78882.
11267
11268         Code is contributed under MIT/X11 license.
11269
11270 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
11271
11272         * image.c: fix locking in mono_image_load_file_for_image ().
11273
11274 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
11275
11276         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
11277         used only as a cache: added an icall to fill it.
11278
11279 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
11280
11281         * reflection.h: exposed mono_reflection_free_type_info
11282         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
11283         since mono_reflection_bind_generic_parameters makes a copy of it.
11284         * reflection.c (free_type_info): subinfos should be freed.
11285         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
11286         made non static.
11287         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
11288         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
11289         this fixes #82695 and #81726.
11290    
11291
11292 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
11293
11294         * process.h, process.c:  added support for user profile/info in
11295           ProcessStartInfo. For now only Windows works.
11296
11297 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
11298
11299         * metadata.c: consider the generic arguments when comparing
11300         signatures (bug #82614).
11301
11302 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
11303
11304         * cil-coff.h, image.c: updated assembly loader to cope with the
11305         PE32+ 64 bit file format.
11306
11307 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
11308
11309         * assembly.c, class.c, domain.c, loader.c: remove useless
11310         inclusion of cil-coff.h.
11311
11312 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
11313
11314         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
11315         if interface is marked with CoClassAttribute. 
11316    
11317         Code is contributed under MIT/X11 license.
11318
11319 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
11320
11321         * sgen-gc.c: ensure no object from the to space is copied again or finalized
11322         if it's seen twice in major collections.
11323
11324 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
11325
11326         * sgen-gc.c: big objects are not copied to the gray area, but they
11327         need to be considered for scanning, too, if they are brought alive
11328         by an object ready for finalizations or a survived one.
11329
11330 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
11331
11332         * sgen-gc.c: properly account the number of disappearing links when
11333         they are nullified.
11334
11335 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
11336
11337         * sgen-gc.c: share the code to scan the registered roots between the
11338         different types of collections.
11339
11340 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
11341
11342         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
11343
11344 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
11345
11346         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
11347         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
11348
11349 2007-08-28  Mark Probst  <mark.probst@gmail.com>
11350
11351         * security-manager.c (mono_security_manager_get_methods):
11352         LinkDemandSecurityException now has 2 arguments instead of 3.
11353
11354 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
11355
11356         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
11357         platforms which need it.
11358
11359 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
11360
11361         * sgen-gc.c: unregister thread data structures with a pthread_key_t
11362         dtor.
11363
11364 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
11365
11366         * threads.c: free the thread static data on thread exit.
11367
11368 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
11369
11370         * class.c: walk the hierarchy to find the generic definition for
11371         a class (fixes runtime part of bug #82498).
11372
11373 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
11374
11375         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
11376         ...
11377
11378         * image.c (mono_image_close): Here. Hopefully fixes #82510.
11379
11380 2007-08-24  Mark Probst  <mark.probst@gmail.com>
11381
11382         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
11383
11384 2007-08-24  Robert Jordan  <robertj@gmx.net>
11385
11386         * appdomain.c: don't perform the ':'->';' substitution on Win32.
11387
11388 2007-08-24  Jb Evain  <jbevain@novell.com>
11389
11390         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
11391         for byref types.
11392
11393 2007-08-24  Mark Probst  <mark.probst@gmail.com>
11394
11395         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
11396         #82286.
11397
11398 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
11399
11400         * assembly.c: Fix a warning.
11401         
11402 2007-08-23  Marek Habersack  <mhabersack@novell.com>
11403
11404         * appdomain.c: parse the <runtime> section looking for the probing
11405         element with the 'privatePath' attribute, which sets additional
11406         directories in which the runtime should look for assemblies.
11407
11408 2007-08-23  Robert Jordan  <robertj@gmx.net>
11409
11410         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
11411         Fixes #82499.
11412
11413 2007-08-23  Martin Baulig  <martin@ximian.com>
11414
11415         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
11416         _mono_debug_init_corlib() and remove it from the header file.
11417
11418 2007-08-23  Martin Baulig  <martin@ximian.com>
11419
11420         * mono-debug-debugger.c
11421         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
11422         don't notify the debugger about it.
11423
11424         * mono-debug-debugger.h
11425         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
11426
11427 2007-08-23  Robert Jordan  <robertj@gmx.net>
11428
11429         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
11430         Code is contributed under MIT/X11 license.
11431
11432 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
11433
11434         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
11435
11436 2007-08-22  Martin Baulig  <martin@ximian.com>
11437
11438         * mono-debug.c: Store debugging info on a per-domain basis and
11439         free it on domain unload.  Add support for unloading symbol files.
11440
11441         * mono-debug.h
11442         (MonoDebugList): New typedef.
11443         (MonoSymbolTable):
11444         - add `data_tables and `type_table'.
11445         - replace 'symbol_files' and `num_symbol_files' with a
11446           `MonoDebugList *'.
11447         (mono_debug_data_table): Removed.
11448         (mono_debug_list_add): New public function.
11449         (mono_debug_list_remove): New public function.
11450         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
11451         (mono_debug_init_2_memory): Renamed into
11452         mono_debug_open_image_from_memory().
11453         (mono_debug_close_image): New public function.
11454         (mono_debug_domain_create): Likewise.
11455         (mono_debug_domain_unload): Likewise.
11456         (MONO_DEBUGGER_VERSION): Bump to 60.
11457
11458         * mono-debug-debugger.h
11459         (MonoDebuggerEvent):
11460         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
11461         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
11462         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
11463         - rename `THREAD_CREATED' and `THREAD_EXITED' into
11464           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
11465         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
11466           meaning.
11467         (mono_debugger_add_symbol_file): Removed.
11468         (mono_debugger_add_type): Removed.
11469         (mono_debugger_lookup_type): Removed.
11470         (mono_debugger_lookup_assembly): Removed.
11471
11472         * domain.c
11473         (mono_domain_create): Call mono_debug_domain_create().
11474         (mono_init_internal): Call mono_debug_init_corlib().
11475
11476         * assembly.c
11477         (mono_assembly_close): Call mono_debug_close_image().
11478
11479 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
11480
11481         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
11482         mmap call.
11483
11484 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
11485
11486         * sgen-gc.c: ensure section->pin_queue_end is initialized
11487         correctly when non pinning objects in the section have been found.
11488
11489 2007-08-22  Marek Habersack  <mhabersack@novell.com>
11490
11491         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
11492         containing a list of directories separated by ':'. MSDN docs say
11493         the directories should be separated with ';'. Part of a bugfix for
11494         bug #81446
11495
11496 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
11497
11498         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
11499         it should MonoType and not MonoClass.
11500
11501 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
11502
11503         * culture-info-table.h : regenerated.
11504
11505 2007-08-20  William Holmes  <billholmes54@gmail.com>
11506
11507         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
11508          to call ReplaceFile Kernel32 on windows or in io-layer.
11509         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
11510         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
11511          as an internal call.
11512
11513         Code is contributed under MIT/X11 license.
11514
11515 2007-08-20  Jb Evain  <jbevain@novell.com>
11516
11517         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
11518         and MONO_EXCEPTION_FIELD_ACCESS.
11519
11520         * debug-helpers.[c|h]: new mono_field_full_name function.
11521
11522 2007-08-20  Mark Probst  <mark.probst@gmail.com>
11523
11524         * class.c: Removed class_security_level() and moved it to
11525         security-core-clr.c.
11526
11527         * security-core-clr.c, security-core-clr.h: class_security_level()
11528         is now public and renamed to mono_security_core_clr_class_level().
11529         It also looks for security attributes in the classes a class is
11530         nested in.
11531
11532 2007-08-20  Mark Probst  <mark.probst@gmail.com>
11533
11534         * security-core-clr.c, security-core-clr.h: CoreCLR security
11535         utility functions.
11536
11537         * Makefile.am: Added security-core-clr.[ch].
11538
11539         * security-manager.c, security-manager.h: Functions and enum for
11540         setting and getting the security mode.
11541
11542         * class.c: CoreCLR security checks.
11543
11544 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
11545
11546         * icall-def.h, process.c, process.h: implemented icall to get
11547         user/system processor times.
11548
11549 2007-08-17  Mark Probst  <mark.probst@gmail.com>
11550
11551         * domain.c, threads.c, class-internals.h, domain-internals.h: New
11552         reader-lock-free jit_info_table.
11553
11554 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
11555
11556         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
11557
11558         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
11559
11560         * object-internals.h (MonoException): Add missing _data member.
11561
11562 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
11563
11564         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
11565         checking that only methods with matching qname or fqname are picked
11566         from implemented interfaces.
11567
11568 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
11569
11570         * verify.c (do_newarr):added, do type verification of
11571         newarr ops, push the right value on the eval stack.
11572         * verify.c (mono_method_verify): use do_newarr
11573
11574
11575 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
11576
11577         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
11578         factored the common code into get_boxable_mono_type, which
11579         is now using mono_type_get_full, this fixed byref related tests.
11580
11581 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
11582
11583         * class.c: added mono_type_get_full, this function has the same
11584         behavior of mono_class_get_full but the returned MonoType has
11585         all metadata of the associated token in case of a typespec token.
11586         * class.c: added mono_type_retrieve_from_typespec, used by 
11587         mono_type_get_full to retrieve the token type.
11588         * class.c (mono_class_create_from_typespec): changed to use
11589         mono_type_retrieve_from_typespec.
11590         * class.c (mono_ldtoken): changed to use mono_type_get_full
11591         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
11592         * class-internals.h: exported mono_type_get_full for internal use.
11593
11594 2007-08-16  Jb Evain  <jbevain@novell.com>
11595
11596         * domain.c (supported_runtimes): add entry for
11597         the 'moonlight' runtime version.
11598
11599 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
11600
11601         * verify.c (mono_method_verify): small typo sliped in.  
11602
11603 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
11604
11605         * verify.c (do_unbox_value): added, do type verification of
11606         unboxing ops
11607         * verify.c (mono_method_verify): use do_unbox_value
11608
11609
11610 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
11611
11612         * verify.c (dump_stack_value): fixed typo, was printing string
11613         instead of object on stack.
11614         * verify.c (do_box_value): moved the byref check up as it leads
11615         to invalid code and should be done earlier.
11616         * verify.c: improved error messages for and ldobj
11617
11618 2007-08-15  William Holmes  <billholmes54@gmail.com>
11619
11620         * marshal.c (emit_marshal_custom): Omit the call to 
11621           marshal_native_to_managed when calling native to managed 
11622           and the argument is specified as an out argument.
11623
11624         Code is contributed under MIT/X11 license.
11625
11626 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
11627
11628         * verify.c: fixed the type checks for generics, function pointers and vectors.
11629         Added type verification for ldobj and ldtoken. The verifier
11630         would segfault if header or signature of a method contained references
11631         to non-existant types.
11632
11633 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
11634
11635         * marshal.c (cominterop_get_ccw): Patch from
11636         Bill Holmes to no walk up interface hierarchy. 
11637         All parent methods should be present in the interface for COM.
11638    
11639         Code is contributed under MIT/X11 license.
11640
11641 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
11642
11643         * marshal.c (emit_marshal_com_interface): Patch from
11644         Bill Holmes to handle COM Interfaces as return values
11645         for native->managed calls.
11646    
11647         Code is contributed under MIT/X11 license.
11648
11649 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
11650
11651         * marshal.c (cominterop_get_idispatch_for_object): Implement
11652         for runtime callable wrappers.
11653    
11654         Code is contributed under MIT/X11 license.
11655
11656 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
11657
11658         * pedump.c (main): changed from mono_init to mono_init_from_assembly
11659         so 2.0 types are accessible
11660
11661
11662 2007-08-13  Miguel de Icaza  <miguel@novell.com>
11663
11664         * domain.c (mono_init_internal): Call mono_assembly_load_friends
11665         once we load mscorlib.   Due to the order in which we initialize,
11666         the mono_assembly_load_full routine that loads mscorlib did not
11667         load friends.   We now load it once we load the
11668         mono_defaults.internals_visible_class class. 
11669
11670         * assembly.c: Expose the mono_load_friend_assemblies method.
11671
11672 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
11673
11674         * verify.c: improved the handling of boxing, better
11675         type checking for unary ops and conversion. Fix bug
11676         regarding managed pointer compatibility checking
11677
11678 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
11679
11680         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
11681
11682         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
11683
11684 2007-08-09  Raja R Harinath  <rharinath@novell.com>
11685
11686         * reflection.c (dup_type): Remove.
11687         * class.c (dup_type): Remove.
11688         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
11689         instead of the dodgy 'dup_type'.
11690         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
11691         handle the case where 'dup_type' needed the second argument.
11692
11693 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
11694
11695         * domain.c: Fix a warning.
11696
11697 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
11698
11699         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
11700         checking that methods with the same fqname are not overridden
11701         with a method from an ancestor.
11702
11703 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
11704
11705         * threads.c (free_thread_static_data_helper): Avoid a crash if
11706         thread->static_data is not yet set.
11707
11708 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
11709
11710         * marshal.c: Use correct image when emitting
11711         native wrapper for COM calls.
11712    
11713         Code is contributed under MIT/X11 license.
11714
11715 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
11716
11717         * icall-def.h, security.c, security.h :
11718           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
11719
11720 2007-08-07  Martin Baulig  <martin@ximian.com>
11721
11722         * mono-debug-debugger.h
11723         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
11724
11725         * domain.c (mono_domain_free): Call
11726         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
11727
11728 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
11729
11730         * verify.c (check_underflow, check_overflow): error message now returns IL offset
11731         * verify.c (in_same_block): code should test if either offset is inside the clauses
11732         * verify.c (mono_method_verify): push the exception into the eval stack of exception
11733         and filter blocks
11734
11735 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
11736
11737         * image.c (mono_image_close): Fix a leak.
11738
11739         * object.c (mono_runtime_invoke_array): Avoid using alloca.
11740
11741         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
11742
11743 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
11744
11745         * domain.c, threads.c, threads-types.h: fix memory retention issue
11746         with thread static variables not being cleared on domain unload.
11747         Reuse thread static slots after domain unload.
11748
11749 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
11750
11751         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
11752         nullable type.
11753
11754         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
11755         now done in mono_runtime_invoke_array.
11756
11757         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
11758         receiver is a nullable type.
11759
11760         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
11761         generic parameter.
11762
11763 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
11764
11765         * marshal.c: Implement COM Objects as return type for 
11766         managed->unmanaged calls. Added Release calls for COM Object
11767         out/return values in managed->unmanaged calls.
11768
11769         Code is contributed under MIT/X11 license.
11770
11771 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
11772
11773         * threads.h, threads-type.h: move the hazard pointer declarations
11774         to the private header.
11775
11776 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
11777
11778         * file-io.c, appdomain.c: memory leak fixes.
11779
11780 2007-08-02  Dick Porter  <dick@ximian.com>
11781
11782         * socket-io.c
11783         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
11784         SO_REUSEADDR setting into io-layer/sockets.c.
11785
11786 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
11787
11788         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
11789         from Object when called on a generic parameter. Fixes #82211.
11790
11791 2007-08-01  Dick Porter  <dick@ximian.com>
11792
11793         * file-io.c (convert_share): Test FileShare values bit-by-bit.
11794         Fixes bug 79250 yet again.
11795
11796 2007-07-30  Martin Baulig  <martin@ximian.com>
11797
11798         Merged the `debugger-dublin' branch.
11799
11800         * mono-debug.h
11801         (MonoDebugDataTable): New typedef.
11802         (MonoDebugMethodAddressList): New typedef.
11803         (MonoDebugWrapperData): Removed.
11804         (MonoDebugSymbolTable): Removed `current_data_table',
11805         `current_data_table_size', `current_data_table_offset'.
11806         (MonoDebugDataItemType): Moved into mono-debug.c.
11807         (MonoDebugMethodJitInfo): Remove `address'.
11808         (mono_debug_data_table): New global variable.
11809         (mono_debug_lookup_method_addresses): New public function.
11810         (mono_debug_find_method): Take a `MonoMethod *', not a
11811         `MonoDebugMethodInfo *'.
11812
11813         * mono-debug.c: Drop support for the old symbol tables.
11814
11815 2007-06-28  Martin Baulig  <martin@ximian.com>
11816
11817         * mono-debug.c (mono_debug_debugger_version): New public variable.
11818
11819 2007-07-31  William Holmes  <billholmes54@gmail.com>
11820
11821         * metadata.c Changed mono_type_create_from_typespec to not insert
11822           the type into the hash map until after
11823           do_mono_metadata_parse_type has completed.
11824         Fixes Bug #82194
11825         Code is contributed under MIT/X11 license.
11826
11827 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
11828
11829         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
11830         generic parameter. Fixes #82211.
11831
11832 2007-07-27  Jb Evain  <jbevain@novell.com>
11833
11834         * pedump.c (dump_metadata, dump_metadata_header): dump
11835         versions contained in the metadata header.
11836
11837 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
11838
11839         * threads.c: register small_id_table with the GC.
11840
11841 2007-07-27  Mark Probst  <mark.probst@gmail.com>
11842
11843         * threads.c, threads.h, class-internals.h, object-internals.h:
11844         Hazard pointers, to be used by lock-free parallel algorithms.
11845
11846 2007-07-26  Dick Porter  <dick@ximian.com>
11847
11848         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
11849         routine on non-windows platforms, as I've not managed to think of
11850         a non-kludgy way of doing this.  Finishes off bug 78739.
11851
11852 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
11853
11854         * object.c: properly setup interface_bitmap in proxy vtables.
11855
11856 2007-07-25  Marek Habersack  <mhabersack@novell.com>
11857
11858         * appdomain.c (get_shadow_assembly_location): do not use TickCount
11859         to create unique shadow copy target directories, use the domain's
11860         serial number instead. Each domain gets a unique target directory
11861         that way.
11862
11863         * domain.c (mono_domain_create): added code to increment domain
11864         shadow copy serial number and cache the value in the current
11865         domain structure.
11866
11867         * domain-internals.h (struct _MonoDomain): added a new field -
11868         shadow_serial to hold the serial number used in generation of
11869         shadow-copy directories. This is to make sure that the directory
11870         name is unique for each and every domain created. We avoid a race
11871         condition with overriding assemblies already in use by other app
11872         domains.
11873
11874 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
11875
11876         * class.c (mono_bounded_array_class_get): fixed memory leak when 
11877         binding generic parameters.
11878
11879 2007-07-24  Raja R Harinath  <rharinath@novell.com>
11880
11881         * metadata.c (do_mono_metadata_parse_generic_class): Use
11882         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
11883         error.
11884
11885 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
11886
11887         * loader.c, class-internals.h, reflection.c: removed the per-method
11888         generics hashtable: we use the global one through the call of
11889         mono_class_inflate_generic_method ().
11890
11891 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
11892
11893         * class.c, metadata.c, class-internals.h: introduce yet another
11894         generics global cache for inflated methods (fixes 98% of the perf
11895         issue in bug #81806).
11896
11897 2007-07-23  Raja R Harinath  <rharinath@novell.com>
11898
11899         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
11900         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
11901         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
11902         return a MonoGenericInst containing (a copy) of those types.
11903         (mono_metadata_inflate_generic_inst): Update to changes.
11904         (mono_metadata_parse_generic_inst): Likewise.
11905         (mono_get_shared_generic_inst): Likewise.
11906         * reflection.c (mono_class_bind_generic_parameters): Likewise.
11907         (mono_reflection_bind_generic_method_parameters): Likewise.
11908         * metadata-internals.h: Likewise.
11909         * icall.c (free_generic_context): Kill.
11910         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
11911
11912         * reflection.c (reflection_methodbuilder_to_mono_method): Use
11913         mono_metadata_type_dup.
11914         * marshal.c (mono_mb_create_method): Likewise.
11915
11916         * metadata.c (mono_metadata_type_dup): Rename from
11917         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
11918         MonoImage.  Handle a few more cases, esp. when no mempool is given.
11919         * marshal.c, metadata-internals.h: Update to changes.
11920
11921 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
11922
11923         * class.c: fixed a small leak for array classes and removed warning.
11924
11925 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
11926
11927         * loader.c (mono_method_get_param_token): Make this work on generic methods.
11928         Return 0x8000000 for return parameters. Fixes #82161.
11929
11930 2007-07-21  Marek Habersack  <grendello@gmail.com>
11931
11932         * appdomain.c (get_shadow_assembly_location): append the current
11933         ticks value to the path. Avoids overwriting the same assemblies by
11934         several threads at the same time.
11935
11936 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
11937         and Raja R Harinath  <rharinath@novell.com>
11938
11939         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
11940         Simplify slightly.
11941         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
11942         property for testing if a method is a generic method definition.
11943
11944 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
11945
11946         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
11947
11948 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
11949
11950         * verify.c: used function from private branch, reverted to the one in class.h 
11951
11952 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
11953
11954         * verify.c: a typo slipped in and the code wont compile
11955
11956 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
11957
11958         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
11959         disabled box instruction as it is doing the wrong thing
11960         improved stack dump messages, now it is easier to debug type related issues
11961
11962
11963 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
11964
11965         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
11966
11967 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
11968
11969         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
11970         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
11971         grouped with class and valuetype. This change will simply 
11972         the code as it should be handled just like unmanaged pointers.
11973
11974 2007-07-19  Mark Probst  <mark.probst@gmail.com>
11975
11976         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
11977
11978 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
11979
11980         * verify.c: several stack merge issues fixed, reference comparisons now
11981         check the type size. strict type check now works correctly.
11982         added more uses of IS_MANAGED_POINTER macro.
11983         fixed issues pointed by running the test suite against .net.
11984         
11985
11986 2007-07-19  Mark Probst  <mark.probst@gmail.com>
11987
11988         * class.c, loader.c, class-internals.h: Removed the
11989         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
11990         defines.
11991
11992         * icall.c: Better error checking in some internal reflection
11993         methods.
11994
11995 2007-07-18  William Holmes  <billholmes54@gmail.com>
11996
11997         * filewatcher.c : removed unused variable 'filename' in 
11998           ves_icall_System_IO_FSW_SupportsFSW
11999
12000 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
12001
12002         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
12003         obsolete, removed.
12004
12005 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
12006
12007         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
12008         
12009         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
12010
12011 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
12012
12013         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12014         Implement generics support.
12015         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
12016
12017         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
12018         type_args and method_args arguments.
12019         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
12020         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
12021         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
12022
12023 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
12024
12025         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
12026           It adds a rootimage parameter to mono_reflection_get_type_internal,
12027           adds new function mono_reflection_get_type_with_rootimage and use
12028           the rootimage to resolve the types instead of the current image
12029
12030 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12031
12032         * culture-info-table.h: Forgot to update after r78304.
12033
12034 2007-07-13  Raja R Harinath  <rharinath@novell.com>
12035
12036         * class.c (mono_class_is_open_constructed_type)
12037         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
12038
12039 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
12040
12041         * class.c (mono_bounded_array_class_get):  method fails if used with
12042         an incomplete TypeBuilder enum (no basetype field), fixed it by 
12043         avoiding calculating the size for such array as it cannot be instantiated.
12044         Fix bug #82015
12045
12046 2007-07-12  Raja R Harinath  <rharinath@novell.com>
12047
12048         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
12049         field.
12050         * metadata.c, reflection.c: Update to changes.
12051
12052 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
12053
12054         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
12055         mono_class_is_valid_enum, they are used to valide a enum when loading.
12056         * reflection.c: used new functions to throw TypeLoadException when and
12057         invalid enum is build with TypeBuilder. Fixes #82018
12058   
12059 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12060
12061         * object.c: forgot commit of mono_class_setup_methods () to access
12062         iface->methods.
12063         * object-internals.h: added a few more handy fields to
12064         MonoIMTCheckItem.
12065
12066 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
12067
12068         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
12069         iface->methods.
12070
12071 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
12072
12073         * class-internals.h, object-internals.h, object.c: IMT-based
12074         interface invocation core from Massimiliano Mantione
12075         (massi@ximian.com) with a reworked arch-specific interface,
12076         bsearch implementation and a few bugfixes and memory savings by me.
12077
12078 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
12079
12080         * class.c (mono_class_create_from_typedef): mono would segfault if 
12081         an enum did not have a __value field. It now throws a TypeLoadException
12082         for such cases. Fix bug #82022
12083
12084 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
12085
12086         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
12087
12088 2007-07-09  Mark Probst  <mark.probst@gmail.com>
12089
12090         * class.c (mono_class_init): If a class is already inited but has
12091         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
12092
12093 2007-07-09  Mark Probst  <mark.probst@gmail.com>
12094
12095         * class.c: Properly handle the case of an unimplemented interface
12096         method.  Fixes: 81673.
12097
12098 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
12099
12100         * class-internals.h, object.c: cleanup patch from massi: use
12101         MonoVTable->interface_bitmap since the vtable interfaces offset array
12102         is going away.
12103
12104 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
12105
12106         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
12107         GetMDStreamVersion icall instead.
12108
12109 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
12110
12111         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
12112         not use mono_dl_build_path() with a full library name: makes
12113         fallbacks to libgaim and libfam work.
12114
12115 2007-07-06  William Holmes  <billholmes54@gmail.com>
12116
12117         * assembly.c: Added a continue statement in probe_for_partial_name when
12118          parse_assembly_directory_name fails.  Fixes : 82002
12119
12120 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
12121
12122         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
12123         and added a verification  for TYPEDBYREF.
12124         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
12125         make native int interchangeable with int32 and some small cleanup and formating.
12126         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
12127         handle byref of byref.
12128         * verify.c (push_local): handle byref of byref.
12129         * verify.c (do_binop): invalid mix of values is unverifiable
12130         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
12131         added visibility checks
12132         * verify.c (field related method): added visibility checks
12133         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
12134
12135 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
12136
12137         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
12138         string.
12139
12140 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
12141
12142         * profiler.c (mono_profiler_load): Fix an off-by-one error.
12143
12144         * marshal.c (emit_marshal_string): When returning a string from managed code,
12145         allways make a copy even for unicode strings. Fixes #81990.
12146
12147 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
12148
12149         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
12150         of byref generic inst types (bug #81997).
12151
12152 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
12153
12154         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
12155         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
12156
12157 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
12158
12159         * marshal.c (emit_marshal_string): Add support for unicode strings in
12160         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
12161
12162 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
12163
12164         * verify.c: field load/store are now verified, missing only access checks now
12165
12166 2007-06-28  Martin Baulig  <martin@ximian.com>
12167
12168         * mono-debug.c (mono_debug_debugger_version): New public variable.
12169
12170 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
12171
12172         * locales.c: When constructing DateTimeFormat or NumberFormat for
12173         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
12174         MonoCultureInfo contructed from the current locale is always
12175         read-only and has UseUserOverride set to true. All MonoCultureInfo
12176         instances returned for GetCultures have both IsReadOnly and
12177         UseUserOverride set to true. Fixes part of bug #81930.
12178
12179 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
12180
12181        * icall-def.h: Update System.__ComObject icalls
12182        * marshal.c: Avoid managed transition (and object creation)
12183        when looking up COM interface in RCW.
12184        * marshal.h: Ditto.
12185        
12186        Code is contributed under MIT/X11 license.
12187
12188 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
12189
12190         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
12191         to avoid crashes during assembly unloading.
12192
12193 2007-06-22  Raja R Harinath  <rharinath@novell.com>
12194
12195         Fix MethodInfo.IsGenericMethodDefinition
12196         * reflection.c (mono_reflection_bind_generic_method_parameters):
12197         Rearrange code to ensure we always uses a generic method definition.
12198         * class.c (mono_class_inflate_generic_method_full): Set
12199         'generic_container' field only for generic method definitions.
12200         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
12201         Use presense of 'generic_container' field as indication of being a
12202         generic method definition.
12203
12204 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
12205
12206         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12207
12208         * object-internals.h: Reflect changes in the layout of the managed Delegate
12209         class.
12210         
12211         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
12212         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
12213         runtime memory used by the dynamic method. Fixes #77146.
12214
12215 2007-06-21  Dick Porter  <dick@ximian.com>
12216
12217         * file-io.h: 
12218         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
12219         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
12220         81767.
12221
12222 2007-06-21  Raja R Harinath  <rharinath@novell.com>
12223
12224         * reflection.c (method_encode_methodspec): Add a tripwire.
12225         * class.c (inflate_generic_type): The fully open generic type is
12226         not the same as the generic type definition.
12227
12228 2007-06-21  Martin Baulig  <martin@ximian.com>
12229
12230         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
12231
12232         * mono-debug-debugger.h
12233         (MonoDebuggerBreakpointInfo): Removed.
12234         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
12235         (mono_debugger_remove_breakpoint): Likewise.
12236         (mono_debugger_breakpoint_callback): Likewise.
12237         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
12238
12239 2007-06-21  Raja R Harinath  <rharinath@novell.com>
12240
12241         * metadata.c (mono_metadata_lookup_generic_class): The fully open
12242         generic type is not the same as the generic type definition.
12243         * class.c (mono_generic_class_get_class): Likewise.
12244
12245 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
12246
12247         * icall.c: The second argument to 
12248         System.Reflection.MethodBase.GetMethodFromHandleInternalType
12249         is a MonoType not a MonoClass.
12250
12251 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
12252
12253         * verify.c: support for function pointers in the verifier
12254
12255 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
12256
12257         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
12258
12259 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
12260
12261         * assembly.c: removed Mono.Data.SqliteClient from the list of
12262         forward-compatible assemblies as it breaks the ABI (bug #81899).
12263
12264 2007-06-19  Raja R Harinath  <rharinath@novell.com>
12265
12266         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
12267         lookup/update with the loader lock.
12268         * reflection.c (mono_class_bind_generic_parameters): No need to
12269         protect mono_metadata_lookup_* with the loader lock.
12270         * class.c (inflate_generic_type): Likewise.
12271         
12272         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
12273         on a generic instantiated type.
12274
12275 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
12276
12277         *verify.c: produce meanfull error messages on verification error
12278         *verify.c: fixed some cases of verification errors reported as validation errors
12279         *pedump.c: fixed the error name array, now it shows validation errors properly
12280         *verify.h: fixed the contant that should be used for verification errors
12281
12282 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
12283
12284         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
12285         for bug #77596, 81858 and 80743 (generics data structures on domain
12286         unload).
12287
12288 2007-06-15  Raja R Harinath  <rharinath@novell.com>
12289
12290         Avoid allocating 'MonoGenericContext' on the heap.
12291         * class-internals (_MonoMethodInflated::context): Make field
12292         inline, not a pointer.
12293         * loader.c (method_from_methodspec): Allocate 'new_context' on the
12294         stack.  Use the context embedded within the inflated method as the
12295         hash key, rather than 'new_context'.
12296         * class.c (inflate_generic_context): Simplify.  Return a struct
12297         rather than allocating on the heap.
12298         (mono_class_inflate_generic_method_full): Update to changes.  Now,
12299         doesn't salt away a copy of the context -- simplifying the
12300         lifetime rules of a 'MonoGenericContext *'.
12301         (mono_method_get_context): Return pointer to embedded context.
12302         (setup_generic_array_ifaces): Allocate temporary context on stack.
12303         * reflection.c (inflate_mono_method): Likewise.
12304         (mono_reflection_bind_generic_method_parameters): Likewise.
12305         Use the context embedded within the inflated method as the hash key.
12306
12307         Avoid a source of allocation of 'MonoGenericContext'.
12308         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
12309         and 'cached_context' fields into embedded 'MonoGenericContext' field.
12310         * class.c: Update to changes.
12311         (mono_generic_class_get_context): Simplify drastically.  Now just
12312         returns a pointer to the field.
12313         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
12314         argument as a const pointer.
12315         (mono_metadata_generic_context_equal): Likewise.
12316         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
12317         Update to changes.
12318
12319 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
12320
12321         * verify.c improved the handling of brtrue/brfalse, factored out common code
12322
12323 2007-06-14  Raja R Harinath  <rharinath@novell.com>
12324
12325         Kill MonoGenericMethod.
12326         * class-internals.h (MonoGenericContext::method_inst): Rename from
12327         'gmethod' and convert to a MonoGenericInst.
12328         (MonoGenericMethod): Remove.
12329         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
12330         * loader.c (method_from_methodspec): Update to changes.  Use a
12331         MonoGenericContext as the key to the hashtable.
12332         * metadata.c (mono_metadata_generic_context_equal): Rename from 
12333         'mono_metadata_generic_method_equal' and take MonoGenericContext.
12334         (mono_metadata_generic_context_hash): Likewise from
12335         'mono_metadata_generic_method_hash'.  Change hash function.
12336         (mono_metadata_load_generic_params): Update to changes.
12337         (mono_get_shared_generic_method): Remove.
12338         * metadata-internals.h (mono_get_shared_generic_method): Remove.
12339         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
12340         (inflate_generic_context): Likewise.
12341         (mono_class_inflate_generic_method_full): Likewise.
12342         (setup_generic_array_ifaces): Likewise.
12343         (mono_class_create_from_typespec): Likewise.
12344         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
12345         (method_encode_methodspec): Update callsite.
12346         (reflection_methodbuilder_to_mono_method): Update to changes.
12347         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
12348         MonoGenericContext as the key to the hashtable.
12349         (inflate_mono_method): Update to changes.
12350
12351         * class-internals.h (MonoGenericMethod::container): Remove.
12352         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
12353
12354 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
12355
12356         * profiler-private.h, profiler.c, profiler.h: added API to profile
12357         exception events.
12358
12359 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
12360
12361         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
12362
12363 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
12364
12365         * verify.c: method invocation is now validated, now we verify parameter types on stack.
12366         Fixed overflow and underflow not aborting the verification process.
12367
12368 2007-06-13  Mark Probst  <mark.probst@gmail.com>
12369
12370         * class-internals.h (MonoStats): Added stats entries for dynamic
12371         code allocations.
12372
12373 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
12374
12375         * loader.c (mono_free_method): Free header->locals and header->clauses.
12376
12377         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
12378         dynamic case.
12379
12380         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
12381
12382         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
12383
12384 2007-06-12  Raja R Harinath  <rharinath@novell.com>
12385
12386         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
12387         the tables.
12388
12389 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
12390
12391         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
12392
12393 2007-06-11  Raja R Harinath  <harinath@gmail.com>
12394
12395         MonoGenericMethod on a diet
12396         * class-internals.h (_MonoMethodInflated::reflection_info): Move
12397         here ...
12398         (_MonoGenericMethod::reflection_info): ... from here.
12399         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
12400         Update to changes.
12401         * reflection.c (inflate_mono_method): Likewise.
12402         (mono_reflection_bind_generic_method_parameters): Likewise.
12403
12404 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
12405
12406         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
12407         *verify.c: factored long ldarg forms to share code with short forms
12408
12409 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
12410
12411         *verify.c: fixed code formating factored some duplicate code
12412         into a new function
12413
12414         *verify.h: fixed binary incompatibility introduced earlier
12415
12416         *pedump.c: fixed formating
12417
12418 2007-06-11  Raja R Harinath  <harinath@gmail.com>
12419
12420         Fix assertion when disassembling Mono.C5.dll
12421         * loader.c (method_from_methodspec): Avoid inflating a method
12422         twice with the same context.  If the methodref is inflated, use
12423         the declaring method instead.
12424
12425         * class.c (mono_class_from_generic_parameter): Fix case similar to
12426         bug #81830 handled below, but for method containers.
12427
12428 2007-06-10  Raja R Harinath  <harinath@gmail.com>
12429
12430         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
12431         get_shared_generic_class.  Directly inflate the instance.
12432         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
12433         (inflate_generic_class): Delete.
12434         (get_shared_generic_class): Delete.  Move setting of
12435         'cached_class' and 'cached_context' ...
12436         * metadata.c (mono_metadata_lookup_generic_class): ... here.
12437
12438         * metadata.c (mono_metadata_lookup_generic_class): Change
12439         signature to take the components of a MonoGenericClass rather than
12440         an allocated MonoGenericClass.  Change semantics to be intern-like.
12441         * reflection.c (mono_class_bind_generic_parameters): Update to
12442         changes.  Make locking region tighter.
12443         * class.c (inflate_generic_class): Update to changes.
12444         (get_shared_generic_class): Likewise.
12445         * metadata-internals.h: Likewise.
12446
12447         * reflection.c (mono_class_bind_generic_parameters): Take and
12448         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
12449         (mono_reflection_bind_generic_parameters): Use
12450         'mono_class_bind_generic_parameters' rather than duplicate the code.
12451         * class.c (mono_bounded_array_class_get): Update to changes.
12452         * object-internals.h: Likewise.
12453
12454         * reflection.c (mono_class_bind_generic_parameters): Only support
12455         parameterizing generic type definitions.  Remove support for other
12456         open types.
12457
12458 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
12459
12460         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
12461
12462         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
12463         in the dynamic case.
12464
12465 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
12466
12467         * threads.c: When cleaning up thread, reset the Background bit.
12468         Fixes bug #81720.
12469
12470 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
12471
12472        * metadata.c: Move variable declarations to top of scope.
12473        * verify.c: Move variable declarations to top of scope.
12474
12475        Code is contributed under MIT/X11 license.
12476
12477 2007-06-08  Raja R Harinath  <rharinath@novell.com>
12478
12479         * reflection.c (mono_class_bind_generic_parameters): Replace
12480         open-coded loop with mono_metadata_inflate_generic_inst.
12481
12482         * class.c (get_shared_generic_class): Don't call
12483         mono_get_shared_generic_inst.  Use the container's own
12484         'class_inst'.
12485
12486         * metadata.c (mono_metadata_load_generic_params): Move
12487         initialization of 'context' field here from ...
12488         * class.c (mono_class_create_from_typedef): ... here, and ...
12489         * loader.c (mono_get_method_from_token): ... here.
12490
12491         * class.c (get_shared_generic_class): Rename from
12492         mono_get_shared_generic_class and make static.
12493         (mono_get_shared_generic_inst): Move to metadata.c.
12494         * loader.c (mono_get_shared_generic_method): Likewise.
12495         * class-internals.h, metadata-internals.h: Update to changes.
12496
12497         Fix #81830
12498         * class.c (mono_class_from_generic_parameter): Don't assume a
12499         generic container owner exists.  Generic containers from monodis
12500         don't have any.
12501
12502 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
12503
12504         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
12505         * verify.h: new typedefs to returns the non-verifiable status
12506         * verify.c: initial implementation of generics, stack merging and object compatibility check
12507
12508 2007-06-06  Mark Probst  <mark.probst@gmail.com>
12509
12510         * class.c, image.c, class-internals.h (MonoImage): class_cache is
12511         a MonoInternalHashTable again (fixed bug in internal hash table
12512         code).
12513
12514 2007-06-06  Mark Probst  <mark.probst@gmail.com>
12515
12516         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
12517         MonoInternalHashTable again (fixed bug in internal hash table
12518         code).
12519
12520 2007-06-06  Mark Probst  <mark.probst@gmail.com>
12521
12522         * class.c, image.c, class-internals.h, domain.c,
12523         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
12524         changes.  Have to figure out what makes them break the SWF
12525         regression.
12526
12527 2007-06-04  Mark Probst  <mark.probst@gmail.com>
12528
12529         * class.c, image.c, class-internals.h (MonoImage): class_cache is
12530         a MonoInternalHashTable now.
12531
12532 2007-06-04  Mark Probst  <mark.probst@gmail.com>
12533
12534         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
12535         MonoInternalHashTable now.
12536
12537 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
12538
12539         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
12540         invoke_impl code.
12541
12542         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
12543
12544         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
12545         dependent trampoline.
12546
12547         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12548
12549         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
12550
12551 2007-05-29  Robert Jordan  <robertj@gmx.net>
12552
12553         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
12554
12555 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
12556
12557         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
12558
12559 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
12560
12561        * marshal.c: Fix interface lookup loops for
12562        cominterop_get_com_slot_for_method and 
12563        cominterop_get_method_interface. Only need to lookup
12564        if type is a class, else use interface type method is on.
12565
12566        Code is contributed under MIT/X11 license.
12567
12568 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
12569
12570         * reflection.c: HasSecurity can be present even if no specially 
12571         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
12572         SecurityAttribute). Fix CAS regression tests on buildbot.
12573
12574 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
12575
12576        * appdomain.c: Add configure checks for header files.
12577        * image.c: Add configure checks for header files.
12578        * file-io.c: Add configure checks for header files.
12579        * debug-mono-symfile.c: Add configure checks for header files.
12580        * threadpool.c: Add configure checks for header files.
12581        * console-io.c: Add configure checks for header files.
12582        * profiler.c: Add configure checks for header files.
12583        * rawbuffer.c: Add configure checks for header files.
12584        * icall.c: Add configure checks for header files.
12585        * rand.c: Add configure checks for header files.
12586        * socket-io.c: Add configure checks for header files.
12587
12588        Code is contributed under MIT/X11 license.
12589
12590 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
12591
12592         * reflection.c (mono_custom_attrs_from_builders): Remove the 
12593         assertion as it breaks the build.
12594         
12595         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
12596
12597         * reflection.c (lookup_custom_attr): Make a copy here too.
12598
12599         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
12600         dynamic images.
12601
12602         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
12603         images.
12604
12605         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
12606         info.
12607
12608 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
12609
12610         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
12611         (load_cattr_value): Ditto.
12612
12613 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
12614
12615         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
12616
12617 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
12618
12619         * threads.c: In "start_wrapper", set apartment_state to MTA if
12620         apartment_state is Unknown and we're running on 2.0 profile or
12621         higher.
12622         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
12623         to main method, then set apartment_state to Unknown on 1.0 profile,
12624         and MTA on 2.0 profile.
12625
12626 2007-05-16  Jb Evain  <jb@nurv.fr>
12627
12628         * class-internals.h (MonoDefaults): Add an attribute_class and
12629           customattribute_data_class.
12630         * domain.c (mono_init_internal): Populate them.
12631         * reflection.c: Use them to remove duplicates. Make a vew
12632         MonoClass variables `static'.
12633
12634 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
12635
12636         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
12637         step in implementing IMT, so that all isinst checks now can go
12638         through the bitmap.
12639         This was needed because vtables for TransparentProxy need to look
12640         like the vtable of the "target" class, so they need to point to
12641         its interface bitmap directly.
12642
12643         * object.c: inside "mono_class_create_runtime_vtable" and
12644         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
12645
12646 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
12647
12648         * object-internals.h
12649           culture-info.h : added territory field in MonoCulture and
12650           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
12651         * locales.c : fill territory field above too.
12652         * culture-info-table.h : regenerated.
12653
12654 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
12655
12656         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
12657         Fixes #81599.
12658
12659 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
12660
12661         * object.c: Always initialize apartment, even if 
12662         there is no custom attributes on entry point.
12663         
12664         Code is contributed under MIT/X11 license.
12665
12666 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
12667
12668         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
12669         * metadata.c: If no encoding is set, check for unicode
12670         on class.
12671         
12672         Code is contributed under MIT/X11 license.
12673
12674 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
12675
12676         * threads.c: Handle if mono_thread_current returns NULL 
12677         
12678         Code is contributed under MIT/X11 license.
12679
12680 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
12681
12682         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
12683         in start_wrapper. Added mono_thread_init_apartment_state and
12684         mono_thread_cleanup_apartment_state.
12685         * object.c: Initialize thread apartment state on main thread
12686         by checking for STAThreadAttribute on entry point.
12687         * object-internals.h: Add apartment_state field to MonoThread.
12688         * threads-types.h: Add unmanaged definition of 
12689         System.Threading.ApartmentState, MonoThreadApartmentState.
12690         
12691         Code is contributed under MIT/X11 license.
12692         
12693 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
12694
12695         * class.c: Fix windows build.
12696         * class-internals.h: Fix windows build.
12697         
12698         Code is contributed under MIT/X11 license.
12699
12700 2007-05-08  Robert Jordan  <robertj@gmx.net>
12701
12702         * process.c (CreateProcess_internal):
12703         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
12704         .CreateNoWindow was specified. Fixes #81496.
12705
12706 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
12707
12708         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
12709         step in implementing IMT, replaced it with two compact arrays
12710         (interfaces_packed and interface_offsets_packed) and a bitmap that
12711         is used for isinst checks (interface_bitmap).
12712
12713         * class.c: (compare_interface_ids): compare function to pass to
12714         bsearch when looking for an interface with a given id.
12715         (mono_class_interface_offset): reimplemented using bsearch on
12716         interfaces_packed, getting the offset from interface_offsets_packed.
12717         (print_implemented_interfaces): utility debugging function.
12718         (setup_interface_offsets): reworked to initialize interfaces_packed,
12719         interface_offsets_packed and interface_bitmap.
12720
12721         * object.c: replaced all accesses to "MonoClass.interface_offsets"
12722         with uses of interfaces_packed and interface_offsets_packed.
12723
12724 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
12725
12726         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
12727         mono_class_interface_offset prototype to wrap all accesses to
12728         "MonoClass.interface_offsets".
12729
12730         * class.c: Implemented mono_class_interface_offset, and wrapped all
12731         accesses to "MonoClass.interface_offsets".
12732
12733         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
12734         "MonoClass.interface_offsets".
12735
12736 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
12737
12738         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
12739         GetMethodFromHandle overloads (bug #78637).
12740
12741 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
12742
12743         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
12744         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
12745
12746 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
12747
12748         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
12749         #81498.
12750
12751         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
12752         gracefully.
12753         (mono_custom_attrs_from_index): Ditto.
12754
12755         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
12756         Fixes #81501.
12757
12758 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
12759
12760         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
12761         is now allocated from a mempool.
12762
12763 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
12764
12765         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
12766         caller holds threads_lock, leading to deadlocks. Fixes #81476.
12767
12768 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
12769
12770         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
12771         mono_loader_clear_error () too late. Fixes #81463.
12772
12773 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
12774
12775         * culture-info-table.h : regenerated.
12776
12777 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
12778
12779         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
12780         is missing.
12781
12782 2007-04-25  Dick Porter  <dick@ximian.com>
12783
12784         * Makefile.am: Put the mingw enforced-optimisation back into the
12785         PLATFORM_WIN32 section.
12786
12787 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
12788
12789         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
12790         patch.
12791
12792         * image.c (mono_image_load_module): New API function to load a module reference.
12793
12794         * image.c (load_modules): Load modules lazily. Fixes #80812.
12795
12796         * class.c (mono_class_from_typeref): Use mono_image_load_module.
12797         
12798         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
12799
12800         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
12801         to mono_image_load_module_dynamic.
12802
12803 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
12804
12805         * marshal.c: Fix calling convention for CCW on non-windows
12806         platforms. STDCALL on windows, CDECL everywhere else to work 
12807         with XPCOM and MainWin COM.
12808         
12809         Code is contributed under MIT/X11 license.
12810
12811 2007-04-23  Martin Baulig  <martin@ximian.com>
12812
12813         Fix #80969.
12814
12815         * loader.c
12816         (method_from_memberref): Added `gboolean *used_context' argument.
12817         (mono_get_method_from_token): Likewise.
12818         (mono_get_method_full): Don't insert the method in the cache when
12819         `used_context' is true.
12820
12821 2007-04-23  Raja R Harinath  <rharinath@novell.com>
12822
12823         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
12824
12825         * reflection.c (mono_reflection_bind_generic_parameters): Don't
12826         create new MonoTypes for returned types.
12827         * class.c (mono_generic_class_get_class): Export mono-internal.
12828         * class-internals.h: Update to changes.
12829
12830 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
12831
12832         * threadpool.c, threadpool.h, icall-def.h: patch from
12833         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
12834
12835 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
12836
12837         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
12838         
12839         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
12840
12841         * threads.c (mono_thread_get_stack_bounds): New helper function.
12842
12843         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
12844         Correctly compute stack bounds when attaching. Fixes #81394.
12845
12846 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
12847
12848         * reflection.c: fix handling of doubles in custom attributes
12849         for the arm-fpa format (bug #81368).
12850
12851 2007-04-18  Raja R Harinath  <rharinath@novell.com>
12852
12853         * reflection.c (assembly_add_win32_resources): Mildly relax an
12854         bounds check to let the end pointer point just past the end of the
12855         allocated buffer.  (may fix #81384)
12856
12857 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
12858
12859         * culture-info-table.h : regenerated.
12860
12861 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
12862
12863         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
12864         the thread is aborted early.
12865
12866 2007-04-05  Dick Porter  <dick@ximian.com>
12867
12868         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
12869         FindFirstFile()/FindNextFile() to find entries.  This lets the
12870         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
12871         81038.
12872
12873         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
12874         the parameters of
12875         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
12876
12877 2007-04-04  Martin Baulig  <martin@ximian.com>
12878
12879         * debug-helpers.c
12880         (mono_method_desc_full_match): Add support for nested classes.
12881
12882 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
12883
12884         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
12885
12886 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
12887
12888         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
12889         waiting for too many threads.
12890
12891 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
12892
12893         * environment.c: Fix return value check on uname so we can get the 
12894         executing version on Solaris operating systems.
12895
12896 2007-03-28  Jb Evain  <jbevain@gmail.com>
12897
12898         * class.c (mono_type_get_name_recurse): Complete the
12899         fix for the creation of assembly qualified names for
12900         pointer types. Fixes #81208.
12901
12902 2007-03-27  Dick Porter  <dick@ximian.com>
12903
12904         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
12905         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
12906         changed.
12907
12908         * threads.c
12909         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
12910         the value of ReleaseMutex().
12911
12912 2007-03-27  Dick Porter  <dick@ximian.com>
12913
12914         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
12915         in little-endian order, not network endian, so must be converted
12916         to host endian here.  Fixes bug 80593.
12917
12918 2007-03-22  Jb Evain  <jbevain@gmail.com>
12919
12920         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
12921         qualified names for pointer types. Fixes #81208.
12922
12923 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
12924
12925         * marshal.c: Add support for PreserveSigAttribute. 
12926         
12927         Code is contributed under MIT/X11 license.
12928
12929 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
12930
12931         * process.c: Fix endianness issues. Fixes #81126.
12932
12933         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
12934         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
12935
12936         * image.c (mono_image_lookup_resource): Make this work on big-endian
12937         machines.Change API contract so the caller needs to free the return value.
12938         
12939         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
12940         API change.
12941         
12942 2007-03-14  Martin Baulig  <martin@ximian.com>
12943
12944         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
12945         mono_type_get_desc() as well.
12946
12947 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
12948
12949         * icall.c:  Fix environ access in VS.  
12950         
12951 2007-03-13  Alp Toker  <alp@atoker.com>
12952
12953         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
12954         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
12955         #63841.
12956
12957 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
12958
12959         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
12960         circular references among dynamic methods. Fixes #81091.
12961
12962         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
12963
12964 2007-03-09  Martin Baulig  <martin@ximian.com>
12965
12966         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
12967
12968 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
12969
12970         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
12971         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
12972         
12973         Code is contributed under MIT/X11 license.
12974         
12975 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
12976
12977         * loader.c: Reapply patch for bug #79424.
12978
12979 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
12980
12981         * metadata.c (mono_type_to_unmanaged): Only convert object to
12982         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
12983
12984 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
12985
12986         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
12987         (and incorrectly set) is_reference field from MonoGenericInst.
12988
12989 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
12990
12991         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
12992         a little earlier.
12993
12994         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
12995
12996         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
12997
12998 2007-03-05  Miguel de Icaza  <miguel@novell.com>
12999
13000         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
13001         FileOptions.1 value to mean "temporary", map that to
13002         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
13003
13004         Fixes 80688
13005
13006 2007-03-03  Marek Habersack  <mhabersack@novell.com>
13007
13008         * appdomain.c: implement MS .Net style shadow copying. Copies of
13009         the assemblies are made in a subdirectory of the dynamic base
13010         directory, the assembly names are preserved.
13011         Copy .mdb and .config files along with the assemblies being shadowed.
13012
13013 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
13014
13015         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
13016         (emit_marshal_handleref): Ditto.
13017
13018         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
13019         on Visual C++. Fixes #80671.
13020
13021 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
13022
13023         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
13024         for clone operations.
13025
13026 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
13027
13028         * marshal.c: Fix warnings.
13029
13030 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
13031
13032         * loader.c: allow case-insensitive matching of the dll name
13033         in dllmap handling when prefixed with "i:".
13034
13035 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
13036
13037         * threads.c: Fix #ifdef for dummy_apc function for VS.
13038
13039 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
13040
13041         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
13042
13043 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
13044         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
13045         giving precedence to the methods with a fully qualified name
13046         (InterfaceName.MethodName) when building the interface sections
13047         of the vtable.
13048
13049 2007-02-16  Dick Porter  <dick@ximian.com>
13050
13051         * threadpool.c (append_job): Fix fast-path array handling, so it's
13052         less likely the array will grow exponentially when the load is
13053         heavy.
13054
13055 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
13056
13057         * metadata-internals.h, loader.c: fix dllmap lookup order
13058         for non-function maps, too, and prepare for fallback code.
13059
13060 2007-02-12  Robert Jordan  <robertj@gmx.net>
13061
13062         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
13063         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
13064         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
13065         GlobalFree. Fixes a part of bug #77075.
13066
13067 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
13068
13069         * loader.c: implemented typedef parent in field memberref.
13070
13071 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
13072
13073         * marshal.c: Fix warnings and remember to call Release on
13074         IUnknown of RCW.
13075         
13076         Code is contributed under MIT/X11 license.
13077
13078 2007-02-10  Miguel de Icaza  <miguel@novell.com>
13079
13080         * class-internals.h: Add MonoHandleRef definition, and
13081         handleref_class to mono_defaults. 
13082
13083         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
13084         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
13085
13086         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
13087         (do nothing on this stage)
13088         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
13089         (emit_marshal_handleref): New method, used for argument handling
13090         of HandleRefs. 
13091
13092 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
13093
13094         * class.c (mono_class_setup_parent): Lazily init com types.
13095         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
13096         init com types.
13097         * object.c (mono_remote_class_vtable): Lazily init com types.
13098         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
13099         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
13100         * domain-internals.h: Expose mono_init_com_types.
13101         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
13102         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
13103         Add support for COM Callable Wrapper marshalling.
13104         * marshal.h: Add icall definitions.
13105         * gc.c: Handle freeing of CCWs in finalizer code.
13106         
13107         Code is contributed under MIT/X11 license.
13108
13109 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
13110
13111         * reflection.c: changed all the signature encoding code to use
13112         a variable-sized buffer.
13113
13114 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13115
13116         * marshal.c: locking fixes: never take the loader lock
13117         or other runtime locks when holding the marshal lock
13118         (fixes bug#80664).
13119
13120 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
13121
13122         * marshal.c: make the delegate function pointer mapping
13123         work for the moving GC.
13124
13125 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
13126
13127         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
13128         for bug #80618.
13129
13130 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13131
13132         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
13133         gmodule.
13134
13135 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
13136
13137         * threadpool.c: made the code moving-GC safe.
13138
13139 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
13140
13141         * assembly.c, boehm-gc.c, class-internals.h, class.c,
13142         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
13143         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
13144         warning cleanup.
13145         * reflection.c: warning cleanup, some threading and moving GC fixes.
13146
13147 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
13148
13149         * class.c, loader.c: create the needed Set/Get/Address array methods
13150         as well as the .ctors in mono_class_init (), fixes bug #80567.
13151
13152 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
13153
13154         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
13155         we doesn't decrease its alignment. Should fix the sparc build.
13156
13157 2007-01-24  Dick Porter  <dick@ximian.com>
13158
13159         * socket-io.c
13160         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
13161         Create the returned object if we need to ignore an unsupported
13162         socket option.  Fixes a segfault reported by Atsushi.
13163
13164 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
13165
13166         * class.c, object.c: restrict GC-tracked fields to
13167         UIntPtr fields used inside corlib, so we provide better
13168         type info to the GC and also allow broken packing as in
13169         bug #80580.
13170
13171 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
13172
13173         * sgen-gc.c: removed duplicated function.
13174
13175 2007-01-19  Miguel de Icaza  <miguel@novell.com>
13176
13177         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
13178         value that means that the value is not supported, but that we
13179         should not return a failure, but instead report this as a
13180         successful operation.
13181
13182 2007-01-19  Raja R Harinath  <rharinath@novell.com>
13183
13184         Fix tests/bug79956.2.il
13185         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
13186         (mono_generic_class_get_class): If the generic definition in an
13187         enum, copy over other fields related to it.
13188
13189 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
13190
13191         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
13192         genericinst enums (bug #79215).
13193
13194 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
13195         * class.c: Fix bug 80307.
13196
13197 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
13198
13199         * image.c: if the file table is not present, try to load
13200         all the modules, since we don't have info about them
13201         having or not metadata (bug #80517).
13202         * assembly.c: allow mono_assembly_load_references () to
13203         work for netmodules.
13204
13205 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
13206
13207         * image.c, metadata-internals.h, object.c: execute module
13208         cctors when running on the 2 runtime if present (bug #80487).
13209
13210 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
13211
13212         * icall.c: optimized InitializeArray() on bigendian.
13213
13214 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
13215
13216         * icall.c: fix for the broken ARM FPA double format.
13217
13218 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
13219
13220         * icall.c: handle endian issues for r4 and r8 types, too, in
13221         the InitializeArray() icall.
13222
13223 2007-01-15  Miguel de Icaza  <miguel@novell.com>
13224
13225         * loader.c (mono_loader_error_prepare_exception): Clear the error
13226         once we have extracted the information from it, do this before we
13227         call into the JIT's class loading mechanisms.
13228
13229         * object.c (mono_class_create_runtime_vtable): Do not clear the
13230         loader error before calling mono_class_get_exception_for_failure
13231         as the loader error is needed inside
13232         mono_class_get_exception_for_failure to throw the error (thinko).
13233
13234         Fixes #80521
13235         
13236 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
13237
13238         * reflection.c: align fields rva data so it's faster to load at
13239         runtime.
13240
13241 2007-01-12  Raja R Harinath  <rharinath@novell.com>
13242
13243         Prepare to simplify GenericMethod handling.
13244         * class-internals.h (mono_method_get_context): New accessor function.
13245         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
13246         rather than directly accessing '->context' field.
13247
13248         * class-internals.h (_MonoGenericParam.method): Move ...
13249         (_MonoGenericContainer): ... here.  Add into union with klass field.
13250         * class.c, icall.c, loader.c, metadata.c, reflection.c:
13251         Update to changes.
13252
13253 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
13254
13255         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
13256         the wrapper type enum and reduce relocations.
13257
13258 2007-01-12  Raja R Harinath  <rharinath@novell.com>
13259
13260         * reflection.c (inflate_mono_method): Reuse method instantiation
13261         from the generic method, if available.
13262
13263 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
13264
13265         * marshal.c (emit_marshal_variant): Fix conv_arg
13266         type in last commit, based on whether parameter is byref.
13267         
13268 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
13269
13270         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
13271         marshalling.
13272         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
13273         MONO_TYPE_OBJECT back for VARIANT support.
13274
13275 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
13276
13277         * marshal.c, marshal.h, icall-def.h: Implement 
13278         Marshal.ReAllocCoTaskMem.
13279
13280 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
13281
13282         * marshal.c: memory retention fixes: use the proper
13283         image cache for runtime_invoke method lookups.
13284
13285 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
13286
13287         * mempool.c: added code to help debug mempool allocations.
13288
13289 2007-01-11  Dick Porter  <dick@ximian.com>
13290
13291         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
13292         support (experimenting with faking it with IP_MTU_DISCOVER for
13293         systems that don't have IP_DONTFRAGMENT.)
13294         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
13295         icall.
13296
13297         * icall-def.h: new System.Net.Sockets.Disconnect icall.
13298
13299         * socket-io.h: Add new fields to MonoSocketAsyncResult
13300         corresponding to the new ones in Socket.cs.
13301
13302 2007-01-11  Raja R Harinath  <rharinath@novell.com>
13303
13304         Fix IronPython regression mentioned in #80249
13305         * metadata.c (do_mono_metadata_parse_generic_class): Clear
13306         'cached_context' field, since it may have been initialized as a
13307         side-effect of metadata parsing.
13308
13309         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
13310         (_MonoGenericClass.cached_class): Move here and rename from lone
13311         remaining field of ...
13312         (_MonoInflatedGenericClass): ... this.  Remove.
13313         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
13314         to changes.
13315
13316         Fix mcs/tests/test-128.cs regression.
13317         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
13318         2007-01-10 change below.
13319         [MONO_TYPE_OBJECT]: Recurse into array case.
13320
13321 2007-01-11  Raja R Harinath  <harinath@gmail.com>
13322
13323         * class-internals.h (mono_get_inflated_generic_class): Remove.
13324         * class.c (mono_get_inflated_generic_class): Remove.
13325         (mono_generic_class_get_class): Rename from
13326         mono_class_create_generic.
13327         (mono_class_from_mono_type) [GENERICINST]: Use it.
13328         * reflection.c, metadata.c: Update to changes.  Use
13329         'mono_class_from_mono_type'.
13330
13331 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
13332
13333         * reflection.c: use passed type when encoding an array element
13334         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
13335
13336 2007-01-09  Robert Jordan  <robertj@gmx.net>
13337
13338         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
13339         result arguments (someDelegate.EndInvoke (unrelatedAres)).
13340         Fixes bug #80392.
13341
13342 2007-01-09  Raja R Harinath  <rharinath@novell.com>
13343
13344         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
13345
13346         * object.c (set_value): Avoid aliasing between type->data.klass
13347         and type->data.generic_class.
13348
13349         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
13350
13351 2007-01-08  Raja R Harinath  <rharinath@novell.com>
13352
13353         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
13354         between type->data.klass and type->data.generic_class.
13355
13356 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
13357
13358         * marshal.c: In MS.NET, StringBuilder objects are not copied by
13359         value in out parameters.
13360
13361 2007-01-08  Raja R Harinath  <rharinath@novell.com>
13362
13363         Simplify invariant for MonoGenericClass::klass field.
13364         * class.c (mono_class_create_generic): Verify 'klass' is null.
13365         * metadata.c (do_mono_metadata_parse_generic_class): Don't
13366         initialize 'klass' field.
13367
13368 2007-01-05  Raja R Harinath  <rharinath@novell.com>
13369
13370         Ongoing work to avoid redundant data and simplify invariants.
13371         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
13372         'generic_class', and change type to a GenericInst.
13373         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
13374         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
13375
13376 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
13377
13378         * class.c : skip io-layer under PLATFORM_WIN32.
13379
13380 2007-01-03  Tor Lillqvist  <tml@novell.com>
13381
13382         Fix #80305: In a bundled executable, look in the bundled exe
13383         assembly to determine the runtime version. Add the possibility to
13384         bundle also the machine.config file.
13385         
13386         * assembly.c (mono_assembly_open_from_bundle): Make
13387         non-static. Allow being called even if we have no bundled
13388         assemblies, and return NULL right away in that case.
13389
13390         * domain-internals.h: Declare mono_assembly_open_from_bundle()
13391         here.
13392
13393         * domain.c (app_config_parse): Take an assembly exe file name as
13394         parameter instead of a config file name. Check for a bundled
13395         config file for that assembly by calling
13396         mono_config_string_for_assembly_file() (see below) before looking
13397         for one in the file system.
13398         (get_runtimes_from_exe): Corrsponding change to call of
13399         app_config_parse().
13400         (get_runtimes_from_exe): Check for bundled assembly exe file first
13401         by calling mono_assembly_open_from_bundle(). If no bundled
13402         assembly exe file is found, call mono_image_open() as before to
13403         look it up in the file system.
13404
13405         * mono-config.c: Add variable bundled_machinec_onfig.
13406         (mono_config_string_for_assembly_file): New function.
13407         (mono_config_for_assembly): Move code snippet that looks for a
13408         bundled assembly .config file into the above new function. Call
13409         it.
13410         (mono_register_machine_config, mono_get_machine_config): New
13411         functions to set and retrieve
13412
13413         * assembly.h: Declare mono_register_machine_config().
13414
13415         * mono-config.h: Declare mono_get_machine_config() and
13416         mono_config_string_for_assembly_file().
13417
13418         * icall.c: No declaration of environ necessary on Win32. It is
13419         declared (as a macro expanding to a function call) in stdlib.h.
13420         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
13421         New internal mono function. Returns the value of
13422         mono_get_machine_config() as a Mono string.
13423
13424         * icall-def.h: Add get_bundled_machine_config().
13425
13426 2007-01-04  Raja R Harinath  <rharinath@novell.com>
13427
13428         Remove redundant field
13429         * class-internals.h (_MonoGenericContext.container): Remove field.
13430         * loader.c (mono_method_get_signature_full): Don't parse a
13431         "container" for a signature parse when the signature is inflated
13432         immediately.
13433         (method_from_methodspec): Likewise, for a generic_inst.
13434         * class.c, metadata.c, reflection.c: Update to changes.
13435
13436 2006-01-04  Raja R Harinath  <rharinath@novell.com>
13437
13438         * class-internals.h (_MonoGenericClass): Rename 'context' field to
13439         'cached_context', and change semantics -- it starts off NULL, and
13440         is initialized on demand.
13441         * class.c (mono_generic_class_get_context): New accessor to
13442         replace 'context' field accesses.
13443         (mono_class_get_context): New helper.
13444         (*): Update to changes.
13445         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
13446
13447 2007-01-03  Miguel de Icaza  <miguel@novell.com>
13448
13449         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
13450         before the memcpy.   Fixes Marshal2 regression.
13451
13452 2007-01-02  Jb Evain  <jbevain@gmail.com>
13453
13454         * blob.h: add a MONO_TYPE_ENUM definition
13455         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
13456         fix the encoding of arrays of enums in custom attributes.
13457
13458         Fixes #79666.
13459
13460 2007-01-01  Miguel de Icaza  <miguel@novell.com>
13461
13462         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
13463         string is null terminated, but only cut the string short if it
13464         overflows the buffer.   
13465         
13466         (mono_string_to_byvalstr): Also fix this routine.   The code here
13467         was not properly terminating a string (it was only terminated
13468         because of the previous catch-all memset). 
13469
13470         I left the memset, because I do not know if applications expect
13471         the runtime to clear this region. 
13472
13473         Fixes #79944.
13474
13475         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
13476         Clear the error before returning to unmanaged code to prevent the
13477         runtime from being confused later on (fixes  80420).
13478         (ves_icall_type_from_name): Always call mono_loader_clear_error
13479         after parsing a type that could have failed.
13480         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
13481
13482         * loader.c (mono_loader_clear_error): Fix indentation.
13483
13484 2006-12-28  Martin Baulig  <martin@ximian.com>
13485
13486         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
13487
13488 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
13489
13490         * reflection.c: patch from Rolf Bjarne Kvinge to fix
13491         getting a token for an EnumBuilder.
13492
13493 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
13494
13495         * reflection.c: be more careful in case resource generation
13496         fails to create the data array.
13497
13498 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
13499
13500         * sgen-gc.c: write barrier for clone and fix unregister handles.
13501
13502 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
13503
13504         * reflection.c: some fixes needed in the generics code for the moving GC.
13505
13506 2006-12-22  Robert Jordan  <robertj@gmx.net>
13507
13508         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
13509         account. Fixes bug #80299.
13510
13511 2006-12-21  Raja R Harinath  <rharinath@novell.com>
13512
13513         Fix WaitHandle usage in delegates.
13514         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
13515         * object.c (mono_wait_handle_new): Use the property set method to
13516         initialize the handle.
13517         (mono_wait_handle_get_handle): New.
13518         * threadpool.c (mono_async_invoke): Use it.
13519         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
13520         Likewise.
13521         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
13522
13523 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
13524
13525         * marshal.c (emit_marshal): Call emit_marshal_variant and
13526         emit_marshal_com_interface when applicable.
13527         (emit_marshal_variant, emit_marshal_com_interface): Add
13528         methods for this case and remove if's from emit_marshal_object.
13529         
13530 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
13531
13532         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
13533
13534 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
13535
13536         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
13537         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
13538         and GlobalFree on Windows. Remove FIXME.
13539
13540 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
13541
13542         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
13543         implementation for managed objects.
13544
13545 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
13546
13547         * object.c: implemented code to be used for checking
13548         that no reference field overlaps with non-references.
13549
13550 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
13551
13552         * threadpool.c: fix queue code to be compatible with the
13553         moving GC.
13554
13555 2006-12-18  Miguel de Icaza  <miguel@novell.com>
13556
13557         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
13558         in structures by throwing ArgumentNullException.
13559
13560         (emit_marshal_safehandle): Also when they are null parameters.
13561
13562         (emit_marshal_safehandle): Add support for ref
13563         SafeHandles parameters
13564
13565 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
13566
13567         * profiler.c: updated to use the mono-dl API instead of
13568         gmodule.
13569
13570 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
13571
13572         * profiler.c: updated to use the mono-dl dynamic loading
13573         API instead of gmodule.
13574
13575 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
13576
13577         * profiler.c: use readlink, older versions of glib don't have
13578         g_file_read_link ().
13579
13580 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
13581
13582         * profiler.c: try to detect the path to mono if libc fails to provide
13583         a useful name (bug #80286).
13584
13585 2006-12-16  Raja R Harinath  <rharinath@novell.com>
13586
13587         Fix #80242
13588         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
13589         instance, use the generic type definition instead.
13590         (ves_icall_Type_GetNestedTypes): Likewise.
13591         * class.c (mono_class_create_generic): Always set the
13592         nested_classes of a generic instance to NULL, even if the generic
13593         type definition has nested types.
13594
13595 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
13596
13597         * marshal.c (mono_string_from_bstr): Revert previous Windows change
13598         and fix on Linux.
13599         
13600 2006-12-15  Miguel de Icaza  <miguel@novell.com>
13601
13602         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
13603         my arguments were in the wrong order.   I also fixed the Windows
13604         version which seems to have had the same issue.
13605
13606         (mono_free_bstr): On Unix, this is g_free.
13607         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
13608         conversions (for the tests in corlib to pass).
13609
13610 2006-12-14  Miguel de Icaza  <miguel@novell.com>
13611
13612         * marshal.c (emit_ptr_to_object_conv): For now, ignore
13613         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
13614         exception if a ref SafeHandle in a struct has changed).
13615         
13616         (emit_struct_conv): Do not perform layout checks for classes
13617         derived from SafeHandle, as those are specially handled. 
13618
13619         (emit_object_to_ptr_conv): Add support for
13620         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
13621
13622         (emit_marshal_safehandle): Implement conversion of return values
13623         of safehandles (MARSHAL_ACTION_CONV_RESULT).
13624         
13625         * threads.c: WaitHandle now is compiled with two different handles
13626         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
13627         for 2.0.
13628         
13629         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
13630         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
13631         these routines to cope with both kinds of fields.
13632
13633 2006-12-12  Miguel de Icaza  <miguel@novell.com>
13634
13635         * metadata.c (mono_type_to_unmanaged): Handle the case where
13636         type->data.klass is a SafeHandle, and in that case, return the
13637         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
13638         MONO_MARSHAL_CONV_SAFEHANDLE. 
13639
13640 2006-12-11  Miguel de Icaza  <miguel@novell.com>
13641
13642         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
13643         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
13644         calling emit_marshal_object.
13645
13646         (emit_marshal_safehandle): Implement marshalling of
13647         SafeHandle parameters (no ref support yet).
13648
13649         (MarshalAction): Document the defines as I implement
13650         them for SafeHandle.
13651
13652         (emit_marshal_object): indentation police.
13653
13654         * class-internals.h: Define MonoSafeHandle.
13655         Add safehandle_class to MonoDefaults type.
13656
13657         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
13658         list of classes to check for fields. 
13659
13660         * domain.c (mono_init_internal): Add SafeHandle to the list of
13661         mono_defaults loaded.
13662
13663 2006-12-15  Raja R Harinath  <rharinath@novell.com>
13664
13665         Fix #80253
13666         * reflection.c (mono_reflection_bind_generic_parameters): If the
13667         generic type definition is a type builder, ensure that it is fully
13668         initialized before instantiating it.  Kill some dead code.
13669
13670 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
13671
13672         * object.c: clear the loader_error () before loading
13673         more metadata stuff (bug #80258).
13674
13675 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
13676
13677         * icall.c, icall-defs.h: type modifiers icalls for
13678         parameters and properties.
13679
13680 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
13681
13682         * object.c, icall.c: fixed warnings.
13683
13684 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
13685
13686         * marshal.c: fixed a couple of leaks and coding style in a few places.
13687
13688 2006-12-08  Dick Porter  <dick@ximian.com>
13689
13690         * process.c: Cope with NULL ProcessStartInfo arguments on windows
13691         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
13692         80173.
13693
13694 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
13695
13696         * process.c: ProcessStartInfo may have only filename set and
13697         arguments can be NULL.
13698
13699 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
13700
13701         * icall.c: fix leak found by Robert Jordan.
13702
13703 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
13704
13705         * marshal.c, marshal.h: generate managed method to access an element
13706         of a multi-dimensional array.
13707
13708 2006-11-30  Paolo Molaro (lupus@ximian.com)
13709
13710         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
13711
13712 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
13713
13714         * icall.c: back out GetFields () fix until the serialization code is
13715         fixed to not depend on the incorrect behaviour.
13716
13717 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
13718
13719         * profiler.c: provide defaults if none are set.
13720
13721 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
13722
13723         * Makefile.am, attrdefs.h: new public header file with
13724         constants for attributes for use by embedders.
13725
13726 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
13727
13728         * icall.c: GetFields () fix for bug #80064.
13729
13730 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
13731
13732         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
13733         removed long unused icalls.
13734
13735 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
13736   
13737         * marshal.c: 
13738                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
13739                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
13740                 can be generated without a delegate class.
13741                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
13742         
13743         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
13744
13745 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13746
13747         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
13748         #80069.
13749
13750 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
13751
13752         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
13753         icall-def.h: added icalls needed by System.GC.
13754
13755 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
13756
13757         * loader.c: ensure the class in catch clauses is handled
13758         correctly for generics methods (fixes bug#79980).
13759
13760 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
13761
13762         * monitor.h, monitor.c: added mono_locks_dump () function
13763         to help debug deadlocks involving managed locks.
13764
13765 2006-11-13  Dick Porter  <dick@ximian.com>
13766
13767         * file-io.c (get_file_attributes): If the file is a symlink try
13768         and get the stat data for the target, but also add the
13769         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
13770         the specs for the windows symlink support, but will probably have
13771         to be reworked when I have test data from a vista machine.  Fixes
13772         bug 79887.
13773
13774 2006-11-13  Dick Porter  <dick@ximian.com>
13775
13776         * gc.c (mono_domain_finalize): 
13777         * marshal.c (mono_delegate_begin_invoke): 
13778         * threadpool.c (socket_io_init, mono_thread_pool_init)
13779         (mono_thread_pool_finish): 
13780         * monitor.c (mono_monitor_try_enter_internal): 
13781         * threads.c (mono_thread_resume, mono_thread_init)
13782         (mono_thread_suspend_all_other_threads)
13783         (mono_thread_execute_interruption): 
13784         * appdomain.c (mono_domain_unload): Check for NULL error returns
13785         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
13786         75733.
13787
13788 2006-11-11  Miguel de Icaza  <miguel@novell.com>
13789
13790         * process.c
13791         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
13792         Only close the handle if the value of the handle is not
13793         INVALID_HANDLE_VALUE.  This just makes the process a bit more
13794         robust.
13795
13796         Improvement for #75733, so that we do not run into this problem. 
13797
13798         
13799         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
13800         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
13801         internal variables.  Fixes #79462 
13802         
13803
13804 2006-11-09  Dick Porter  <dick@ximian.com>
13805
13806         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
13807         Use poll() not select().  Fixes bug 79397.
13808
13809 2006-11-09  Raja R Harinath  <rharinath@novell.com>
13810
13811         Fix #79872
13812         * assembly.c (mono_assembly_load_from_full): Check that the given
13813         image has an assembly manifest.
13814
13815 2006-11-09  Ankit Jain  <jankit@novell.com>
13816
13817         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
13818         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
13819         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
13820
13821 2006-11-07  Dick Porter  <dick@ximian.com>
13822
13823         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
13824         Put the old resolver behaviour back for pre-2.0 profiles.
13825
13826 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
13827
13828         * threadpool.c: precise GC and locking fixes.
13829
13830 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
13831
13832         * class.c: don't load types that have an explicit unaligned
13833         managed reference. Provide better info in the TypeLoad exception.
13834         Part of the fix for bug #79744.
13835         * object.c: use the correct check for class type load issues.
13836
13837 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
13838
13839         * class.c: enforce alignment of fields with managed references
13840         even when Pack=1 is forced by the user (bug #77788).
13841
13842 2006-11-03  Dick Porter  <dick@ximian.com>
13843
13844         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
13845         If the address reverse lookup fails, return it as the hostname
13846         anyway.  Fixes bug 79721.
13847
13848 2006-11-03  Dick Porter  <dick@ximian.com>
13849
13850         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
13851         Fix build on Windows.
13852
13853 2006-11-02  Dick Porter  <dick@ximian.com>
13854
13855         * icall-def.h: 
13856         * object-internals.h: 
13857         * exception.c (mono_get_exception_thread_interrupted): 
13858         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
13859         Fixes bug 74525.
13860
13861         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
13862         Check for pending Thread.Interrupt.
13863
13864 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
13865         * loader.c: Fixed bug 79684.
13866
13867 2006-10-27  Dick Porter  <dick@ximian.com>
13868
13869         * file-io.c (get_file_attributes): Force symlinks to directories
13870         to be returned as a regular file.  Fixes bug 79733.
13871 2006-10-26  Dick Porter  <dick@ximian.com>
13872
13873         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
13874         CreateFile to open a directory then we need to set the
13875         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
13876
13877 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
13878
13879         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
13880         friends.
13881
13882 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
13883
13884         * sgengc.c: small cleanup of timer code.
13885
13886 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
13887
13888         * sgen-gc.c: fix some warnings and start adding support for
13889         complete object removal on domain unload.
13890
13891 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
13892
13893         * assembly.c: build_assembly_name should not consider a version
13894         number without build or revision number invalid. Fixes bug #79715.
13895
13896 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
13897
13898         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
13899         call kernel32 function OutputDebugString directly.
13900         
13901         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
13902         
13903 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
13904
13905         * reflection.c: small cleanup, using a function to insert a MonoString
13906         in the string heap.
13907
13908 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
13909
13910         * reflection.c: moving GC fixes.
13911
13912 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
13913
13914         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
13915         all the objects with finalizers belonging to an unloading appdomain.
13916
13917 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
13918
13919         * sgen-gc.c: added ability to allocate even when the nursery is fully
13920         pinned and fixed a couple of bugs.
13921
13922 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
13923
13924         * threads.h: Revert the last change for now.
13925
13926         * threads.h (mono_thread_get_pending_exception): Rename this to
13927         mono_thread_get_undeniable_exception ().
13928
13929 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
13930
13931         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
13932         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
13933         when fname does not refer to valid assembly. This result in a more
13934         meaningful error message.
13935         * exception.c: added mono_get_exception_bad_image_format2 which 
13936         constructs a BadImageFormatException using the ctor taking a custom
13937         message and the file name. Passing in a NULL msg results in a default
13938         message.
13939         * exception.h: define mono_get_exception_bad_image_format2 function.
13940         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
13941         when file name pointed to an invalid IL image. Use 
13942         mono_get_exception_file_not_found2 to construct FileNotFoundException,
13943         as this results in a more meaningful error message.
13944
13945 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
13946
13947         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
13948         #79465.
13949
13950 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
13951
13952         * metadata.c (mono_type_size): Change the align parameter to guint32 for
13953         consistency with the other _size functions.
13954         (mono_type_stack_size): Ditto.
13955
13956         * class.c object.c icall.c: Fix warnings caused by the above change.
13957
13958         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
13959
13960         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
13961
13962         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
13963
13964 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
13965
13966         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
13967         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
13968         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
13969         threadpool.h, threads-types.h: mark more internal functions.
13970
13971 2006-10-11  Dick Porter  <dick@ximian.com>
13972
13973         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
13974         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
13975         reproduce the bug even before applying the fix.)
13976
13977 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
13978
13979         * reflection.c: allow retrieving attributes for arguments in generic
13980         methods (bug #79241).
13981
13982 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
13983
13984         * debug-mono-symfile.c: properly check fopen () result (found by
13985         coverity).
13986
13987 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
13988
13989         * reflection.c: make error message clearer and fixed two
13990         issuelets found by Coverity.
13991
13992 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
13993
13994         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
13995
13996 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
13997
13998         * object-internals.h, gc-internal.h, profiler-private.h:
13999         mark internal functions.
14000
14001 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
14002
14003         * reflection.c: put data in the text section.
14004         * icall.c: recognize more types in type_from_typename ().
14005         * process.c, marshal.c: added some GC FIXMEs.
14006
14007 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
14008
14009         * loader.c: check for NULL before initializing.
14010
14011 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
14012
14013         * gc.c (finalizer_thread): Use a non-alertable wait here.
14014
14015         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
14016         until the correct solution is found.
14017
14018 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
14019
14020         * reflection.c (mono_module_get_object): Avoid an assert when operating on
14021         modules with no metadata. Fixes #79596.
14022
14023         * image.c (load_metadata_ptrs): Put back the error message when
14024         the #- heap is encountered since the support is not complete yet.
14025
14026 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
14027
14028         * gc.c: do not allow the user to SuppressFinalize () a
14029         delegate because it would leak the trampoline if present.
14030
14031 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
14032
14033         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
14034         PropertyPtr table.
14035
14036 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
14037
14038         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
14039
14040         * metadata.c (mono_metadata_get_param_attrs): Ditto.
14041
14042         * row-indexes.h: Add definitions for *Ptr tables.
14043
14044         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
14045
14046         * metadata.c (mono_metadata_translate_token_index): New helper function to
14047         translate table indexes used in uncompressed metadata.
14048         (mono_metadata_decode_table_row): Ditto.
14049         (mono_metadata_decode_table_row_col): Ditto.
14050
14051         * metadata.c: Add table schema for *Ptr tables.
14052
14053         * class.c loader.c: Use the new helper function to access the affected metadata
14054         tables.
14055         
14056         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
14057         #38532.
14058         
14059 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
14060
14061         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
14062         sequences which can be unbounded in size. Fixes #79583.
14063
14064 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
14065
14066         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
14067         static initialization.
14068
14069         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
14070
14071         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
14072
14073         * domain.c (mono_domain_free): Free up type_init_exception_hash.
14074
14075         * object.c (mono_runtime_class_init): Implement correct semantics when a static
14076         ctor fails, i.e. throw the same exception on subsequent accesses.
14077         
14078 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
14079
14080         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
14081         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
14082         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
14083         Handle marshalling of interfaces and VARIANTs contained in structs.
14084         
14085         Code is contributed under MIT/X11 license.
14086         
14087 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
14088
14089         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
14090         
14091         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
14092         mempool.
14093
14094 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14095
14096         * console-io.c: ignore previous SIGINT handler.
14097
14098 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
14099
14100         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
14101         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
14102         #79460, #79461, #79485.
14103
14104         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
14105
14106         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
14107         #79217.
14108
14109 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
14110
14111         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
14112         could be generated from it.
14113
14114 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
14115
14116         * rand.c: fix read loop to correctly handle EINTR.
14117
14118 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
14119
14120         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
14121         internal calls are defined to keep methods closer to the declaring
14122         type and allow a significant reduction in runtime relocations and
14123         memory usage.
14124
14125 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
14126
14127         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
14128         exception message to have FileNotFoundException use the default
14129         assembly load error message. Fixes bug #79426.
14130         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
14131
14132 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14133
14134         * threadpool.c: (start_thread_or_queue) use the root domain when
14135         creating the thread instead of the async object one.
14136
14137 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
14138
14139         * class.c, object.c, class-internals.h, reflection.c:
14140         for arrays, store element_size inside MonoClass (speedup
14141         for array object creation).
14142
14143 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
14144
14145         * icall.c: fixed CodeBase to use the file name and not the module
14146         name (bug #79365).
14147
14148 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
14149
14150         * mono-debug.c, mono-debug.h: export find_method as
14151         mono_debug_find_method ().
14152
14153 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
14154
14155         * debug-helpers.c, class-internals.h: added a few functions useful
14156         when debugging under gdb.
14157
14158 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14159
14160         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
14161         characters that need special handling.
14162
14163 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
14164
14165         * mono-config.c: make the os/cpu specification more flexible,
14166         allowing lists and negation.
14167
14168 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
14169
14170         * marshal.c: COM Interop fixes. Handle case where method->klass.
14171         is interface. Handle BSTR/MonoString when null. Use CDECL as 
14172         calling convention on non-windows platforms. This is for
14173         compatibility with XPCOM and MainWin COM.
14174         
14175         Code is contributed under MIT/X11 license.
14176         
14177
14178 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
14179
14180         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
14181         correctly. Fixes #79217.
14182
14183         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
14184
14185 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
14186
14187         * mono-config.c: allow both an os and cpu attribute for dllmap
14188         and dllentry elemnets to enable a single config file to be used
14189         for multiple architectures.
14190
14191 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
14192
14193         * loader.c: MonoLoaderError was cleared too soon on load failure.
14194         Fixes bug #79424.
14195
14196 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
14197
14198         * icall.c: use the defining class vtable when accessing a
14199         static field, not a pobblibly derived class.
14200
14201 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
14202
14203         * icall.c string-icalls.c: Remove references to unicode.h.
14204
14205         * unicode.h unicode.c Makefile.am: Remove these unused source files.
14206
14207         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
14208
14209         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
14210         indicating the image where custom marshaller types should be looked up.
14211         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
14212         custom marshallers, instead of corlib. Fixes #79425.
14213
14214 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
14215
14216         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
14217
14218 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
14219
14220         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
14221         Implement Environment.ProcessorCount.
14222         
14223         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
14224         Implement Environment.ProcessorCount.
14225         
14226         * icall.c: 
14227         Add Environment.ProcessorCount icall.
14228         
14229         Patch by Jason McFall.
14230
14231 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14232
14233         * assembly.c: don't append .exe/.dll when the filename already contains
14234         one of those extensions.
14235
14236 2006-09-12  Martin Baulig  <martin@ximian.com>
14237
14238         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
14239         to array interfaces.
14240
14241 2006-09-11  Martin Baulig  <martin@ximian.com>
14242
14243         * reflection.c (mono_image_build_metadata): Create the
14244         MethodImpl's after emitting all types and methods, so we don't
14245         need another fixup pass for them.
14246
14247 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
14248
14249         * class.c (mono_class_from_name_case): Fix regression introduced by the last
14250         change.
14251
14252 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
14253
14254         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
14255         unload.
14256
14257 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
14258
14259         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
14260         args is not set. Fixes #78926.
14261
14262 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
14263
14264         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
14265
14266         * image.c (load_class_names): Move this to class.c, and rename it to 
14267         'mono_image_init_name_cache'.
14268         (load_modules): Fix a warning.
14269
14270         * class.c icall.c image.c: Initialize image->name_cache lazily.
14271
14272         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
14273         on its name using information in the AOT file.
14274
14275         * class.c (mono_class_from_name): Use the new hook function.
14276
14277 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
14278
14279         * reflection.c (mono_param_get_objects): Handle enum default parameter values
14280         correctly.
14281
14282         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
14283         Fixes #79289.
14284         
14285 2006-09-06  Martin Baulig  <martin@ximian.com>
14286
14287         * icall.c (mono_lookup_internal_call): Small fix.
14288
14289 2006-09-05  Raja R Harinath  <rharinath@novell.com>
14290
14291         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
14292         double g_free.
14293
14294 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
14295
14296         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
14297         when --debug is specified.
14298
14299 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
14300
14301         * class.c (setup_generic_array_ifaces): Fix a warning.
14302
14303 2006-09-04  Miguel de Icaza  <miguel@novell.com>
14304
14305         * Temporarily remove the patch to assemly.c that checks the
14306         assembly versions as it breaks our gacutil.
14307
14308 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
14309
14310         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
14311
14312         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
14313         a net 1.0 runtime.
14314
14315         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
14316         created using the default ctor. Fixes #79152.
14317         (mono_string_builder_to_utf16): Ditto.
14318
14319 2006-09-01  Martin Baulig  <martin@ximian.com>
14320
14321         Fix handling of the generic array interfaces.
14322
14323         * class-internals.h
14324         (MonoDefaults): Removed `generic_array_class' and added
14325         `generic_ilist' class.
14326
14327         * class.c
14328         (mono_bounded_array_class_get): Add the new generic array interfaces.
14329         (setup_generic_array_ifaces): New static method; create vtable
14330         entries for each method in the generic array interfaces.
14331
14332         * metadata.c
14333         (select_container): Allow "parent-less" generic methods.
14334
14335         * marshal.c
14336         (mono_marshal_get_generic_array_helper): New public method.
14337
14338         * icall.c
14339         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
14340         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
14341         moved the interncall into System.Array.
14342
14343 2006-09-01  Raja R Harinath  <rharinath@novell.com>
14344
14345         A few more cases of avoiding work on types with ->byref set.
14346         Has the real fix for #79238
14347         * icall.c (is_generic_parameter): New helper.
14348         (ves_icall_Type_GetGenericParameterPosition): Use it.
14349         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
14350         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
14351         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
14352         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
14353         reference types.
14354         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
14355         reference types.
14356         (ves_icall_Type_get_IsGenericInstance): Likewise.
14357         (ves_icall_Type_get_IsGenericType): Likewise.
14358
14359 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
14360
14361         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
14362         class if possible.
14363
14364         * mempool.h (mono_mempool_get_allocated): New helper function.
14365
14366         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
14367         change.
14368
14369         * mempool.c: Fix warnings and the calculation of stats.
14370
14371         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
14372
14373         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
14374
14375         * loader.c (mono_get_method_from_token): Update method_count stat.
14376
14377         * class-internals.h (MonoStats): Add some stats.
14378
14379 2006-08-31 Robert Jordan  <robertj@gmx.net>
14380
14381         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
14382         with managed variants.
14383         All code is contributed under the MIT/X11 license.
14384         
14385 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
14386
14387         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
14388         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
14389
14390         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
14391
14392         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
14393         with cycles in classes.
14394
14395         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
14396
14397         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
14398         missing a [MarshalAs] directive. Fixes #79203.
14399
14400         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
14401         klass->marshal_info. Fixes #79217.
14402
14403 2006-08-30  Martin Baulig  <martin@ximian.com>
14404
14405         Committing a patch from Joachim Ante <joe@otee.dk>:
14406         Add support for binary data symbol stores.
14407
14408         * debug-mono-symfile.c
14409         (mono_debug_open_mono_symbol_file): Renamed into
14410         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
14411         arguments.
14412
14413         * mono-debug.c
14414         (mono_debug_open_image): Added `raw_contents' and `size' args.
14415         (mono_debug_init_2_memory): New public function.
14416
14417 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
14418
14419         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
14420
14421 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14422
14423         * appdomain.c: implement support for ShadowCopyFiles.
14424
14425 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
14426
14427         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
14428         when value is NULL (and should remove CID #51).
14429
14430 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14431
14432         * image.c: moved 2 functions to ../utils.
14433
14434 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
14435
14436         * gc.c: cope with the target object of a GC handle being NULL
14437         (bug #78877).
14438
14439 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
14440
14441         * class.c: recursively check parent's explicit implementations
14442         of interface methods (fixes bug #79125).
14443
14444 2006-08-19  Miguel de Icaza  <miguel@novell.com>
14445
14446         * filewatcher.c: Avoid warnings when building, do not redefine
14447         constants that are defined.
14448
14449         Remove warnings.
14450
14451 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14452
14453         * image.c: don't fail when the link points to an absolute path.
14454
14455 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
14456
14457         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
14458         Fix CID #3.
14459
14460 2006-08-17  Miguel de Icaza  <miguel@novell.com>
14461
14462         * image.c (full_path): A new method used to obtain the actual path
14463         of an assembly even in the presence of symbolic links.  
14464
14465         This is necessary for the case where we are running a binary that
14466         has been GACed, but we are using the "published" path name
14467         ($prefix/mono/1.0/blah.exe) which happens to point to the real
14468         file in the GAC.
14469
14470         This was the source of the failure for the `xsp' command with the
14471         recent AppDomain changes, as far as the runtime was concerned,
14472         there were two different assemblies: $prefix/mono/1.0/blah.exe and
14473         $prefix/mono/gac/blah/version/blah.exe.
14474
14475         (do_mono_image_open): use full path
14476
14477 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
14478
14479         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
14480
14481 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
14482
14483         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
14484         domain_id is supplied. Fix CID #241 and corlib's unit tests.
14485
14486 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
14487
14488         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
14489         small structures. Fixes #78990.
14490
14491 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
14492
14493         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
14494
14495         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
14496
14497 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14498
14499         * appdomain.c:
14500         * marshal.c: don't load all the assemblies from a domain into newly
14501         created ones. The new domains might have different rules and load
14502         assemblies from different locations. Fixes bug #76757.
14503
14504         Patch by Lluis. Conflicts resolved by Brian Crowell.
14505
14506 2006-08-16  Alp Toker  <alp@atoker.com>
14507
14508         * socket-io.c: First half of the fix for #79084.
14509         Set sa_size to the length of the content, not that of the struct.
14510         Don't add NULL suffix to the content, this should be done in
14511         managed code if needed.
14512
14513 2006-08-14  Raja R Harinath  <rharinath@novell.com>
14514
14515         Fix part of #79012
14516         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
14517         mono_metadata_parse_type returns NULL.
14518
14519 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
14520
14521         * normalization-tables.h : new file for string normalization data.
14522         * locales.c, locales.h, icall.c :
14523           added load_normalization_resource() for string normalization,
14524           and icall as well.
14525         * Makefile.am : added normalization-tables.h to the sources.
14526
14527 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
14528
14529         * marshal.c: Add more helper functions to reduce code duplication and use them
14530         everywhere.
14531
14532 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
14533
14534         * marshal.c: Fix non-x86 stdcall warnings.
14535         
14536         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
14537         them everywhere.
14538
14539 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
14540
14541         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
14542         type check on multi-dimensional arrays. Fixes #79000.
14543
14544 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
14545
14546         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
14547         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
14548         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
14549         * class-internals.h: add is_com_object to class structure.
14550         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
14551         null checks to COM object marshalling. Fix .ctor call on RCW.
14552         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
14553         
14554         All code is contributed under the MIT/X11 license.
14555
14556 2006-08-09  Dick Porter  <dick@ximian.com>
14557
14558         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
14559         racing mono_monitor_allocator_lock() somewhere, so don't delete
14560         the critical section for now.  Found by running and exiting
14561         monodevelop.
14562
14563 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
14564
14565         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
14566         (ves_icall_System_ComObject_FindInterface): Ditto.
14567         (ves_icall_System_ComObject_CacheInterface): Ditto.
14568
14569         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
14570         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
14571
14572 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14573
14574         * threadpool.c: treat pipes from process asynchronous reads as sockets
14575         when reading from them, so we get select/poll or epoll to wait for
14576         data.
14577
14578 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
14579
14580         * loader.c: Fix a typo (CID #233) in the null check.
14581
14582 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
14583
14584         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
14585         Hopefully fixes #78949.
14586         
14587         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
14588         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
14589         bytes. Fixes #78972.
14590
14591 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14592
14593         * filewatcher.c: we need to set errno here.
14594
14595 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14596
14597         * filewatcher.c: let Win32Exception get the error value.
14598
14599 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14600
14601         * filewatcher.c: translate errno into win32 errors for Win32Exception
14602         to know what happened.
14603
14604 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
14605
14606         * threadpool.c: Fix more warnings.
14607
14608         * assembly.c (search_loaded): Fix warnings.
14609
14610         * threadpool.c (mono_thread_pool_finish): Fix warnings.
14611         (mono_async_invoke): Ditto.
14612
14613 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
14614
14615         * object.c (mono_remote_class_vtable): Need to create proxy vtable
14616         entries for __ComObject type in addition to ComImport types.
14617         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
14618         about hash table.
14619         
14620         All code is contributed under the MIT/X11 license.
14621
14622 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
14623
14624         * image.c: avoid tentative loading of modulerefs that contain
14625         no metadata (P/Invoke library names).
14626
14627 2006-07-28  Dick Porter  <dick@ximian.com>
14628
14629         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
14630         mono_loader_lock() somewhere, so don't delete the critical section
14631         for now.  Found by running and exiting monodevelop.
14632
14633 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14634
14635         * filewatcher.c: define the inotify syscalls when we're building on
14636         linux and have sys/syscall.h. The build system might not have support
14637         for inotify but the target system might have it.
14638
14639 2006-07-26  Miguel de Icaza  <miguel@novell.com>
14640
14641         * domain.c: Documentation updates.
14642
14643         * loader.c (mono_free_method): Do not release the method
14644         information if we are being profiled, as profilers will use this
14645         information at shut down to present some data to the user.
14646
14647         This is needed so that the profiler does not crash, as the
14648         profiler tends to keep MonoMethods around, and they might become
14649         invalid if we free these.
14650
14651         (mono_get_method_constrained): Return the original CIL stream
14652         method as well, so verification can be performed against it.
14653
14654 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14655
14656         * filewatcher.[ch]: support for inotify file system watcher.
14657         * icall.c: add new internal calls for the inotify file system watcher.
14658
14659 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14660
14661         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
14662         #78888.
14663
14664 2006-07-20  Dick Porter  <dick@ximian.com>
14665
14666         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
14667         warning.
14668
14669 2006-07-20  Dick Porter  <dick@ximian.com>
14670
14671         * threads.c (start_wrapper): Do the thread cleanup while we still
14672         hold a reference to its object.  Fixes bug 78123.
14673
14674 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
14675
14676         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
14677         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
14678           "managed-to-managed".
14679         * icall.c: Redirect string constructors that take sbyte* to
14680           ves_icall_System_String_ctor_RedirectToCreateString.
14681         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
14682           to CreateString () methods with matching signature.
14683         * reflection.c: Use original security informations for
14684           MONO_WRAPPER_MANAGED_TO_MANAGED.
14685         * security-manager.c: Use original security informations for
14686           MONO_WRAPPER_MANAGED_TO_MANAGED.
14687         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
14688           that is a placeholder and only its address should be used.
14689         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
14690           that is a placeholder and only its address should be used.
14691
14692 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
14693
14694         Begin implementing COM Interop.
14695         * appdomain.c: Increment corlib version.
14696         * class.c: Set ComImport classes' parent to __ComObject.
14697         * loader.c: Mark cominterop methods as such.
14698         * domain.c: Add __ComObject class to MonoDefaults structure.
14699         * image.c: Add 2 hashtables to the image for COM Interop related methods
14700         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
14701         using the mempool allocator
14702         
14703         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
14704         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
14705         declaration for mono_metadata_type_dup_mp.
14706         
14707         * debug-helpers.c: Added strings for two additional wrapper types
14708         * object.c: Create proxy objects for ComImport classes
14709         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
14710         and added __ComObject class to MonoDefaults structure.
14711         
14712         * object-internals.h: Finish MonoRealProxy definition, and add definition of
14713         MonoComInteropProxy and MonoComObject.
14714         
14715         * marshal.c: Added support for COM Interop
14716         (signature_cominterop): Converts managed signature to corresponding
14717         unmanaged COM signature.
14718         (cominterop_get_function_pointer): gets unmanaged function pointer via
14719         COM object vtable
14720         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
14721         (cominterop_get_method_interface): returns interface type that method is defined on
14722         (mono_mb_emit_cominterop_call): emits native call to function pointer
14723         gotten from vtable
14724         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
14725         that matches signature of unmanaged function.
14726         (cominterop_get_native_wrapper): wrapper around adjusted method call.
14727         (cominterop_get_invoke): forwards call from proxy to __ComObject
14728         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
14729         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
14730         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
14731         
14732         * marshal.h: Added Marshal icall declarations.
14733         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
14734         so we can access them in finalizer
14735         
14736 2006-07-14  Dick Porter  <dick@ximian.com>
14737
14738         * object.c (mono_type_initialization_cleanup): Fix a race
14739         condition by temporarily commenting out the critical section
14740         deletion.
14741
14742 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
14743
14744         * reflection.c (create_custom_attr): Fix some warnings.
14745         (create_custom_attr_data): Ditto.
14746         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
14747         types. Fixes #78855.
14748
14749 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
14750
14751         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
14752
14753         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
14754
14755 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
14756
14757         * reflection.c (resolve_object): Add support for DynamicMethod.
14758
14759         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
14760         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
14761
14762 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
14763
14764         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
14765         don't leak GPtrArray's pdata has we have no use (nor free) for it.
14766
14767 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
14768
14769         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
14770         Fixes #77888.
14771
14772 2006-06-30  Raja R Harinath  <rharinath@novell.com>
14773
14774         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
14775         slightly: remove a shadow local variable.
14776
14777 2006-06-29  Raja R Harinath  <rharinath@novell.com>
14778
14779         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
14780         definition that introduces the virtual function slot.
14781         Also fix Coverity #105.
14782
14783 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
14784
14785         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
14786         for dynamic assemblies. Fixes #78724.
14787
14788 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
14789
14790         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
14791         Fixes #78722.
14792
14793 2006-06-21  Martin Baulig  <martin@ximian.com>
14794
14795         * reflection.c
14796         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
14797         fixes #76484.
14798
14799 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
14800
14801         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
14802
14803 2006-06-20  Raja R Harinath  <rharinath@novell.com>
14804
14805         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
14806         nor TYPEREFs.
14807         * class.c (mono_class_create_from_typespec): Add 'context' argument.
14808         Inflate result if necessary.
14809         (mono_class_get_full): Remove old version.  Rename from
14810         'mono_class_get' and add 'context' argument.  Pass it to
14811         ..._create_from_typespec.
14812         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
14813         (mono_ldtoken): Revert change below.
14814
14815 2006-06-20  Martin Baulig  <martin@ximian.com>
14816
14817         * class.c (mono_ldtoken): Don't pass the generic context to
14818         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
14819
14820 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
14821
14822         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
14823         and later freeing it. Fixes #78638.
14824
14825 2006-06-15  Miguel de Icaza  <miguel@novell.com>
14826
14827         * icall.c (mono_class_get_throw): Revert over-zealous error
14828         throwing, the caller for mono_class_get_throw will cope with
14829         errors when classes are not properly initialized already.
14830
14831         The code still copes with loader exceptions though.
14832
14833         Fixes the regression in reftype1 and reftype3 from the CAS tests.
14834         
14835 2006-06-14  Miguel de Icaza  <miguel@novell.com>
14836
14837         Fixes the `make run1' version of RuntimeAbort (to be commited,
14838         source is in Bugzilla).
14839         
14840         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
14841         FALSE on class loading failure instead of returning true.
14842
14843         * class.c (mono_class_create_from_typedef): It is possible for
14844         mono_metadata_interfaces_from_typedef_full to fail if a class is
14845         not found, cope with this.
14846         
14847
14848 2006-06-14  Dick Porter  <dick@ximian.com>
14849
14850         * socket-io.c: 
14851         * process.c: Fix a bunch of signed/unsigned warnings from gcc
14852         4.1.1
14853
14854 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
14855
14856         * culture-info-table.h : oops, forgot to make it nsync with r61548.
14857
14858 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14859
14860         * icall.c: Another fix for building mono in Visual Studio.
14861
14862 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14863
14864         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
14865         
14866 2006-06-09  Martin Baulig  <martin@ximian.com>
14867
14868         * debug-mono-symfile.c: Put this back and really fix it this
14869         time. Sorry for all the trouble.
14870
14871 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
14872
14873         * icall.c (mono_class_get_throw): Fix a warning.
14874         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
14875         ReflectionTypeLoadException if needed. Fixes #78606.
14876
14877         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
14878         (mono_class_init): Ditto.
14879
14880         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
14881         ref_only exceptions.
14882         (mono_loader_clear_error): Make this work even if there is no error.
14883
14884 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
14885
14886         * object-internals.h marshal.c marshal.h icall.c: Implement method 
14887         Marshal.GetComSlotForMethodInfo using internal call.
14888
14889 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
14890
14891         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
14892         a function for signalling it.
14893
14894         * class.c (mono_class_from_typeref): Use the new kind of loader error when
14895         a referenced assembly is not found.
14896
14897         * loader.c (mono_loader_error_prepare_exception): Add support for 
14898         LOADER_ERROR_ASSEMBLY. Fix formatting.
14899
14900 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
14901
14902         * domain.c appdomain.c class-internals.h marshal.c: Add support 
14903         for VARIANT marshalling on windows and increment corlib version
14904         since Variant struct was added.
14905
14906 2006-06-03  Miguel de Icaza  <miguel@novell.com>
14907
14908         * debug-mono-symfile.c: Revert Martin's previous patch which broke
14909         stack trace line information:
14910
14911         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
14912         (Martin) when looking up B which is between A and C, return A not C.
14913
14914         Bug is #78573.
14915
14916         Thanks to Alexander Olk for tracking this down.
14917
14918 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
14919
14920         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
14921         
14922         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
14923         avoid clobbering its value.
14924         (mono_string_to_lpstr): Fix a warning on windows.
14925
14926 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
14927
14928         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
14929
14930         * reflection.c loader.c: Removed references to 'dummy' flag.
14931
14932         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
14933
14934         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
14935         it gets GC tracking.
14936
14937         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
14938         GC tracking.
14939         
14940         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
14941
14942         * marshal.c threadpool.c: Update callers of mono_async_result_new.
14943
14944         * appdomain.c: Bump corlib version.
14945
14946 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
14947
14948         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
14949         CEE_STIND_REF when working with object references.
14950
14951 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
14952
14953         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
14954         Fixes #78539.
14955
14956 2006-05-30  Miguel de Icaza  <miguel@novell.com>
14957
14958         * loader.c (method_from_memberref): Fix argument value for
14959         mono_loader_set_error_method_load (I was passing the MonoClass
14960         instead of the class name char *).
14961
14962 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
14963
14964         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
14965         CEE_STIND_REF when working with object references.
14966
14967 2006-05-30  Martin Baulig  <martin@ximian.com>
14968
14969         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
14970         mono_method_full_name() change and replace the ':' with a '.'
14971         here.
14972
14973 2006-05-30  Martin Baulig  <martin@ximian.com>
14974
14975         * debug-mono-symfile.c
14976         (mono_debug_symfile_lookup_location): Fix the algorithm:
14977         when looking up B which is between A and C, return A not C.
14978
14979 2006-05-29  Martin Baulig  <martin@ximian.com>
14980
14981         * mono-debug.h
14982         (MonoDebugMethodInfo): Make the typedef public.
14983         (MonoDebugSourceLocation): New public struct.
14984
14985         * mono-debug.c
14986         (mono_debug_source_location_from_address): Removed.
14987         (mono_debug_source_location_from_il_offset): Removed.
14988         (mono_debug_il_offset_from_address): Removed.
14989         (mono_debug_address_from_il_offset): Removed.
14990         (mono_debug_lookup_method): New public function.
14991         (mono_debug_lookup_source_location): New public function; replaces
14992         the old mono_debug_source_location_from_*() functions; see the
14993         inline documentation.
14994         (mono_debug_free_source_location): New public function.
14995         (mono_debug_print_stack_frame): New public function; see the
14996         inline documentation.
14997
14998         * debug-mono-symfile.c
14999         (mono_debug_find_source_location): Renamed into
15000         mono_debug_symfile_lookup_location(); only take a
15001         `MonoDebugMethodInfo *' and an `offset' argument; added inline
15002         documentation.
15003         (mono_debug_find_method): Renamed into
15004         mono_debug_symfile_lookup_method().
15005
15006 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
15007
15008         * assembly.c (mono_assembly_open_full): Dont overwrite the status
15009         returned by mono_image_open_full ().
15010
15011         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
15012         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
15013         #78517.
15014
15015         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
15016         #78518.
15017
15018 2006-05-27  Miguel de Icaza  <miguel@novell.com>
15019
15020         * class.c (mono_class_from_typeref): handle missing images
15021         earlier, deals with bug #78418.   Refactor code; 
15022
15023         Fix a warning introduced in my previous commit (some stale code
15024         from before I revisited my patch).
15025
15026         * class.c (mono_class_create_from_typedef): On failure, remove the
15027         class from the MonoImage->class_cache as the class is not
15028         initialized;   Fixes the leak pointed out by Paolo.
15029
15030 2006-05-25  Dick Porter  <dick@ximian.com>
15031
15032         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
15033         DeleteCriticalSections until I figure out which one may still be
15034         sometimes locked when mono_thread_cleanup is called.
15035
15036 2006-05-24  Dick Porter  <dick@ximian.com>
15037
15038         * threads.c (mono_thread_cleanup): Move the threading cleanup out
15039         of mono_thread_manage and back into its own function, so it can be
15040         called after the finalizer thread has finished.
15041
15042         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
15043
15044 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
15045
15046         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
15047         Fixes #78495.
15048
15049         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
15050         with non-blittable elements.
15051         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
15052
15053 2006-05-24  Martin Baulig  <martin@ximian.com>
15054
15055         * mono-debug-debugger.h (MonoDebuggerEvent): Added
15056         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
15057
15058         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
15059         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
15060         `mono_debugger_event_handler' to NULL.
15061
15062 2006-05-24  Martin Baulig  <martin@ximian.com>
15063
15064         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
15065
15066 2006-05-24  Martin Baulig  <martin@ximian.com>
15067
15068         * mono-debug-debugger.h
15069         (mono_debugger_create_notification_function): Added
15070         `MonoCodeManager *' argument.
15071
15072 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
15073
15074         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
15075
15076 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
15077
15078         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
15079         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
15080         implementation.
15081
15082 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
15083
15084         * icall.c: precise GC support: objects can't be stored in unmanaged
15085         memory anymore, even if they are kept alive by other references: since
15086         they can move the GC needs to be able to always find them.
15087
15088 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
15089
15090         * object.c: precise GC support for static fields. Support
15091         for moving GCs: write barriers and pinned allocation for interned
15092         strings.
15093
15094 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
15095
15096         * domain.c, domain-internals.h: precise GC support for the MonoDomain
15097         structure.
15098
15099 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
15100
15101         * class.c, gc.c: sgen and precise GC updates.
15102
15103 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
15104
15105         * marshal.h, marshal.c: added write barrier wrapper and precise type
15106         fixes.
15107
15108 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
15109
15110         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
15111         support.
15112
15113 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
15114
15115         * reflection.c: precise and sgen GC updates.
15116
15117 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
15118
15119         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
15120
15121 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
15122
15123         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
15124
15125 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
15126
15127         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
15128         MONO_TYPE_OBJECT. Fixes #78462.
15129
15130 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
15131
15132         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
15133         and blittable types.
15134
15135 2006-05-17  Miguel de Icaza  <miguel@novell.com>
15136
15137         * class.c (mono_class_get_exception_for_failure): Implement parts
15138         of a TODO: if the loader error is set (instead of the class
15139         error), we return a Loader exception that can be properly thrown
15140         elsewhere.
15141
15142         This was exposed by some Winforms 2.0 code that I tried to run
15143         (Atsushi pointed me to it).
15144
15145 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
15146
15147         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
15148         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
15149         
15150         * marshal.c (emit_marshal_vtype): Add limited support for 
15151         UnmanagedType.LPStruct. Fixes #78427.
15152
15153         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
15154         Applied a patch from kangaroo to fix #77523.
15155
15156 2006-05-17  Martin Baulig  <martin@ximian.com>
15157
15158         * threads.c
15159         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
15160         (debugger_thread_created): Removed.
15161         (debugger_thread_exited): Removed.
15162
15163 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
15164
15165         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15166
15167         * object-internals.h (MonoReflectionResource): Sync with managed version.
15168
15169 2006-05-12  Wade Berrier <wberrier@novell.com>
15170
15171         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
15172
15173 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
15174
15175         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
15176         functions try to allocate from the image mempool.
15177
15178 2006-05-12  Dick Porter  <dick@ximian.com>
15179
15180         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
15181
15182 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
15183
15184         * object.c: The FieldGetter and FieldSetter methods require the full
15185         name of the class, not only the name. Fixes bug #78277.
15186
15187 2006-05-11  Miguel de Icaza  <miguel@novell.com>
15188
15189         * loader.c (method_from_memberref): Do not pass the NULL klass to
15190         mono_loader_set_error_() methods.  Pass the non-NULL value
15191         (class). 
15192
15193 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
15194
15195         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
15196         (mono_assembly_close): Null out assembly->image->references after freeing it.
15197
15198         * image.c (mono_image_close): Free image->references.
15199         
15200         * reflection.c (mono_image_basic_init): Fix a small memory leak.
15201
15202 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
15203
15204         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
15205         before checking if it's NULL (g_assert).
15206
15207 2006-05-10  Martin Baulig  <martin@ximian.com>
15208
15209         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
15210         I thought I already killed that two months ago, but now it somehow reappeared.
15211
15212 2006-05-10  Martin Baulig  <martin@ximian.com>
15213
15214         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
15215
15216 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
15217
15218         * reflection.c: Allocate memory for dynamically created methods in the image
15219         mempools.
15220
15221 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
15222
15223         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
15224         don't use the ad pointer before checking if it's NULL (g_assert).
15225
15226 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
15227
15228         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
15229         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
15230
15231         * marshal.c: Allocate all signatures from mempools.
15232
15233         * marshal.c: Allocate some more signatures from mempools.
15234
15235 2006-05-09  Miguel de Icaza  <miguel@novell.com>
15236
15237         * object.c (mono_load_remote_field): The code used to provide a
15238         temporary variable for returning results if the user did not
15239         provide a result pointer.  But our temporary variable was allocted
15240         on the satck.
15241
15242         Fix calling code to always pass a result area.   Coverity ID 103.
15243
15244 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
15245
15246         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
15247         value, not the old. Fixes #78312.
15248         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
15249
15250         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
15251         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
15252         per-image cache.
15253
15254         * assembly.c (mono_assembly_close): Free image->references.
15255
15256         * assembly.c (mono_assembly_names_equal): Fix a warning.
15257         (mono_assemblies_cleanup): Cleanup more global data.
15258
15259         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
15260
15261         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
15262         ptr_cache and image->modules.
15263
15264         * image.c (mono_image_init): Allocate array_cache lazily.
15265         
15266 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15267
15268         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
15269         behavior was changed recently and has bad side effects.
15270
15271 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
15272
15273         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
15274         
15275         * assembly.c (mono_assembly_close): Remove a debug printf.
15276
15277         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
15278
15279         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
15280         to also allow for temporary references between mono_image_open ()/close ().
15281
15282         * domain.c (get_runtimes_from_exe): Add a FIXME.        
15283
15284 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
15285
15286         * marshal.c: Fix support for dynamic methods.
15287
15288         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
15289
15290         * marshal.c (mono_marshal_cleanup): New cleanup function.
15291
15292         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
15293         image mempools.
15294
15295         * class.c (mono_class_init): Fix leaking class->nested_classes.
15296
15297         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
15298
15299         * image.c (mono_image_init): Initialize the new cashes.
15300
15301         * image.c (mono_image_close): Destroy the new cashes.
15302
15303         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
15304
15305         * mempool.c (mono_mempool_strdup): New helper function.
15306
15307         * class-internals.h: Add prototype for mono_loader_unlock ().
15308
15309         * domain.c (mono_jit_info_table_find): Fix a warning.
15310         (mono_debugger_check_runtime_version): Ditto.
15311
15312         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
15313         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
15314         functions to these modules.
15315
15316         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
15317         metadata modules.
15318         
15319         * marshal.c (mono_free_bstr): Fix a warning.
15320
15321         * assembly.c (mono_assembly_open_full): Fix another small leak.
15322
15323         * object.c: Fix some unload leaks in the remoting code.
15324
15325         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
15326         function.
15327
15328         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
15329
15330         * reflection.c: Fix some unload leaks in dynamic assemblies.
15331
15332 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
15333
15334         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
15335         * marshal.h: Add BSTR support on Win32
15336         * icall.c: Add BSTR icalls
15337         * metadata.h: Add BSTR enums
15338
15339 2006-04-28  Miguel de Icaza  <miguel@novell.com>
15340
15341         Work to catch the crash from #76795 and turn it into an
15342         exception.   As I stubbed out pieces of the VisualBasic support,
15343         I found a number of places where the code was failing and I added
15344         checks to those places. 
15345         
15346         * metadata.c (do_mono_metadata_parse_generic_class): Make this
15347         function return a status code.  If we fail to parse the signature
15348         from mono_metadata_parse_generic_inst, return FALSE.
15349
15350         * loader.c (mono_get_method_from_token): If we fail to load the
15351         method (mono_class_get) return NULL.   
15352
15353         * (method_from_memberref): Return NULL if we are unable to parse
15354         the method signature
15355
15356         (mono_loader_error_prepare_exception): Since we now use the
15357         loader_error flag internally to stop processing, and obtaining
15358         exceptions that might be thrown will walk this code path the
15359         proper way of going from a MonoLoaderError into a
15360         MonoException was convoluted.   This new routine encapsulates the
15361         process of turning the error into an exception and *clearing* the
15362         error afterwards.
15363         
15364 2006-04-27  Miguel de Icaza  <miguel@novell.com>
15365
15366         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
15367         with missing assemblies), and to cope with:
15368
15369                 * Missing fieldref from a non-existing assembly.
15370                 * Missing methodref from a non-existing assembly.
15371
15372         The first batch of work to address *some* of the issues from 76661.
15373         
15374         * object.c (mono_class_create_runtime_vtable): If we fail to
15375         initialize the class raise the exception here. 
15376
15377         * metadata.c (mono_class_get_overrides_full): If any methods fail
15378         to load return the failure to the caller.
15379
15380         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
15381         flagging assemblies that failed to load.   
15382
15383         Do not crash if we are unable to load the assembly.
15384
15385         (mono_assembly_close): Do nothing with REFERENCE_MISSING
15386         assemblies. 
15387
15388         * loader.c (mono_loader_set_error_type_load): Change the
15389         convention to always pass unallocated strings, so we make our own
15390         copies (I know our own code had duplicated strings before, but
15391         this keeps the normal conventions).
15392         (method_from_memberref): Call mono_loader_set_error_method_load
15393         for all possible failures of loading the class. 
15394         Remove assert, turn into a loader error.
15395
15396         (mono_loader_error_to_exception): Move this routine from mini
15397         (mini_loader_error_to_exception) there was no need to have that in
15398         mini. 
15399
15400         * class.c (mono_class_from_typeref): If we were not able to load
15401         the assembly with mono_assembly_load_reference, call the
15402         mono_loader_set_error_type_load to register the problem.
15403
15404         (mono_class_setup_fields): If we fail to load the type from
15405         mono_metadata_parse_type_full, call mono_class_set_failure and
15406         break from the loop.
15407
15408         If class->exception_type is set, we do not layout the fields as
15409         that might crash the runtime, and instead return (from breaking
15410         from the previous loop).
15411
15412         (mono_class_setup_vtable): This now returns a boolean indicating
15413         whether the table was properly setup.   The decision is driven by
15414         mono_class_get_overrides_full which might run into non-existing
15415         methods. 
15416         
15417         (mono_class_init): Returns TRUE on success or FALSE if there was a
15418         problem in loading the type (incorrect assemblies, missing
15419         assemblies, methods, etc).
15420
15421         When we call mono_class_setup_fields we also check for a potential
15422         error inside this call (either a class exception or a general
15423         loader exception).
15424
15425         (mono_class_create_from_typedef): If the parent fails to load
15426         (calling mono_class_get_full) return NULL.
15427         
15428         ** Important **
15429
15430         calls to mono_metadata_parse_type_full should be checked
15431         everywhere and set the mono_class_set_failure
15432         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
15433
15434         The current patch checks the places where my manually constructed
15435         tests show the errors are showing up, but we should do it
15436         everywhere. 
15437
15438         ** Important2 **
15439
15440         mono_class_init return values should be tested everywhere, like
15441         the previous case this is something that we should audit
15442         everywhere and not only on the cases exposed by the tests I
15443         created. 
15444
15445 2006-04-26  Miguel de Icaza  <miguel@novell.com>
15446
15447         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
15448         boolean parameter and instead pass the information on `options'
15449         parameter (FileOptions).
15450
15451         * icall.c: Register the new signature for MonoIO.Open.
15452
15453         * debug-helpers.c (dis_one): Trying to understand how coverity
15454         works.  Fix Run 5, item 78.
15455
15456 2006-04-26  Dick Porter  <dick@ximian.com>
15457
15458         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
15459         dereference.
15460
15461 2006-04-25  Martin Baulig  <martin@ximian.com>
15462
15463         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
15464
15465         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
15466         debugger_thread_created().
15467         (debugger_gc_push_all_stacks): Don't handle the main thread in any
15468         special way.
15469         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
15470         (mono_debugger_finalize_threads): New function; undo the effects
15471         of mono_debugger_init_threads().
15472         (mono_debugger_create_all_threads): Removed.
15473
15474 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
15475
15476         * image.c (mono_image_close): Tidy up trace messages.
15477
15478         * assembly.c (mono_assembly_close): Ditto.
15479
15480         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
15481         no longer references an already freed assembly. Fixes #78168.
15482
15483 2006-04-21  Dick Porter  <dick@ximian.com>
15484
15485         * threads.c (mono_thread_detach): Fix reference counting when
15486         detaching threads.
15487
15488 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
15489
15490         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
15491         #78155.
15492
15493 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
15494
15495         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
15496         (mono_type_to_stind): Ditto.
15497
15498         * marshal.c: Use the new helper functions to simplify code.
15499
15500         * image.c (mono_image_close): Add some code for help debug assembly unloading
15501         problems.
15502
15503         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
15504         image mempool.
15505
15506         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
15507         assembly was already loaded in another appdomain. Fixes #78083.
15508
15509 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
15510
15511         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
15512         referenced assemblies.
15513         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
15514
15515         * domain.c (mono_domain_free): Add a trace message.
15516
15517         * appdomain.c (add_assemblies_to_domain): Ditto.        
15518
15519         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
15520         field.  
15521
15522 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
15523
15524         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
15525
15526 2006-04-12  Martin Baulig  <martin@ximian.com>
15527
15528         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
15529         `USE_INCLUDED_LIBGC'.   
15530
15531 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
15532
15533         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
15534         the patch contains ../ and a small directory name later. Hopefully fixes
15535         #78035.
15536
15537 2006-04-10  Martin Baulig  <martin@ximian.com>
15538
15539         Clean up the debugger's thread-handling code.
15540
15541         The debugger's thread-handling code has been moved from
15542         ../mini/debug-debugger.c to threads.c.  We now iterate directly
15543         over the `threads' hash, keep track of exiting threads and also
15544         use proper locking.
15545
15546         We can now debug XSP and XSP based applications with the debugger.
15547
15548         * object-internals.h (MonoThread): Added `gpointer end_stack'.
15549
15550         * threads.h
15551         (MonoThreadCallbacks): Removed; this was only used by the debugger.
15552         (mono_install_thread_callbacks): Likewise.      
15553
15554         * threads.c (mono_thread_callbacks): Removed.
15555         (debugger_thread_created, debugger_thread_exited): New static functions.
15556         (start_wrapper): Call debugger_thread_created().
15557         (thread_cleanup): Call debugger_thread_exited().
15558         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
15559         (mono_debugger_init_threads): New public function.
15560         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
15561         iterate directly over the `threads' hash and also use proper locking.
15562
15563         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
15564
15565         * mono-debug-debugger.h
15566         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
15567
15568 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
15569
15570         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
15571         argument type=array. Fixes #78057.
15572
15573 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
15574
15575         * culture-info-table.h : regenerated. Fixed bug #69652.
15576
15577 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
15578
15579         * loader.c metadata.c: Reapply a variant r59116.
15580         
15581         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
15582
15583         * class.c (mono_class_setup_interface_offsets): New internal function.
15584
15585         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
15586         interfaces too. Fixes #77398.
15587
15588         * reflection.c (encode_cattr_value): Add support for 
15589         parameter type=object, argument type=array.
15590         (load_cattr_value): Ditto. Fixes #77916.
15591
15592         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
15593         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
15594
15595         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
15596         a byval char array and CharSet is Ansi.
15597
15598         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
15599
15600 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
15601
15602         * metadata.c: Add some locking comments.
15603         
15604         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
15605         mempool.
15606         (mono_metadata_free_method_signature): Don't free the signature itself.
15607
15608         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
15609
15610         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
15611         reference the same MonoImage.
15612         (mono_assembly_load_from_full): Add an assert.
15613
15614 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
15615
15616         * image.c (mono_image_close): Don't put the image we are about to free into the
15617         loaded_images_guid_hash.
15618
15619         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
15620         to reduce code duplication.
15621
15622         * marshal.c: Register the native functions called by this module as icalls, to
15623         somewhat centralize the creation of MonoMethodSignature's.
15624
15625         * loader.c (mono_method_signature): Add a cache for method signatures.
15626
15627         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
15628         the parameter attributes of a method.
15629         (mono_metadata_parse_method_signature_full): Refactored the computation of
15630         parameter attributes into a separate function. Also avoid one allocation in
15631         most cases.
15632
15633         * assembly.c (mono_assembly_close): Ditto.
15634
15635         * image.c (mono_image_close): Log trace messages with INFO level.
15636
15637         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
15638
15639         * image.c reflection.c: Correct reference counting of image modules.
15640         
15641         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
15642         of this function from the image mempool.
15643         
15644         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
15645         to allow more cached types to be used.
15646
15647         * mono-debug.c (mono_debug_add_method): Appled patch from
15648         David S. Miller  <davem@sunset.davemloft.net>: Access 
15649         minfo->lexical_blocks[] entry elements using read32().
15650
15651 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
15652
15653         * loader.c (mono_free_method): No longer free the method header for non-dynamic
15654         methods as it is allocated from the mempool.
15655
15656         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
15657         image mempool.
15658
15659         * metadata-internals.h: Add comments describing the reference counting scheme
15660         used for MonoImage and MonoAssembly.
15661
15662         * image.c assembly.c reflection.c: Rework reference counting of images and 
15663         assemblies so they are freed when the runtime is shut down. Free some 
15664         additional memory structures when an image is unloaded.
15665         
15666 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
15667
15668         * class.c loader.c reflection.c: Allocate more data structures in
15669         the image mempool.
15670
15671 2006-03-31  Miguel de Icaza  <miguel@novell.com>
15672
15673         * icall.c
15674         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
15675         build on pre glib 2.4 systems.
15676
15677 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
15678
15679         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
15680
15681         * icall.c: Fix some warnings.
15682
15683 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
15684
15685         * culture-info-table.h : regenerated.
15686
15687 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
15688
15689         * threads.c, object-internals.h, verify.c: changed the culture caching
15690         code to use a normal MonoArray for storage so the GC can keep track of
15691         them easily. Fixed bits of the cache logic, too and simplified the
15692         code.
15693
15694 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
15695
15696         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
15697         thread for non-Boehm GCs.
15698
15699 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
15700
15701         * domain.c, object.c, domain-internals.h: reduce the amount of memory
15702         needed to keep track of the data for static fields.
15703
15704 2006-03-29  Raja R Harinath  <rharinath@novell.com>
15705
15706         Fix #75172
15707         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
15708         for interface classes.  Use 'num_methods' instead.
15709         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
15710         before using '->vtable_size' field.
15711
15712 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
15713
15714         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
15715         doesn't contain managed pointers, so use a normal hashtable.
15716
15717 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
15718
15719         * reflection.c, class-internals.h, domain.c: fixed handling of types
15720         used as values for objects in custom attributes (bug #77915):
15721
15722 2006-03-24  Martin Baulig  <martin@ximian.com>
15723
15724         * class.c (mono_class_setup_fields): Added support for generic
15725         instances; fixes #77580.
15726
15727 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15728
15729         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
15730
15731 2006-03-24  Dick Porter  <dick@ximian.com>
15732
15733         * file-io.c (get_file_attributes): More stat macro breakage.
15734         Fixes bug 77759.
15735
15736 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
15737
15738         * profiler.c: added the file=filename option in the default profiler
15739         to output the profile data to filename.
15740
15741 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15742
15743         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
15744         bug #77877.
15745
15746 2006-03-22  Martin Baulig  <martin@ximian.com>
15747
15748         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
15749         allocated `MonoClassField *' in `fb->handle'.
15750
15751 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15752
15753         * class.c, image.c, metadata-internals.h: implemented new mechanism to
15754         allocate interface ID to save memory and allow better ID reuse on
15755         appdomain unload. setup_generic_vtable () removal from Martin.
15756
15757 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
15758
15759         * object.h, appdomain.c, domain.c, exception.c, icall.c,
15760         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
15761         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
15762         write barriers for reference stores with managed objects accessed with
15763         C structures in the runtime and in embedding programs.
15764
15765 2006-03-20  Raja R Harinath  <rharinath@novell.com>
15766
15767         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
15768         'interface_id' and 'max_interface_id' fields of MonoClasses
15769         representing open generic types.
15770
15771 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
15772
15773         * object.h, object.c, icall.c: added functions to deal with
15774         storing valuetypes that contain references in managed objects.
15775         * reflection.c, string-icalls.c, threads.c, marshal.c: small
15776         fixes and comments around uses of mono_array_addr ().
15777
15778 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
15779
15780         * object.h, icall.c, monitor.c: object.GetHashCode ()
15781         implementation that supports the moving garbage collector.
15782
15783 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
15784
15785         * icall.c, threads-types.h, threads.c: implemented finalizer for
15786         LocalDataStoreSlot.
15787
15788 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
15789
15790         * metadata.c (mono_type_size): Add a fixme.
15791         (mono_type_stack_size): Ditto.
15792
15793         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
15794         'type_forwarders' field.
15795
15796         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
15797         attribute from net 2.0.
15798
15799         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
15800         from class.c.
15801
15802         * class.c (mono_class_setup_fields): Fix a warning.
15803         
15804         * class.c (mono_class_from_name): Add support for assemblyref entries
15805         in the EXPORTEDTYPE table.
15806
15807         * reflection.c: Add support for handling type forwarders under net 2.0.
15808
15809         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
15810         
15811 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
15812
15813         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
15814         overwriting entries in ModuleBuild->types, also clean up the code
15815         a little. Fixes #77774.
15816
15817 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
15818
15819         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
15820         load friend assembly info when present.
15821
15822 2006-03-14  Raja R Harinath  <rharinath@novell.com>
15823
15824         Fix crasher on gtest-158.cs.
15825         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
15826         the return value if the MonoClass we want is yet in an
15827         inconsistent state.
15828         * class.c (mono_class_create_from_typedef): Add an comment
15829         explaining an order dependency between mono_class_setup_parent and
15830         mono_class_setup_mono_type.
15831
15832 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
15833
15834         * class.c: documentation updates and events bug fix.
15835
15836 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
15837
15838         * class.c: some cleanup, locking fixes.
15839
15840 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
15841
15842         * class.c: fix the generics code to setup nested
15843         type info to the instantiated type (bug #77770).
15844
15845 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
15846
15847         * marshal.c: fixed a few type correctness issues.
15848
15849 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
15850
15851         * loader.c: the Set/Get/Addrtess array methods should be public.
15852
15853 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
15854
15855         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
15856         
15857         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
15858         info->wrapper.
15859
15860 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
15861
15862         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
15863
15864         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
15865
15866         * mempool.c (mono_mempool_alloc): Speed this up a bit.
15867         (mono_mempool_alloc0): Ditto.
15868
15869 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15870
15871         * socket-io.c:
15872         (create_object_from_sockaddr): it was allocating 4 extra bytes
15873         for the AF_UNIX data. Fixes bug #77747.
15874
15875 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
15876
15877         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
15878
15879 2006-03-09  Dick Porter  <dick@ximian.com>
15880
15881         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
15882         Fixes bug 76966 again.
15883
15884 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
15885
15886         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
15887         names from r57532
15888         * appdomain.c: Bumped corlib version to 48 (due to r57532)
15889
15890 2006-03-07  Martin Baulig  <martin@ximian.com>
15891
15892         * object.c
15893         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
15894
15895 2006-03-07  Martin Baulig  <martin@ximian.com>
15896
15897         * class.c
15898         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
15899         regression introduced in r56970; see gtest-252.cs.
15900
15901         * loader.c (mono_get_method_constrained): Correctly handle generic
15902         methods; see gtest-253.cs.
15903
15904 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
15905
15906         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
15907
15908 2006-03-04  Martin Baulig  <martin@ximian.com>
15909
15910         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
15911         compute the parent type at runtime, just like we're already doing
15912         it for interfaces.
15913
15914         * reflection.c
15915         (mono_reflection_bind_generic_parameters): Don't compute the
15916         parent type anymore.
15917
15918         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
15919
15920 2006-03-04  Martin Baulig  <martin@ximian.com>
15921
15922         * mono-debug-debugger.h
15923         (mono_debugger_create_notification_function): Allocate memory at
15924         runtime and return a pointer to it.
15925
15926 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
15927
15928         * assembly.c: Fix windows build.
15929         
15930         * assembly.c: Fix build.
15931
15932         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
15933
15934         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
15935         
15936 2006-03-03  Dick Porter  <dick@ximian.com>
15937
15938         * process.c
15939         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
15940         Check parameters before dereferencing them.  Fixes Aaron's part of
15941         bug 77393.
15942
15943 2006-03-03  Raja R Harinath  <rharinath@novell.com>
15944
15945         Fix performance regression.
15946         * loader.c (find_method_in_class): Add 'from_class' argument.
15947         Rename 'klass' argument to 'in_class'.  The signature is compared
15948         against the method in 'in_class', and the corresponding method is
15949         returned from 'from_class'.
15950         (find_method): Walk both 'in_class' and 'from_class' in parallel.
15951         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
15952         type definition and generic instantiation in parallel.
15953         (mono_get_method_constrained): Update to changes.
15954
15955 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
15956
15957         * threads.c: make sure the domain is correct, too when doing
15958         mono_thread_attach ().
15959
15960 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
15961
15962         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
15963         windows. Fixes #77683.
15964
15965 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
15966
15967         * object.h, *: introduced specific way to set elements of an array
15968         of references to be used as write barrier. Still need to audit the
15969         uses of mono_array_addr.
15970
15971 2006-03-01  Miguel de Icaza  <miguel@novell.com>
15972
15973         * object-internals.h: New field to cache the assmebly name, patch
15974         from Tambet Ingo (tambet@ximian.com)
15975
15976 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
15977
15978         * decimal.h, class-internals.h, metadata-internals.h,
15979         file-io.h: mark a few function declarations as internal, to
15980         reduce the number of PLT entries.
15981
15982 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15983
15984         * file-io.c: fix typo in warning message.
15985
15986 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
15987
15988         * loader.c: on unix, lookup the "*A" version of a function
15989         if charset is auto as a second option before failing.
15990
15991 2006-02-28  Raja R Harinath  <rharinath@novell.com>
15992
15993         * class.h (mono_class_inflate_generic_method): Revert to two
15994         argument version.
15995         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
15996         (mono_class_inflate_generic_method_full): Add.
15997         * class.c (mono_class_inflate_generic_method_full): Rename from
15998         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
15999         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
16000         * loader.c, reflection.c: Update to changes.
16001
16002 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
16003
16004         * icall.c: const fixes and small improvements.
16005
16006 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16007
16008         * threadpool.c: for asynchronous connect(), enable the same workaround
16009         for BSD 6 as for the Mac. Fixes bug #77637.
16010
16011 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
16012
16013         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
16014         formatted classes. Fixes #77524.
16015
16016 2006-02-24  Raja R Harinath  <rharinath@novell.com>
16017
16018         * class.c (inflate_generic_type): Add a couple more
16019         micro-optimizations.
16020         (inflate_generic_context): Don't use the 'gmethod' from
16021         'inflate_with'.
16022         (mono_class_inflate_generic_method): If the method has generic
16023         parameters, but the passed-in context doesn't have a 'gmethod',
16024         create one.  Use the possibly simplified generic instantiation
16025         from the declaring class instead of the one passed in.
16026
16027 2006-02-24  Raja R Harinath  <harinath@gmail.com>
16028
16029         Make generic method signature and method header handling lazy.
16030         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
16031         (inflate_generic_header): Likewise.
16032         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
16033         parameter to avoid inflating types.
16034         (mono_get_inflated_method): Empty out.
16035         * class.h (mono_class_inflate_generic_method): Update to changes.
16036         * loader.c (mono_get_method_from_token): Don't parse signature for
16037         generic methods, nor methods of generic classes.
16038         (mono_method_signature): Rename from 'mono_method_signature'.
16039         Inflate signature on demand.
16040         (mono_method_get_header): Inflate method header on demand.
16041         * reflection.c: Update to changes.
16042
16043 2006-02-23  Raja R Harinath  <rharinath@novell.com>
16044
16045         * metadata.c (mono_metadata_inflate_generic_inst): If the
16046         instantiation is closed, don't bother expanding it in the new
16047         context.
16048         * class.c (inflate_generic_class): If the generic instantiation
16049         doesn't change after inflation, return the argument itself.
16050         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
16051         Add bounds checks.
16052         (inflate_generic_context): If neither the generic class nor the
16053         generic method instantiations change, return the original context.
16054         * reflection.c (mono_method_get_object): Do
16055         'mono_get_inflated_method' before accessing the ->klass field.
16056         (inflate_mono_method): Don't create a MonoGenericMethod unless
16057         necessary.
16058         (inflate_method): Don't pass a constructed type as the declaring
16059         type of a methodbuilder.
16060
16061 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
16062
16063         * object.c: fix memory overwrite.
16064
16065 2006-02-22  Dick Porter  <dick@ximian.com>
16066
16067         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
16068         it doesn't work any more.
16069         (mono_threads_request_thread_dump): Fix unused variable warnings.
16070
16071 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16072
16073         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
16074         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
16075         the public header file.
16076
16077 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
16078
16079         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
16080
16081 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
16082
16083         * class-internals.h, object.c: reduce the size of MonoVTable
16084         and store the interface_offsets array at negative offsets.
16085
16086 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
16087
16088         * metadata.c: tweak table descriptors data structures to reduce
16089         size and runtime relocations.
16090
16091 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
16092
16093         * marshal.c: fix some types and opcodes to be type-safe
16094         in marshaling wrappers.
16095
16096 2006-02-21  Ankit Jain  <jankit@novell.com>
16097
16098         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
16099
16100 2006-02-21  Raja R Harinath  <rharinath@novell.com>
16101
16102         * metadata.c (get_constraints): Relax debugging checks for monodis.
16103
16104 2006-02-21  Ankit Jain  <jankit@novell.com>
16105
16106         * metadata.c (mono_metadata_load_generic_params): Move the code
16107         checking for ambiguous generic params from here to mono/dis/get.c
16108         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
16109
16110 2006-02-21  Raja R Harinath  <harinath@gmail.com>
16111
16112         Fix assertion triggered when compiling nemerle.
16113         * class.c (mono_get_shared_generic_inst): Rename from
16114         get_shared_inst and make non-static.
16115         * loader.c (mono_get_shared_generic_method): New.  Used to create
16116         the MonoGenericContext-equivalent of a MonoGenericContainer.
16117         (mono_get_method_from_token): Initialize the 'context' field of
16118         the created MonoGenericContainer.
16119         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
16120         * metadata.c (get_constraints): Add sanity check.
16121         * class-internals.h: Add new internal methods.
16122
16123         * reflection.c (verify_safe_for_managed_space): New sanity check.
16124         Currently checks that owner-less generic parameters aren't allowed
16125         in managed space.
16126         (mono_type_get_object): Use it.
16127         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
16128         that are now in mono_type_get_object.
16129         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
16130
16131 2006-02-19  Raja R Harinath  <harinath@gmail.com>
16132
16133         * metadata.c (mono_type_create_from_typespec): Rename from
16134         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
16135         argument and caching of types in the generic container.
16136         (unwrap_arrays, find_generic_param): Remove.
16137         * metadata-internals.h: Update.
16138         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
16139
16140 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
16141
16142         * class.c (mono_class_get_exception_for_failure): Fix a warning.
16143
16144         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
16145         return values. Fixes #77581.
16146
16147         * class.c (mono_fnptr_class_get): Switch name and name_space.
16148
16149         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
16150         classes and add support for [In, Out] attributes.
16151         (mono_marshal_free_asany): Ditto. Fixes #77524.
16152
16153 2006-02-18  Raja R Harinath  <harinath@gmail.com>
16154
16155         * class.c (mono_class_from_generic_parameter): Make more robust to
16156         incomplete MonoGenericContainers from monodis.
16157
16158 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
16159
16160         * class-internals.h: added some more exception types.
16161         * class.c, metadata.c: added a few checks to handle missing
16162         types.
16163
16164 2006-02-17  Raja R Harinath  <rharinath@novell.com>
16165
16166         Use owner-less generic-params some more.
16167         * class.c (my_mono_class_from_generic_parameter): Remove.
16168         (mono_class_from_generic_parameter): Handle null image,
16169         param->name and param->owner.
16170         (mono_class_from_mono_type): Update.
16171         (mono_class_create_from_typespec): Remove 'container' parameter.
16172         If that parameter is non-null, the result is always inflated by
16173         'mono_class_get_full' anyway.
16174         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
16175         parameter.
16176         (mono_class_get_full): Update.
16177
16178         * class.c (inflate_generic_type) [GENERICINST]: If the generic
16179         instance is not open, don't bother inflating.
16180         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
16181         parse metadata for inflated classes.
16182         (_mono_class_get): Change GenericContext* parameter to
16183         GenericContainer*.
16184         (mono_class_create_from_typespec): Likewise.  Simplify, and
16185         implement trivially.  All the cases are handled in
16186         mono_class_from_mono_type.  Don't inflate returned class.
16187         (mono_class_get_full): Delegate GENERICINST optimization to
16188         inflate_generic_type.
16189         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
16190
16191 2006-02-16  Dick Porter  <dick@ximian.com>
16192
16193         * socket-io.c (create_object_from_sockaddr): Fix typo.
16194         (create_sockaddr_from_object): Check array lengths before
16195         potentially accessing items off the end.
16196         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
16197         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
16198         (ves_icall_System_Net_Sockets_Socket_Send_internal)
16199         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
16200         length checks to avoid wraparound overflows.
16201         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
16202         contents of the array of sockets
16203         (hostent_to_IPHostEntry2)
16204         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
16205         Check return value of inet_ntop ().
16206         (addrinfo_to_IPHostEntry): Fix typo
16207
16208 2006-02-16  Raja R Harinath  <rharinath@novell.com>
16209
16210         Type metadata parsing doesn't use generic-instantiation information.
16211         * metadata.c (mono_metadata_parse_array_full): Change
16212         MonoGenericContext* parameter to MonoGenericContainer*.
16213         (mono_metadata_parse_type_full): Likewise.
16214         (mono_type_create_from_typespec_full): Likewise.
16215         (mono_metadata_parse_mh_full): Likewise.
16216         (mono_metadata_parse_generic_inst): Likewise.
16217         (do_mono_metadata_parse_generic_class): Likewise.
16218         (do_mono_metadata_parse_type): Likewise.
16219         * metadata-internals.h: Update to changes.
16220         * class.c (mono_class_find_enum_basetype): Likewise.
16221         (mono_class_setup_fields): Likewise.
16222         (mono_class_create_from_typespec): Likewise.
16223         * loader.c (method_from_methodspec): Likewise.
16224         (mono_get_method_from_token): Likewise.
16225         (mono_method_get_header): Likewise.
16226
16227 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
16228
16229         * marshal.c: handle additional GENERICINST case (patch from
16230         Thong Nguyen <tum@veridicus.com>).
16231         Fix a few cases where LDIND_I/STIND_I was used for references.
16232
16233 2006-02-16  Raja R Harinath  <rharinath@novell.com>
16234
16235         * reflection.c (mono_reflection_get_token): Remove unused variable.
16236
16237 2006-02-16  Martin Baulig  <martin@ximian.com>
16238
16239         * reflection.c (mono_reflection_get_token): Add support for fields
16240         in instantiated generic types.
16241
16242         * icall.c
16243         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
16244
16245 2006-02-15  Martin Baulig  <martin@ximian.com>
16246
16247         * icall.c
16248         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
16249         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
16250         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
16251         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
16252
16253 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
16254
16255         * class.c, metadata.c, metadata.h, object.c, icall.c,
16256         marshal.c: changed mono_type_get_underlying_type () to do
16257         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
16258         Fixed handling of instantiated generic valuetypes (bug #75479).
16259
16260 2006-02-15  Raja R Harinath  <rharinath@novell.com>
16261
16262         * metadata.c (mono_metadata_decode_signed_value): Simplify.
16263         Delegate to mono_metadata_decode_value, and work on the returned value.
16264
16265         * icall.c (ves_icall_MonoType_GetGenericArguments):
16266         Add consistency check here too.
16267         
16268 2006-02-15  Ankit Jain  <jankit@novell.com>
16269
16270         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
16271         char/short etc.
16272
16273 2006-02-15  Ankit Jain  <jankit@novell.com>
16274
16275         * metadata.c (mono_metadata_decode_signed_value): New function to decode
16276         signed values, used only for representing lower bounds of arrays.
16277         (mono_metadata_parse_array_full): Use new
16278         mono_metadata_decode_signed_value to decode lower bounds.
16279
16280 2006-02-14  Martin Baulig  <martin@ximian.com>
16281
16282         * reflection.c
16283         (mono_reflection_get_token): Support "MonoGenericMethod" and
16284         "MonoGenericCMethod" and allow generic instances / methods.
16285
16286 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
16287
16288         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
16289         to obtain the terminal size using an ioctl.
16290
16291         * object.c (mono_nullable_init): Revert this as nullable reference
16292         types are not valid.
16293         (mono_nullable_box): Ditto.
16294
16295 2006-02-09  Dick Porter  <dick@ximian.com>
16296
16297         * threads.c (mono_thread_detach): Drop a reference to the thread
16298         we're detaching.
16299
16300 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
16301
16302         * object.c (mono_nullable_init): Handle nullable reference types.
16303         (mono_nullable_box): Ditto. Fixes #77446.
16304
16305 2006-02-07  Martin Baulig  <martin@ximian.com>
16306
16307         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
16308
16309 2006-02-07  Ankit Jain  <jankit@novell.com>
16310
16311         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
16312         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
16313         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
16314         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
16315         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
16316         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
16317
16318 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
16319
16320         * class.c (mono_class_create_generic): Set type_token as well.
16321
16322         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
16323         compatible with MS.
16324
16325 2006-02-02  Martin Baulig  <martin@ximian.com>
16326
16327         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
16328         has never been used so far.
16329
16330 2006-02-02  Martin Baulig  <martin@ximian.com>
16331
16332         * mono-debug-debugger.h: Changed comment at the top of this file;
16333         the header is not installed, but it's safe to #include it from
16334         within the JIT.
16335
16336         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
16337         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
16338
16339 2006-02-02  Martin Baulig  <martin@ximian.com>
16340
16341         * mono-debug.h
16342         (MonoSymbolTable): Removed the `metadata_info' field.
16343
16344         * mono-debug.c
16345         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
16346
16347         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
16348         (mono_debugger_add_builtin_types): Removed.
16349         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
16350         (mono_debugger_create_notification_function): We now operate on a
16351         pre-allocated area; take a `gpointer' and return `void'.
16352
16353         * mono-debug-debugger.c
16354         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
16355         (mono_debugger_add_builtin_types): Removed.
16356
16357 2006-02-02  Martin Baulig  <martin@ximian.com>
16358
16359         * threads.c (mono_debugger_create_all_threads): New public method.
16360
16361 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
16362
16363         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
16364         breaks on several platforms.
16365
16366 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
16367
16368         * assembly.c: the VS.NET build doesn't supply default values for
16369         MONO_ASSEMBLIES and MONO_CFG_DIR.
16370
16371 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
16372
16373         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
16374         helper function.
16375
16376         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
16377
16378         * loader.c (method_from_memberref): Fix a warning.
16379
16380         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
16381
16382         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
16383         with explicit layout. Fixes #77433.
16384
16385 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
16386
16387         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
16388         max_interface_id is initialized before using it. Fixes #77398.
16389         (ves_icall_Type_GetInterfaces): Ditto.
16390
16391 2006-01-30  Raja R Harinath  <rharinath@novell.com>
16392
16393         * metadata.c (mono_metadata_parse_method_signature_full): Don't
16394         allocate memory for parameter attributes when parsing memberref
16395         signatures.
16396         * loader.c (mono_loader_set_error_method_load): Don't warn.
16397         (method_from_memberref): Ensure MissingMethodException gets thrown
16398         if method is not found.  Make warning more informative.
16399
16400 2006-01-29  Raja R Harinath  <harinath@gmail.com>
16401
16402         Fix #77397
16403         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
16404         return true if is byref.
16405         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
16406         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
16407         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
16408
16409 2006-01-27  Raja R Harinath  <rharinath@novell.com>
16410
16411         Fix tests/find-method.2.il
16412         * loader.c (find_method, find_method_in_class): Remove is_inflated
16413         argument.  Revert 2006-01-18 change.
16414         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
16415         is generic, search for method in its generic definition.
16416         * class.c (mono_class_setup_vtable_general): Print generic
16417         arguments of generic types in debugging printf.
16418
16419 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
16420
16421         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
16422
16423         * threads.c (mono_threads_request_thread_dump): New helper function.
16424
16425 2006-01-25  Raja R Harinath  <rharinath@novell.com>
16426
16427         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
16428
16429 2006-01-25  Ankit Jain  <jankit@novell.com>
16430
16431         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
16432         move definition to ..
16433         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
16434         
16435 2006-01-25  Ankit Jain  <jankit@novell.com>
16436             Raja R Harinath  <rharinath@novell.com>
16437
16438         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
16439         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
16440         as necessary.
16441
16442 2006-01-25  Martin Baulig  <martin@ximian.com>
16443
16444         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
16445         `MonoDebuggerThread' into debug-debugger.c.
16446
16447 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
16448
16449         * profiler.c: fix printing of data.
16450
16451 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
16452
16453         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
16454           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
16455
16456 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
16457
16458         * object.c: fix deadlock related to string interning.
16459
16460 2006-01-23  Martin Baulig  <martin@ximian.com>
16461
16462         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
16463
16464         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
16465
16466 2006-01-23  Martin Baulig  <martin@ximian.com>
16467
16468         * mono-debug.h: Moved the prototypes of some functions which are
16469         used by the JIT here from mono-debug-debugger.h.
16470
16471 2006-01-21  Martin Baulig  <martin@ximian.com>
16472
16473         * Makefile.am: Don't install mono-debug-debugger.h.
16474
16475 2006-01-21  Martin Baulig  <martin@ximian.com>
16476
16477         * mono-debug-debugger.h: Enforce the private status of this header
16478         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
16479         Moved some stuff from mono-debugger-jit-wrapper.h here.
16480
16481 2006-01-20  Raja R Harinath  <rharinath@novell.com>
16482
16483         * class.c (mono_class_from_typeref): Add a sanity test to help
16484         catch lack of assembly load/search hooks.
16485
16486 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
16487
16488         * marshal.c (emit_struct_conv): Relax the fields with same offset
16489         check even more. Fixes #77230.
16490
16491 2006-01-18  Martin Baulig  <martin@ximian.com>
16492
16493         * loader.c (find_method_in_class): Added `gboolean is_inflated'
16494         argument; if false, we compare the uninstantiated signatures.
16495         (method_from_memberref): Compare the uninstantiated signatures;
16496         fixes #76417.
16497
16498 2006-01-18  Robert Jordan  <robertj@gmx.net>
16499
16500         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
16501         Clear the weak link. Fixes bug #77170.
16502
16503         * gc.c (mono_gchandle_free):
16504         Reflect *-gc.c changes (tiny optimization).
16505
16506 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
16507
16508         * metadata.c (mono_metadata_signature_dup): Applied patch from
16509         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
16510         Fixes #77288.
16511
16512 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
16513
16514         * marshal.c (emit_struct_conv): Allow fields with the same offset when
16515         marshalling from native to managed code. Fixes #77230.
16516
16517 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16518
16519         * threadpool.c: fix problem (Mac only) when more than one asynchronous
16520         connect. Fixes bug #77020.
16521
16522 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
16523
16524         * class.c: fixed id assignement for nested interfaces (bug #77275).
16525         Added also better info for --print-vtable debugging.
16526
16527 2006-01-12  Martin Baulig  <martin@ximian.com>
16528
16529         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
16530         interfaces on-the-fly; fixes #76625.
16531
16532         * class-internals.h
16533         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
16534         don't need that anymore.
16535
16536 2006-01-12  Miguel de Icaza  <miguel@novell.com>
16537
16538         * socket-io.c
16539         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
16540         To avoid initing the nested_classes when not needed I turned the
16541         PeerCredData as a toplevel internal class, as it has to be shared
16542         anyways. 
16543
16544         Fixes the CASA issue.
16545
16546 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
16547
16548         * domain.c: Accessors for MonoJitInfo
16549
16550         * profiler-private.h: Add jitinfo to the end jit hook
16551
16552         * profiler.[ch]: Define new hooks, called after jitting which give
16553         the MonoJitInfo that was compiled
16554
16555 2006-01-10  Martin Baulig  <martin@ximian.com>
16556
16557         * class.c (mono_class_setup_events): Add support for generic
16558         classes; fixes #76440.
16559
16560 2006-01-06  Raja R Harinath  <rharinath@novell.com>
16561
16562         Fix #77160.
16563         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
16564         on passed-in method.
16565
16566 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
16567
16568         * object.c (mono_runtime_invoke_array): Add Nullable support.
16569
16570         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
16571
16572 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
16573
16574         * file-io.c: Don't consider sockets as directory and avoid an endless
16575         loop. Fix bug #76966.
16576
16577 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
16578
16579         * object.c (mono_nullable_init): New helper function.
16580         (mono_nullable_box): Ditto.
16581
16582         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
16583
16584         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
16585
16586         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
16587         
16588 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
16589
16590         * class.c (mono_class_is_assignable_from): Make T assignable to 
16591         Nullable<T>.
16592
16593 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
16594
16595         * appdomain.c: Bump corlib version to 46.
16596         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
16597         serialization purpose) and changed ves_icall_System_Reflection_
16598         Assembly_get_code_base signature to accept a boolean (to escape, or 
16599         not, the assembly code base).
16600
16601 2005-12-23  Dick Porter  <dick@ximian.com>
16602
16603         * icall.c: 
16604         * threads-types.h: 
16605         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
16606         CreateEvent icall now returns "created" boolean parameter.
16607
16608 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
16609
16610         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
16611         #76967.
16612
16613         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
16614         when attr_klass is an interface. Fixes #77045.
16615
16616 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
16617
16618         * marshal.c (emit_struct_conv): Fix previous patch.
16619         
16620         * marshal.c (emit_struct_conv): Add a check for fields with the same
16621         offset.
16622
16623 2005-12-20  Raja R Harinath  <rharinath@novell.com>
16624
16625         Fix regression in Mono.C5.
16626         * class.c (mono_class_create_generic): If 'klass' is an interface
16627         set up the interface offsets.
16628         (mono_class_is_assignable_from): Don't throw away generic arguments.
16629
16630 2005-12-19  Raja R Harinath  <rharinath@novell.com>
16631
16632         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
16633         type parameters.
16634
16635 2005-12-15  Raja R Harinath  <rharinath@novell.com>
16636
16637         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
16638         dead store.
16639         (do_mono_metadata_parse_generic_class): Don't pass the current
16640         generic context when parsing the type being instantiated: it
16641         cannot use it, anyway.
16642
16643         * loader.c (method_from_memberref): Don't inflate a signature if
16644         it doesn't contain any type parameters.
16645
16646 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
16647
16648         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
16649
16650 2005-12-14  Martin Baulig  <martin@ximian.com>
16651
16652         * class.c
16653         (mono_type_get_name_recurse): Don't return null for type
16654         parameters and open generic classes.
16655         (mono_class_setup_methods): Don't exclude generic instances.
16656         (mono_get_unique_iid): Use different IDs for different
16657         instantiations of the same generic type.
16658         (mono_class_setup_vtable): Only use setup_generic_vtable() for
16659         open generic instances; create a normal vtable for closed generic
16660         instances.
16661         (mono_class_setup_vtable_general): We're now also called for
16662         closed generic instances.
16663
16664         * reflection.c
16665         (mono_reflection_bind_generic_parameters): Correctly use
16666         mono_metadata_lookup_generic_inst() everywhere.
16667
16668 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
16669
16670         * object.c (mono_class_create_runtime_vtable): Call 
16671         mono_class_setup_vtable ().
16672
16673         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
16674         function.
16675         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
16676         #76959.
16677
16678         * loader.c (mono_loader_set_error_type_load): Print the type load
16679         warnings to the console so they are more visible to the user.
16680         (mono_loader_set_error_method_load): Ditto.
16681
16682         * reflection.c (ensure_runtime_vtable): Revert the last change as it
16683         is still broken.
16684         
16685         * reflection.c (ensure_runtime_vtable): Fix build.
16686
16687         * reflection.c (ensure_runtime_vtable): Disable an optimization which
16688         doesn't work in all cases.
16689
16690 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
16691
16692         * object.c (mono_array_new_full): Treat a single dimensional array
16693         with 0 lower bounds as an szarray. Fixes #76973.
16694
16695         * reflection.c (custom_attr_visible): Really fix this.
16696
16697 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
16698
16699         * reflection.c (custom_attr_visible): Allow nested public attributes
16700         as well.
16701
16702         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
16703         interface check.
16704
16705 2005-12-12  Raja R Harinath  <harinath@gmail.com>
16706
16707         * class.c (set_generic_param_owner): Delete.
16708         (mono_class_create_from_typedef): Don't set ->owner field of
16709         generic parameters to "param containers" of enclosing classes.
16710         * reflection.c (mono_reflection_initialize_generic_parameter):
16711         Likewise.
16712
16713 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
16714
16715         * reflection.c (custom_attr_visible): Fix build.
16716
16717 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
16718
16719         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
16720         private attributes.
16721         
16722         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
16723         handling of null parameter defaults.
16724
16725 2005-12-09  Raja R Harinath  <rharinath@novell.com>
16726
16727         * class.c (mono_class_from_generic_parameter): Don't set
16728         klass->generic_container.
16729         (my_mono_class_from_generic_parameter): Likewise.
16730
16731 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
16732
16733         * reflection.c (load_public_key): Fix a warning.
16734         (method_encode_code): Fix unaligned accesses.
16735
16736 2005-12-07  Martin Baulig  <martin@ximian.com>
16737
16738         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
16739
16740         * reflection.c
16741         (write_generic_param_entry): Encode our custom attrs.
16742
16743         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
16744
16745 2005-12-07  Martin Baulig  <martin@ximian.com>
16746
16747         * reflection.c (encode_new_constraint): Removed; we don't use the
16748         `NewConstraintAttribute' anymore.
16749
16750 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
16751
16752         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
16753         not fire a TypeResolve event when Assembly.GetType () is called.
16754
16755 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
16756
16757         Beginning of support for nullable types in the runtime. Parts of
16758         this patch are from Martin.
16759
16760         * appdomain.c (MONO_CORLIB_VERSION): Bump
16761
16762         * domain.c (mono_init_internal): get the nullable type
16763
16764         * class.c (mono_class_is_nullable): New method
16765         (mono_class_get_nullable_param): New mehod
16766         (mono_class_create_generic): In types T? set cast_class to T
16767
16768         * class-internals.h (MonoDefaults): new nullable default class
16769         (mono_class_get_nullable_param, mono_class_get_nullable_param):
16770         new methods.
16771
16772 2005-12-05  Raja R Harinath  <rharinath@novell.com>
16773
16774         * metadata.c (select_container): New.  Refactor code to select the
16775         appropriate GenericContainer given the type of generic parameter
16776         we are looking for.
16777         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
16778         not a MonoGenericContext.  Use select_container.  Update parameters.
16779         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
16780         and MONO_TYPE_MVAR.
16781         (unwrap_arrays): Remove duplicate tests.
16782         (find_generic_param): Rename from 'has_same_context'.  Now walks a
16783         generic instantiated class to find any arguments that are generic
16784         parameters.
16785         (mono_type_create_from_typespec_full): Use find_generic_param to
16786         avoid evicting some generic instantiations from the typespec
16787         cache.
16788
16789 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
16790
16791         * reflection.c: fixed writing of doubles on ARM FPA.
16792
16793 2005-12-02  Robert Jordan  <robertj@gmx.net>
16794
16795         * icall.c: Fixed EventInfo.ReflectedType (#76829).
16796
16797 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16798
16799         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
16800         least on SUSE 10 they are not the same (on debian, they are just the
16801         same thing).
16802
16803 2005-12-01  Raja R Harinath  <rharinath@novell.com>
16804
16805         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
16806         DeclaringType for VARs and MVARs.
16807         * class.c (set_generic_param_owner): Fix initialization of owner
16808         fields.
16809
16810 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
16811
16812         * icall.c: fixed Enum.ToObject() to correctly convert the values.
16813
16814 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16815
16816         * threadpool.c: workaround for a bug that shows up on the Mac:
16817         select()+connect() on a blocking socket is not like it should
16818         be, so we proceed to connect() in that case, wasting the I/O
16819         threadpool thread until connect succeedes. Fixes bug #75436.
16820
16821 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16822
16823         * threadpool.c: fix typo when setting file descriptor states.
16824
16825 2005-11-28  Raja R Harinath  <rharinath@novell.com>
16826
16827         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
16828         * metadata.c (mono_metadata_parse_method_signature_full): Don't
16829         create a temporary signature container.
16830         (mono_metadata_parse_generic_param): Update to changes.
16831         (mono_type_create_from_typespec_full): Update to changes.
16832         * loader.c (method_from_memberref): Don't use a
16833         MonoGenericContainer while parsing a memberref signature.
16834         (method_from_methodspec): Remove dead-store of the 'container'
16835         variable.  It's overwritten before use.
16836
16837         * metadata.c (mono_type_create_from_typespec_full): Make debugging
16838         checks tighter.
16839         (mono_metadata_parse_generic_param): Likewise.
16840         * loader.c (find_method_in_class): Does not need a
16841         MonoGenericContainer.  Use 'mono_method_signature' rather than
16842         'mono_method_signature_full'.
16843         (find_method, mono_get_method_constrained, method_from_memberref):
16844         Update to changes.
16845
16846         * metadata.c (mono_type_create_from_typespec_full): Ensure that
16847         owner-less generic-parameters are never evicted from the typespec
16848         cache.
16849
16850         * loader.c (method_from_memberref): Don't use the current context
16851         when parsing signatures.
16852         (method_from_methodspec, mono_get_method_from_token): Update to changes.
16853
16854         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
16855         side-effects in g_assert.
16856         * loader.c (mono_get_method_from_token): Resolve klass earlier so
16857         that we don't potentially lose information.
16858
16859 2005-11-26  Dick Porter  <dick@ximian.com>
16860
16861         * icall.c:
16862         * threads.c: icalls to implement basic (ie, not named)
16863         System.Threading.Semaphore.
16864
16865 2005-11-24  Dick Porter  <dick@ximian.com>
16866
16867         * process.c
16868         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
16869         Use GetProcessId() if it's available.
16870
16871 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
16872
16873         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
16874
16875 2005-11-23  Raja R Harinath  <rharinath@novell.com>
16876             Ankit Jain  <jankit@novell.com>
16877
16878         * loader.c (mono_get_method_from_token): Initialize 'method' field
16879         of all generic parameters before parsing the signature.  Remove
16880         code that "fixed"-up MVAR references.
16881
16882 2005-11-23  Ankit Jain  <jankit@novell.com>
16883
16884         * metadata.c (mono_metadata_has_generic_params):
16885         (mono_metadata_load_generic_param_constraints):
16886         (mono_metadata_load_generic_params): Move duplicate code ...
16887         (mono_metadata_get_generic_param_row): ... here. Returns the
16888         first row-id in GenericParam table for a given owner (token).
16889         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
16890         prototype.
16891
16892 2005-11-23  Raja R Harinath  <rharinath@novell.com>
16893             Ankit Jain  <jankit@novell.com>
16894
16895         * metadata.c (mono_metadata_class_equal): Pass signature_only when
16896         comparing VARs too.
16897         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
16898         type->data.generic_param only if the type is an MVAR.
16899         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
16900         leak owner-less VARs and MVARs into managed space.
16901
16902 2005-11-21  Martin Baulig  <martin@ximian.com>
16903
16904         * class-internals.h
16905         (MonoMethod): Moved the `generic_container' here from
16906         `MonoMethodNormal' since we now also need it for
16907         `MonoMethodPInvoke';
16908         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
16909         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
16910         an union containing both `MonoMethodNormal' and
16911         `MonoMethodPInvoke'.
16912
16913         * loader.c
16914         (mono_get_method_from_token): Allow implementing generic methods
16915         as interncalls.
16916
16917         * threads.c
16918         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
16919         icall.
16920
16921 2005-11-17  Dick Porter  <dick@ximian.com>
16922
16923         * icall.c: 
16924         * process.h: 
16925         * process.c: Split the Process Start_internal icall into
16926         ShellExecuteEx_internal and CreateProcess_internal, which are
16927         called depending on whether UseShellExecute is true.  Fixes bug
16928         76670.
16929
16930         * appdomain.c (MONO_CORLIB_VERSION): Incremented
16931
16932 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
16933
16934         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
16935         'msize' parameters, use the information in 'mspec' instead.
16936         (emit_object_to_ptr_conv): Ditto.
16937
16938         * marshal.c (emit_struct_conv): Handle explicit layout structs with
16939         fields out of order. Fixes #76733.
16940
16941 2005-11-17  Ankit Jain  <jankit@novell.com>
16942
16943         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
16944
16945 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
16946
16947         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
16948           bug #76575.
16949
16950 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
16951
16952         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
16953         for types with non-auto layout. Fixes #76717.
16954
16955 2005-11-16  Ankit Jain  <jankit@novell.com>
16956
16957         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
16958         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
16959         if generic_context is null.
16960           (mono_metadata_generic_param_equal): param->owner can be null.
16961           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
16962         null.
16963
16964 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
16965
16966         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
16967         the correct value.
16968
16969 2005-11-15  Martin Baulig  <martin@ximian.com>
16970
16971         * object.c (set_value): Use mono_class_from_mono_type() instead of
16972         the hack for generic instances; fixes #76136.
16973
16974 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
16975
16976         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
16977         fields.
16978
16979         * image.c (load_metadata_ptrs): Initialize the new fields.
16980
16981         * reflection.c (create_dynamic_mono_image): Ditto.
16982
16983         * reflection.c (build_compressed_metadata): Use the new fields.
16984
16985         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
16986         icall.
16987
16988         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
16989         icall.
16990         
16991 2005-11-15  Ankit Jain  <jankit@novell.com>
16992             Raja R Harinath  <harinath@gmail.com>
16993
16994         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
16995         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
16996         new per-generic_container cache if the cached MonoType's context matches
16997         the current context.
16998           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
16999         to the expected context.
17000           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
17001
17002 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
17003
17004         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
17005         we changed the signature of an icall.
17006         * icall.c: Modify to mono_double_ParseImpl return true/false 
17007         depending on the success, instead of throwing the exception. This will
17008         help us in Double.TryParse methods.
17009         
17010 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
17011
17012         * marshal.c (emit_marshal_object): Throw an exception when
17013         marshalling 'object' instead of crashing. Fixes #76696.
17014
17015 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
17016
17017         * class-internals.h: Add prototype for mono_type_get_full_name ().
17018
17019 2005-11-11  Dick Porter  <dick@ximian.com>
17020
17021         * threads.c (mono_thread_manage): Make sure the main thread has
17022         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
17023
17024 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
17025
17026         * loader.c (mono_loader_set_error_type_load): Log a warning to the
17027         console about the missing type.
17028         (mono_loader_set_error_method_load): Ditto.
17029
17030 2005-11-09  Miguel de Icaza  <miguel@novell.com>
17031
17032         * mono-config.c (mono_get_config_dir): Set the system defaults if
17033         none is specified.
17034
17035         * assembly.c (mono_set_dirs): New API entry point to set the
17036         assembly and the config directory in one call
17037
17038 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
17039
17040         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
17041         the ftnptr was created from a delegate in a domain other than the
17042         current domain. Fixes #75377.
17043
17044         * exception.h exception.c: Add mono_get_exception_not_supported ().
17045
17046 2005-11-08  Martin Baulig  <martin@ximian.com>
17047
17048         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
17049
17050 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
17051
17052         * security-manager.h: Added definitions to deal with strongname key 
17053         pairs bigger (and smaller) than 1024 bits.
17054         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
17055         adjust wrt the public key length being used.
17056
17057 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
17058
17059         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
17060           Windows build (r51396-51397).
17061
17062 2005-11-03  Martin Baulig  <martin@ximian.com>
17063
17064         * class.c (mono_class_setup_vtable_general): Also add generic
17065         methods to the vtable; fixes #76581.
17066
17067 2005-11-01  Miguel de Icaza  <miguel@novell.com>
17068
17069         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
17070         sure that we lookup GetString method from the System.Text.Encoding
17071         class, not the derived class or we get an empty method.
17072
17073         Fixed class #76612.
17074
17075 2005-10-25  Miguel de Icaza  <miguel@novell.com>
17076
17077         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
17078         if it has been previously set (embedders). 
17079
17080         Make mono_set_rootdir available also on Unix.
17081
17082 005-10-24  Robert Jordan  <robertj@gmx.net>
17083
17084         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
17085
17086 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
17087
17088         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
17089         only calls which are made to native code use this flag.
17090
17091         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
17092
17093 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
17094
17095         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
17096         Add support for FieldBuilders.
17097
17098 2005-10-29  Martin Baulig  <martin@ximian.com>
17099
17100         * mono-debug.c
17101         (mono_debug_using_mono_debugger): New public method; returns
17102         whether we're running inside the debugger.
17103
17104 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
17105
17106         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
17107         for Method/Constructor/FieldBuilders.
17108
17109 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
17110
17111         * reflection.c (module_add_cattrs): Save custom attributes for global methods
17112         and fields as well.
17113
17114 2005-10-26  Martin Baulig  <martin@ximian.com>
17115
17116         * mono-debug-debugger.c
17117         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
17118
17119 2005-10-24  Raja R Harinath  <harinath@gmail.com>
17120
17121         * icall.c (base64_to_byte_array): Don't pass an out-of-range
17122         integer to isspace.
17123
17124 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
17125
17126         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
17127         when passing valuetypes byref. Fixes #76502.
17128
17129 2005-10-19  Jackson Harper  <jackson@ximian.com>
17130
17131         * profiler.c: Don't put a . in front of types that are not in a
17132         namespace.
17133
17134 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
17135
17136         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
17137
17138 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
17139
17140         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
17141         #76436.
17142         (mono_marshal_get_ldflda_wrapper): Fix a warning.
17143
17144 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
17145
17146         * assembly.c metadata-internals.h icall.c: Define an additional
17147         parameter for mono_assembly_name_parse_full, so we can avoid creating
17148         S.R.AssemblyName.Version when no version info wasn't passed.
17149         
17150 2005-10-09  Miguel de Icaza  <miguel@novell.com>
17151
17152         * class.c (mono_type_get_full_name): Reimplement method that was
17153         removed. 
17154
17155         * image.c: Some docs
17156
17157 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
17158
17159         * profiler.c (output_newobj_profile): Fix printing of Total memory
17160         on x86.
17161
17162 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
17163
17164         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
17165
17166 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
17167
17168         * threads.c: remove debug output.
17169
17170 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
17171
17172         * threads.c (mono_thread_manage): Fix crashes if more than 64
17173         threads need to be aborted. Hopefully fixes #75899.
17174
17175         * assembly.c (mono_stringify_assembly_name): New helper function.
17176
17177         * class.c: Use mono_stringify_assembly_name instead of the similar
17178         static function.
17179
17180         * assembly.h assembly.c: Add support for calling a postload search 
17181         hook if an assembly cannot be loaded.
17182
17183         * appdomain.c: Register new search hooks which call the AssemblyResolve
17184         events in AppDomain. Fixes #75231
17185
17186 2005-10-07  Martin Baulig  <martin@ximian.com>
17187
17188         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
17189         methods without debug info.
17190
17191 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
17192
17193         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
17194         wrappers.
17195
17196 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17197
17198         * file-io.c: now that we return symlinks, use lstat and, when the file
17199         is a symbolic link, stat, to get the file attributes. Also avoid the
17200         conversion to/from utf16/external.
17201
17202 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
17203
17204         * class.c (mono_class_layout_fields): Compute klass->has_references
17205         correctly if an embedded valuetype is not yet initialized. Fixes
17206         #76331.
17207
17208 2005-10-04  Martin Baulig  <martin@ximian.com>
17209
17210         * metadata.c
17211         (mono_metadata_load_generic_param_constraints): New public
17212         function; splitted the constraints loading out from
17213         mono_metadata_load_generic_params().
17214
17215         * class.c (mono_class_create_from_typedef): Call
17216         mono_metadata_load_generic_param_constraints() after setting up
17217         the type and creating our parent; fixes #75329.
17218
17219 2005-10-04  Martin Baulig  <martin@ximian.com>
17220
17221         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
17222         non-dynamic parent classes.
17223
17224 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
17225
17226         * file-io.c : win32 build fix (ETXTBSY seems not found).
17227
17228 2005-10-04  Martin Baulig  <martin@ximian.com>
17229
17230         * reflection.c
17231         (mono_image_get_methodspec_token): Make the cache actually work;
17232         fixes #75974.
17233
17234 2005-10-04  Martin Baulig  <martin@ximian.com>
17235
17236         * class.c (mono_class_name_from_token): Removed the unneccessary
17237         `MonoGenericContext *' argument.
17238
17239 2005-10-04  Martin Baulig  <martin@ximian.com>
17240
17241         * loader.c
17242         (method_from_methodspec): Make the caching work again; fixes the
17243         performance regression from #76262.
17244
17245 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17246
17247         * file-io.c:
17248         * file-io.h:
17249         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
17250         GetFileSystemEntries that performs the same work but without going
17251         into io-layer, locking, etc.
17252
17253 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
17254
17255         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
17256         ThreadState_Stopped as well. Fixes #76047.
17257
17258 2005-09-29  Martin Baulig  <martin@ximian.com>
17259
17260         * class.c
17261         (inflate_generic_context): If the new context has a `gmethod', set
17262         its `container' that that gmethod's `container'.
17263
17264         * metadata.c
17265         (mono_metadata_parse_generic_param): Simplify things;
17266         `generic_container = generic_context->container;' is just fine.
17267
17268         * loader.c (method_from_methodspec): Code cleanups.
17269
17270 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
17271
17272         * decimal.c: fix warning (and let gcc generate correct
17273         code on ARM with optimizations).
17274
17275 2005-09-28  Martin Baulig  <martin@ximian.com>
17276
17277         * loader.c
17278         (method_from_memberref): Added `MonoGenericContext *class_context'
17279         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
17280         (method_from_methodspec): If we're a memberref, use the enclosing
17281         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
17282
17283 2005-09-28  Martin Baulig  <martin@ximian.com>
17284
17285         * object.c (mono_runtime_invoke_array): Added support for
17286         MONO_TYPE_GENERICINST; fixes #75917.
17287
17288 2005-09-27  Martin Baulig  <martin@ximian.com>
17289
17290         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
17291         `k->byval_arg.type' to determine the actual type.
17292
17293         * loader.c (method_from_methodspec): Removed some hacks.
17294
17295 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
17296
17297         * class-internals.h (mono_field_is_deleted): Do the test for
17298         rtspecialname before we check the actual name of the field. This
17299         prevents us from dereferencing a pointer into the string table,
17300         saving us from accessing a few pages
17301
17302         * *.c: Replace the use of {Enter,Leave}CriticalSection with
17303         macros. This will allow a deadlock debugger to easily be plugged
17304         in.
17305
17306 2005-09-27  Martin Baulig  <martin@ximian.com>
17307
17308         * loader.c (method_from_methodspec): Create a "signature"
17309         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
17310
17311 2005-09-27  Martin Baulig  <martin@ximian.com>
17312
17313         * class.c
17314         (inflate_generic_class): Correctly set the new context's
17315         container.
17316
17317         * loader.c
17318         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
17319         instead of a `MonoGenericContext *'.
17320         (mono_method_signature_full): Take a `MonoGenericContainer *'
17321         instead of a `MonoGenericContext *'.
17322
17323         * metadata.c
17324         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
17325         instead of a `MonoGenericContext *'.
17326         (mono_metadata_parse_method_signature_full): Likewise.
17327
17328 2005-09-26  Martin Baulig  <martin@ximian.com>
17329
17330         * class.c
17331         (mono_class_from_generic_parameter): Set `klass->generic_container'
17332         (mono_class_from_generic_parameter): Likewise.
17333         (mono_bounded_array_class_get): We inherit the generic container
17334         from the element class.
17335
17336         * loader.c
17337         (find_method, find_method_in_class): Take a `MonoGenericContext *'
17338         argument rather than computing it here.
17339         (method_from_memberref): Correctly set the generic context before
17340         parsing the signature.  Fixes #75681.
17341
17342 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
17343
17344         * object.c (mono_class_has_special_static_fields): Fix warnings.
17345
17346 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
17347
17348         * assembly.c: Add parse_public_key function, to
17349         par the public keys. Also added mono_assembly_name_parse_full,
17350         to define it the parsed key should be freed or not.
17351         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
17352         to parse a long format assembly name.
17353         * metadata-internals.h: Keep mono_assembly_name_parse_full as
17354         private, since calling it to preserve the key requires
17355         freeing it manually.
17356         
17357 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
17358
17359         * locales.c : removed HAVE_ICU part.
17360
17361 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
17362
17363         * object.c (mono_class_create_runtime_vtable): Avoid calling 
17364         field_is_special_static if the klass has no special static fields.
17365
17366         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
17367         (MonoCachedClassInfo): Likewise.
17368
17369         * object.c (mono_class_has_special_static_fields): New helper function.
17370
17371 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
17372
17373         * class.c (mono_class_create_from_typedef): Don't call 
17374         interfaces_from_typedef_full for enums.
17375         (mono_class_create_from_typedef): Compute the base types of enums directly
17376         without calling mono_class_setup_fields ().
17377         (mono_class_find_enum_basetype): New helper function.
17378
17379         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
17380         one place inside the string heap.
17381         
17382 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
17383
17384         * class.c: locking fixes, code cleanups, some docs added.
17385         Allocate some data structures in the image mempool.
17386
17387 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
17388
17389         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
17390         the example code.
17391         
17392 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
17393
17394         * class-internals.h, class.c, reflection.c: reduce memory taken by
17395         MonoClass.
17396
17397 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
17398
17399         * metadata.c, metadata.h, loader.h: documentation updates, code and
17400         API cleanups.
17401
17402 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
17403
17404         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
17405         the example code.
17406
17407         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
17408         page faults caused by the runtime while reading metadata.
17409
17410 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17411
17412         * socket-io.c: the field names were changed 3 months ago and no one
17413         realized until bug #76077 got filed!
17414
17415 2005-09-20  Martin Baulig  <martin@ximian.com>
17416
17417         * icall.c (assembly_icalls): Removed some unused debugger icalls.
17418
17419 2005-09-20  Martin Baulig  <martin@ximian.com>
17420
17421         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
17422         write the rank into the class entry.
17423
17424 2005-09-20  Martin Baulig  <martin@ximian.com>
17425
17426         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
17427
17428 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
17429
17430         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17431
17432         * icall.c (custom_attrs_defined_internal): New icall.
17433
17434         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
17435         function.
17436         (mono_custom_attrs_construct_by_type): New helper function.
17437
17438 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
17439
17440         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
17441         terminate the resulting string. Fixes #76123.
17442
17443 2005-09-16  Martin Baulig  <martin@ximian.com>
17444
17445         * mono-debug.c
17446         (mono_debug_add_method): Ignore inflated methods for the moment.
17447
17448 2005-09-14  Martin Baulig  <martin@ximian.com>
17449
17450         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
17451
17452 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
17453
17454         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
17455         return a success/failure indication.
17456         (mono_metadata_interfaces_from_typedef_full): Ditto.
17457         (get_constraints): Ditto.
17458
17459 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
17460
17461         * marshal.c (emit_marshal_array): Fix handling of null arrays.
17462         
17463         * marshal.c (emit_marshal_array): Add support for returning string
17464         arrays from delegates. Fixes #76063.
17465
17466         * marshal.c: Use the emit_ldloc/stloc macros where possible.
17467
17468 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
17469
17470         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
17471         icall.
17472
17473 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
17474
17475         * reflection.c icall.c: Fix after mono_get_exception_type_load
17476         signature change.
17477
17478         * assembly.c (mono_assembly_get_assemblyref): New helper function.
17479         (mono_assembly_load_reference): Use the new helper.
17480
17481         * class-internals.h (MonoLoaderError): New structure containing 
17482         information about type loading errors.
17483
17484         * class-internals.h loader.c: Add APIs to store per-thread loader
17485         error information.
17486
17487         * loader.c class.c: Set the loader error if needed.
17488
17489         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
17490
17491 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
17492
17493         * decimal.c: fixed to handle the broken ARM fp format.
17494
17495 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
17496
17497         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
17498         broken.
17499
17500 2005-09-06  Martin Baulig  <martin@ximian.com>
17501
17502         * domain.c (supported_runtimes): Added v2.0.50727.
17503
17504 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
17505
17506         * culture-info.h: reduce the size of some structures.
17507
17508 2005-09-05  Martin Baulig  <martin@ximian.com>
17509
17510         Reflect latest API changes in the August CTP.
17511
17512         * icall.c
17513         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
17514         ("MonoType.HasGenericArguments"): Removed.
17515         ("MonoMethod.BindGenericParameters"): Renamed to
17516         "MakeGenericMethod".
17517         ("MethodBuilder.BindGenericParameters"): Renamed to
17518         "MakeGenericMethod".    
17519
17520 2005-09-05  Martin Baulig  <martin@ximian.com>
17521
17522         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
17523
17524 2005-09-05  Martin Baulig  <martin@ximian.com>
17525
17526         Applying a patch from Michal Moskal <malekith@nemerle.org>.
17527
17528         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
17529         generic_container is non-NULL.
17530
17531 2005-09-05  Martin Baulig  <martin@ximian.com>
17532
17533         Applying a patch from Michal Moskal <malekith@nemerle.org>.
17534
17535         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
17536
17537 2005-08-29  Michal Moskal  <malekith@nemerle.org>
17538
17539         * reflection.c (encode_locals,
17540         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
17541         for large generic types.
17542
17543 2005-09-05  Martin Baulig  <martin@ximian.com>
17544
17545         Applying a patch from Michal Moskal <malekith@nemerle.org>.
17546
17547         * class.c (mono_dup_array_type): New public method.
17548         (mono_metadata_signature_deep_dup): New public method.
17549         (dup_type): Correctly duplicate array and function types.
17550
17551 2005-09-05  Martin Baulig  <martin@ximian.com>
17552
17553         Applying a patch from Michal Moskal <malekith@nemerle.org>.
17554
17555         * reflection.c (get_default_param_value_blobs): Handle generic types
17556         and generic methods.
17557
17558 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
17559
17560         * class.c: Fixed error reporting (method/class were inversed) for 
17561         inheritance demands.
17562         * security-manager.c|h: Added the AppDomain when calling the managed
17563         System.Security.SecurityManager.InheritanceDemand method.
17564
17565 2005-09-01  Raja R Harinath  <rharinath@novell.com>
17566
17567         * reflection.c (encode_marshal_blob): 'marshaltype' and
17568         'marshaltyperef' are alternate sources for the custom marshaler
17569         name.
17570
17571 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
17572
17573         * class.c: fix creation of array classes with rank == 1
17574         (patch by Ankit Jain <jankit@novell.com>).
17575
17576 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
17577
17578         * object.c: fix check for creating the bound data for arrays vs
17579         szarrays.
17580
17581 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17582
17583         * object.c: configuration file name is now based on the executable name,
17584         not the image name. Fixes bug #75931.
17585
17586 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
17587
17588         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
17589         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
17590
17591 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
17592
17593         * rand.c: Use wincrypt.h instead of WinCrypt.h.
17594
17595 2005-08-24  Ankit Jain  <jankit@novell.com>
17596             Raja R Harinath  <rharinath@novell.com>
17597
17598         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
17599           called by it recursively.
17600           (mono_class_init): Remove special case in pending_init handling, since it's
17601           superseded by the fix to mono_class_from_typeref.
17602
17603 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
17604
17605         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
17606         BROKEN_THREAD_START stuff.
17607
17608 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
17609
17610         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
17611         trampoline.
17612
17613         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
17614         
17615         * object.c (mono_delegate_ctor): Replace the original function address with
17616         a delegate trampoline.
17617
17618 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
17619
17620         * icall.c: add boolean argument to base64_to_byte_array and 
17621         InternalFromBase64String to control whether a whitespace-only string
17622         is allowed (or should casue a FormatException to be thrown). We need
17623         this as the behavior has changed between MS.NET 1.x and 2.0, and we
17624         to match the MS behaviour in both profiles.
17625         * appdomain.c: Bump corlib version.
17626
17627 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
17628
17629         This patch implements a big portion of publisher policy
17630         support, used to bind assembly versions and redirect
17631         one assembly from version A to version B.
17632
17633         * assembly.c:
17634         New GSList loaded_assembly_bindings, for storing the cached
17635         assembly bindings.
17636         (assembly_binding_maps_name): New static function for checking if a 
17637         assembly binding information maps an assembly name.
17638         (mono_assembly_binding_info_free): New function for freeing
17639         assembly binding information resources.
17640         (get_publisher_policy_info): New static function for retrieving 
17641         assembly binding information from a MonoImage.
17642         (compare_versions): New static function for comparing an assembly
17643         binding information data and the version of an assembly name.
17644         (check_policy_versions): New static function for checking if an
17645         assembly binding info mapping an assembly name is valid for it.
17646         (mono_assembly_load_publisher_policy): New static function for
17647         loading the 'policy.major.minor.MyAssembly' image for an assembly
17648         with an assembly name 'aname'.
17649         (mono_assembly_bind_version): New static function for updating
17650         assembly redirection.
17651         (mono_assembly_apply_binding): New static function for applying
17652         assembly binding.
17653         (search_binding_loaded): New static function for searching 
17654         loaded assembly binding infos in the cache domain.
17655         (mono_assembly_load_full): Don't apply assembly binding for
17656         reflection only assemblies.
17657
17658         * metadata-internals.h: Add MonoAssemblyBindingInfo,
17659         which contains information about assembly binding. Also
17660         declare signature for mono_config_parse_publisher_policy ()
17661         function, used to retrieve pub policy info.
17662         
17663         * mono-config.c:
17664         (publisher_policy_start): New static function used to parse publisher 
17665         policy config files.
17666         (publisher_policy_parser): New static MonoParseHandler containing 
17667         the functions used when parsing config files.
17668         (mono_config_parse_publisher_policy): New function for parsing
17669         publisher policy files.
17670         
17671 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
17672
17673         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
17674
17675         * marshal.c (mono_delegate_free_ftnptr): Ditto.
17676
17677         * object.c (mono_get_addr_from_ftnptr): New helper function.
17678
17679         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
17680
17681         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17682
17683 2005-08-19  Dick Porter  <dick@ximian.com>
17684
17685         * threads.c, threads.h, appdomain.c, appdomain.h,
17686         profiler-private.h, monitor.c, object.c, object-internals.h,
17687         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
17688         store the thread ID, so it can hold a 64 bit value if needed.
17689
17690 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
17691
17692         * reflection.c (mono_reflection_create_dynamic_method): Store the
17693         handle class into the method references as well so ldtoken works in
17694         dynamic methods.
17695
17696         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
17697         types.
17698
17699 2005-08-19  Ankit Jain <jankit@novell.com>
17700
17701         Fix #75847.
17702         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
17703           here rather than using the method signature of a arbitrary function
17704           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
17705           two arguments.
17706           Hack done with Harinath.
17707
17708 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17709
17710         * threadpool.c: disable printing stack traces when we get a exception
17711         in a threadpool thread. I need to do more testing to figure out which
17712         cases actually print this. Fixes bug #75828.
17713
17714 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17715
17716         * icall.c: there might be ignored whitespace after the last '='. This
17717         fixes length computation and bug #75840.
17718
17719 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
17720
17721         * assembly.c (mono_assembly_load_full): Consider .exe extension as
17722         well. Fixes #75809.
17723
17724         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
17725         #75784.
17726         
17727         * reflection.c (create_custom_attr_data): Ditto.
17728
17729 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
17730
17731         * locales.c, culture-info.h : removed RegionLCIDMap.
17732         * culture-info-tables.h : regenerated.
17733
17734 2005-08-16  Martin Baulig  <martin@ximian.com>
17735
17736         * class.c (mono_type_get_name_recurse): Small fix.
17737
17738 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
17739
17740         * locales.c : indentation fixie.
17741
17742 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
17743
17744         * object-internals.h,
17745           locales.h,
17746           locales.c,
17747           culture-info.h,
17748           icall.c : added RegionInfo table support.
17749         * culture-info-table.h : regenerated for region support.
17750
17751 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
17752
17753         * reflection.c (resolve_object): handle all kinds of MonoMethod
17754         including generic ones
17755
17756 2005-08-12  Ankit Jain <jankit@novell.com>
17757
17758         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
17759           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
17760
17761 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
17762
17763         * process.c: Don't close a thread handle when it's NULL. This is a
17764         workaround for bug #75733.
17765
17766 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
17767
17768         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
17769
17770 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
17771
17772         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
17773
17774 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17775
17776         * threadpool.c: if a work item in the thread pool has a callback that
17777         catches a exception, don't propagate it after invoking the callback.
17778         Fixes bug #75336.
17779
17780 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
17781
17782         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
17783
17784         * class-internals.h (MonoCachedClassInfo): Add some new fields.
17785
17786         * class.c (mono_class_init): Load field info lazily in the AOT case.    
17787
17788         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
17789
17790 2005-08-03  Ankit Jain  <jankit@novell.com>
17791
17792         Fix #75683.
17793         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
17794           PInvoke calling convention is 0.
17795
17796 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
17797
17798         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
17799         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
17800
17801 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
17802
17803         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
17804         to handle threads not started by the GC (patch by Michael Meeks
17805         <michael.meeks@novell.com>).
17806
17807 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
17808
17809         * reflection.c: Make buffer used in emitting types larger for some
17810         big generic types (patch by Michal Moskal).
17811
17812 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
17813
17814         * mono-debug.c: Fix some (not all) alignment problems.
17815
17816 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
17817
17818         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
17819         Invoke mono_image_load_from_data_full passing the refonly
17820         parameter.
17821
17822         * assembly.c
17823         (mono_assembly_open_from_bundle): Add the refonly argument, 
17824         in order to pass it to other methods it calls to.
17825         (do_mono_assembly_open): Add the refonly argument, in order 
17826         to pass it to other methods it calls to.
17827         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
17828         the refonly parameter to it.
17829
17830         * image.c: Add loaded_images_refonly_hash and
17831         loaded_images_refonly_guid_hash to cache the reflection
17832         only loaded images.
17833         (mono_images_init): Initialize the hash tables used for
17834         caching the reflection only images.
17835         (load_modules): Invoke mono_image_open_full passing the refonly
17836         parameter to load the modules the correct way.
17837         (build_guid_table): Add the refonly argument, to re-build the 
17838         correct hash table.
17839         (do_mono_image_open): Added the refonly argument, in order to
17840         define it for the loaded image.
17841         (mono_image_loaded_full): New function, which receives an
17842         additional parameter to look for the image in the refonly or
17843         non-refonly section.
17844         (mono_image_loaded): Updated, using mono_image_loaded_full.
17845         (mono_image_loaded_by_guid_full): The same case that happens
17846         with mono_image_loaded_full.
17847         (mono_image_loaded_by_guid): Likewise.
17848         (register_image): Use the ref_only variable inside MonoImage
17849         to decide in which hash table store the current image.
17850         (mono_image_open_from_data_full): Rename
17851         mono_image_open_from_data to mono_image_open_from_data_full,
17852         adding the refonly argument, to define the ref_only variable 
17853         inside MonoImage.
17854         (mono_image_open_from_data): Return 
17855         mono_image_open_from_data_full.
17856         (mono_image_open_full): Rename mono_image_open to
17857         mono_image_open_full, receiving the new refonly argument,
17858         to pass it to inner methods.
17859         (mono_pe_file_open): Update this function, to open
17860         a MonoImage as a non-refonly image.
17861         (mono_image_close): Use the refonly variable inside
17862         MonoImage to remove the image from the correct caches.
17863
17864         * image.h: Add the signatures of mono_image_open_full,
17865         mono_image_open_from_data_full, mono_image_loaded_full,
17866         mono_image_loaded_by_guid_full.
17867
17868         * metadata-internals.h: Add the ref_only field to 
17869         MonoImage.
17870         
17871 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
17872
17873         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
17874         Fix the last behavior, which used to load the assemblies and
17875         extract MonoReflectionAssemblyName information, instead of
17876         extract it from the metadata tables. Needed for Reflection
17877         Only assemblies.
17878         
17879 2005-07-29  Martin Baulig  <martin@ximian.com>
17880
17881         * mono-debug-debugger.c
17882         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
17883         not initialized.
17884
17885         * mono-debug.c
17886         (mono_debug_address_from_il_offset): Check whether we have
17887         debugging support before attempting to take the lock.
17888         (mono_debug_source_location_from_address): Likewise.
17889         (mono_debug_source_location_from_il_offset): Likewise.
17890         (mono_debug_il_offset_from_address): Likewise.
17891         (mono_debug_address_from_il_offset): Likewise.
17892
17893 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
17894
17895         * class.c (mono_class_from_name_case): Add support for dynamic images.
17896         Fixes #75650.
17897
17898         * object.c (mono_class_compute_gc_descriptor): Add a workaround
17899         for #75479.
17900
17901 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
17902         
17903         * reflection.c (mono_method_get_object): Fix warning.
17904
17905 2005-07-28  Martin Baulig  <martin@ximian.com>
17906
17907         * mono-debug.c
17908         (mono_debug_add_wrapper): Also write the wrapper type.
17909
17910 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
17911
17912         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
17913         
17914         * class.c (mono_class_init): Avoid reading nested classes if the AOT
17915         data indicates the class has none.
17916
17917 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
17918
17919         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
17920         loader lock with the debugger lock. Prevents deadlocks for beagle.
17921
17922         Beagle can now run on an smp box for a weekend without any
17923         issues. Woohoo!
17924
17925 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
17926
17927         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
17928         in a module. Fixes #75629.
17929
17930 2005-07-26  Martin Baulig  <martin@ximian.com>
17931
17932         * mono-debug.c (mono_debug_add_wrapper): New static method.
17933         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
17934         interncall or a wrapper.
17935
17936         * mono-debug.h (MonoDebugWrapperData): New public typedef.
17937         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
17938         (MONO_DEBUGGER_VERSION): Bump to 51.
17939
17940         * mono-debug-debugger.c
17941         (mono_debugger_add_type): Removed this empty function.
17942         (mono_debugger_add_method): Likewise.
17943
17944 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
17945
17946         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
17947         before accessing method->slot.
17948
17949 2005-07-21  Jb Evain  <jbevain@gmail.com>
17950
17951         * reflection.c (method_encode_clauses/class): Handle filters clauses.
17952         Fixes #75010.
17953
17954 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
17955
17956         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
17957         #75587.
17958
17959 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
17960
17961         * image.h image.c: Add mono_image_get_guid () API function.
17962
17963 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
17964
17965         There were issues when multiple threads tried to load
17966         assemblies. A deadlock was created between assemblies_mutex and
17967         mono_domain_assemblies_lock. This fixes the issue by making the
17968         assembly ref counting be lock free. See bug 75586.
17969         
17970         * image.c (mono_image_close): The add ref function here was using
17971         Interlocked operations while the unref was using a mutex and a
17972         --. I don't think this was ever a bug that would be exposed in a
17973         non-pendantic way (ie, by an embedder doing a ref on one thread
17974         and an unref on another), but for the sake of correctness, this is
17975         now Interlocked.
17976
17977         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
17978         (mono_assembly_load_reference): Call mono_assembly_addref rather
17979         than touching the refcount ourselves.
17980         (mono_assembly_close): Use InterlockedDecrement to unref the
17981         assembly. Don't acquire the lock unless it is actually needed.
17982
17983 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
17984
17985         * class.c (mono_class_layout_fields): Fix calculation of has_references
17986         for generic types.
17987
17988 2005-07-12  Martin Baulig  <martin@ximian.com>
17989
17990         Applying a patch from Michal Moskal <malekith@nemerle.org>.
17991
17992         * metadata.c
17993         (mono_type_hash): Provide better hashing for generic instances.
17994         (mono_generic_inst_hash): Improve hashing.
17995         (mono_generic_class_hash): Likewise.
17996
17997         * reflection.c (mymono_metadata_type_hash): Improve hashing for
17998         generic instances.
17999
18000 2005-07-12  Martin Baulig  <martin@ximian.com>
18001
18002         * reflection.c (mono_reflection_create_runtime_class): Remove the
18003         hack for generic type definitions and non-`Run' assemblies.
18004         (mono_reflection_bind_generic_parameters): Also use
18005         `klass->wastypebuilder' to check for TypeBuilders.
18006
18007 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
18008
18009         * class.c (mono_class_layout_fields): Fix calculation of has_references
18010         for generic types.
18011
18012         * class.c (inflate_generic_class): Fix a leak.
18013         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
18014         for generic types.
18015
18016 2005-07-11  Martin Baulig  <martin@ximian.com>
18017
18018         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
18019         on error.
18020
18021 2005-07-11  Martin Baulig  <martin@ximian.com>
18022
18023         * loader.c (find_method): Also lookup in
18024         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
18025
18026 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
18027
18028         * appdomain.c (mono_domain_unload): Don't free the error message
18029         before passing it to mono_get_exception_...
18030
18031         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
18032         
18033 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
18034
18035         * threads.c: try to better guess an available RT signal (bug #75387).
18036
18037 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
18038
18039         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
18040         and CACHE_OBJECT.
18041
18042 2005-07-07  Martin Baulig  <martin@ximian.com>
18043
18044         * class.c (mono_type_get_name_full): Return NULL for
18045         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
18046         fixes #75408.
18047
18048 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
18049
18050         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
18051         exit the appdomain as well being aborted.
18052
18053         * threadpool.c: Create all threadpool threads inside the root appdomain, and
18054         change back to the root domain after calling managed code. This enables
18055         appdomains using threadpools to be unloaded.
18056
18057 2005-07-07  Martin Baulig  <martin@ximian.com>
18058
18059         * class-internals.h
18060         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
18061         into `MonoDynamicGenericClass' since we only need it for dynamic
18062         types.
18063
18064         * reflection.c (mono_class_bind_generic_parameters): We don't need
18065         to compute the `parent' here.
18066
18067 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
18068
18069         * culture-info-table.h : regenerated.
18070
18071 2005-07-06  Martin Baulig  <martin@ximian.com>
18072
18073         * icall.c
18074         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
18075
18076         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
18077
18078 2005-07-06  Martin Baulig  <martin@ximian.com>
18079
18080         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
18081         we're doing a signature-only comparision; fixes #74945.
18082
18083 2005-07-06  Martin Baulig  <martin@ximian.com>
18084
18085         * class-internals.h (MonoGenericClass): Moved some things out into
18086         a new `MonoInflatedGenericClass' type.  
18087         (MonoInflatedGenericClass): New type; the `klass' of a
18088         `MonoGenericClass' is now computed lazyly in
18089         mono_get_inflated_generic_class().      
18090
18091         * class.c (mono_get_inflated_generic_class): New public function.
18092         (mono_class_inflate_generic_method): Removed the unused
18093         `MonoClass *' argument.
18094         (setup_generic_vtable): Don't call mono_get_inflated_method() on
18095         all the methods.
18096         (mono_class_create_generic): Make this static and merge it with
18097         mono_class_create_generic_2(); we're now called automatically from
18098         mono_get_inflated_generic_class().
18099
18100         * loader.c (mono_method_signature): Call
18101         mono_get_inflated_method() here.
18102
18103 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
18104
18105         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
18106         type of fields with RVA.
18107
18108         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
18109         for this pseudo class.
18110         (my_mono_class_from_generic_parameter): Likewise.
18111         (mono_class_init): Allow interfaces to have cctors.
18112
18113 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
18114
18115         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
18116         lazily for AOT methods.
18117
18118 2005-07-05  Martin Baulig  <martin@ximian.com>
18119
18120         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
18121         returns FALSE for a successful match, not TRUE.
18122
18123 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
18124
18125         * loader.c (mono_method_get_index): Optimize this a bit.
18126
18127 2005-07-04  Martin Baulig  <martin@ximian.com>
18128
18129         * class.c
18130         (class_compute_field_layout): Move the check for generic type
18131         definitions into mono_class_layout_fields().  Fixes #74684.
18132         (mono_class_from_generic_parameter): Correctly compute
18133         `klass->parent'; fixes #75457.
18134
18135         * reflection.c (register_assembly, register_module): Make sure
18136         `domain->rejobject_hash' is already created.
18137
18138 2005-07-02  Martin Baulig  <martin@ximian.com>
18139
18140         * class-internals.h
18141         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
18142         `MonoDynamicGenericClass'.      
18143
18144 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
18145
18146         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
18147         returned by a field getter is null, since null is a valid value.
18148
18149 2005-07-01  Martin Baulig  <martin@ximian.com>
18150
18151         * reflection.c (mono_reflection_generic_class_initialize): Update
18152         the `dgclass->fields [i].parent' to the correct class.
18153         (mono_image_get_fieldref_token): Use the declaring type, not the
18154         reflected type.
18155
18156 2005-07-01  Martin Baulig  <martin@ximian.com>
18157
18158         * loader.c (find_method): Also look in the interfaces; fixes #75429.
18159
18160 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
18161
18162         * threads.c (thread_cleanup): assert that thread != NULL
18163         (wait_for_tids_or_state_change): We were using the wrong variable
18164         when accessing wait->threads. `i' was always out of the bounds of
18165         the array.
18166
18167 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18168
18169         * loader.c: map user32 and kernel32 to libMonoSupportW
18170
18171 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
18172
18173         * appdomain.c (unload_thread_main): Mark this as WINAPI.
18174
18175 2005-06-28  Martin Baulig  <martin@ximian.com>
18176
18177         * loader.c (method_from_methodspec): Fix #75334.
18178
18179 2005-06-28  Martin Baulig  <martin@ximian.com>
18180
18181         Fix #74953 - Arrays now implement the generic IList<T> interface
18182         on the 2.0 platform.
18183
18184         * class-internals.h (MonoDefaults): Added `generic_array_class'.
18185
18186         * reflection.c (mono_class_bind_generic_parameters): New public
18187         function; similar to mono_reflection_bind_generic_parameters(),
18188         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
18189
18190         * domain.c (mono_init_internal): Try to initialize.
18191         `mono_defaults.generic_array_class' here; this'll only succeed if
18192         we're using the 2.0 corlib.
18193
18194         * icall.c
18195         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
18196         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
18197         (mono_lookup_internal_call): Added support for nested classes.
18198
18199         * loader.c
18200         (mono_get_method_from_token): Set `result->signature->pinvoke' if
18201         we're an interncall and have generic arguments.
18202
18203         * class.c
18204         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
18205         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
18206         instance of System.Array.InternalArray<T> for arrays, so they
18207         implement the generic IList<T> interface.
18208
18209 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
18210
18211         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
18212         (chastamar@yahoo.com). Fixes #75374.    
18213
18214 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
18215
18216         * culture-info-table.h: regenerated.
18217
18218 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18219
18220         * icall.c: handle spaces correctly for base64 strings.
18221
18222 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
18223
18224         * *.c: Kill some warnings.
18225
18226 2005-06-23  Duncan Mak  <duncan@novell.com>
18227
18228         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
18229         that this builds on Solaris 10 (x86).
18230
18231 2005-06-23  Martin Baulig  <martin@ximian.com>
18232
18233         * class.c
18234         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
18235         generic type definitions.
18236
18237 2005-06-23  Martin Baulig  <martin@ximian.com>
18238
18239         Fix #75331.
18240
18241         * metadata.c (mono_class_get_overrides): Renamed to
18242         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
18243         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
18244         pass it to mono_get_method_full().
18245
18246 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
18247
18248         * reflection.c (mono_reflection_create_runtime_class): take the
18249         mono_domain_lock in this method. Prevents deadlocks
18250
18251 2005-06-22  Martin Baulig  <martin@ximian.com>
18252
18253         * loader.c (method_from_methodspec): Fix #75330.
18254
18255 2005-06-22  Martin Baulig  <martin@ximian.com>
18256
18257         * reflection.c (type_get_qualified_name): Use
18258         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
18259         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
18260         argument; use it if we don't have an assembly name.
18261
18262 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
18263
18264         * object.c: In mono_message_init, set "copy out" flag for in
18265         parameters with the [Out] flag.
18266
18267 2005-06-21  Martin Baulig  <martin@ximian.com>
18268
18269         * class.c
18270         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
18271         and MONO_TYPE_PTR.
18272
18273 2005-06-21  Martin Baulig  <martin@ximian.com>
18274
18275         * class.c (mono_class_init): Don't initialize `class->fields' for
18276         generic instances since they're initialized again in
18277         compute_field_layout(). 
18278         (compute_field_layout): Set the field's `generic_info' here; fix
18279         #75320. 
18280
18281 2005-06-21  Martin Baulig  <martin@ximian.com>
18282
18283         * class-internals.h
18284         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
18285
18286         * metadata.c (mono_metadata_generic_method_equal): Also
18287         distinguish the `generic_class'; fixes #75334.
18288
18289 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18290
18291         * domain.c:
18292         * appdomain.c:
18293         * domain-internals.h:
18294         * reflection.c: 'domain_assemblies' field is now protected by its own
18295         lock. Don't call into managed code to run the AssemblyLoad event if we
18296         now there are no registered delegates for it.
18297
18298 2005-06-20  Martin Baulig  <martin@ximian.com>
18299
18300         * class.c (mono_class_is_assignable_from): Use a custom version of
18301         mono_class_has_parent() to make things work for generic instances;
18302         fix #75300.
18303
18304 2005-06-20  Martin Baulig  <martin@ximian.com>
18305
18306         * loader.c (method_from_methodspec): Apply a patch from
18307         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
18308
18309 2005-06-20  Martin Baulig  <martin@ximian.com>
18310
18311         * class.c (mono_class_init): Reverted Zoltan's last change; it
18312         breaks generics.
18313
18314 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
18315
18316         * threads.c (wait_for_tids_or_state_change): Add missing locking.
18317
18318 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18319
18320         * socket-io.c: fix the index in the socket array for writable/error
18321         sockets. Fixes bug #75306.
18322
18323 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
18324
18325         * class.c (mono_class_init): Allow interfaces to have static ctors.
18326
18327 2005-06-17  Martin Baulig  <martin@ximian.com>
18328
18329         * loader.c (method_from_methodspec): Use `context->container' when
18330         parsing the `gmethod->inst'.
18331
18332 2005-06-17  Martin Baulig  <martin@ximian.com>
18333
18334         * class.c (mono_type_get_name_recurse): Don't add the assembly
18335         name for type arguments.
18336
18337 2005-06-15  Martin Baulig  <martin@ximian.com>
18338
18339         * reflection.c (mono_image_get_inflated_method_token): Encode
18340         correct klass; fixes #75260.
18341
18342 2005-06-13 Michal Moskal <malekith@nemerle.org>
18343
18344         * icall.c: Make GetCorrespondingMethod/Constructor take
18345         MonoReflectionMethod method not MonoMethod. Removed
18346         MonoType.GetCorrespondingField, and make
18347         MonoGenericType.GetCorrespondingField take name not
18348         MonoClassField.
18349
18350 2005-06-13  Michal Moskal <malekith@nemerle.org>
18351
18352         * reflection.c (field_encode_signature, encode_locals):
18353          Make sizes of buffers for types larger (for big generic types).
18354          (create_generic_typespec,
18355          mono_reflection_sighelper_get_signature_local,
18356          mono_reflection_sighelper_get_signature_field):
18357          Add asserts for too small buffers.
18358
18359 2005-06-15  Martin Baulig  <martin@ximian.com>
18360
18361         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
18362         if our parent is not a dynamic type.
18363
18364 2005-06-15  Martin Baulig  <martin@ximian.com>
18365
18366         * class-internals.h (MonoTypeNameFormat): New enum.
18367
18368         * class.c
18369         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
18370         (mono_type_get_full_name): Removed.
18371         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
18372         argument instead of the boolean's.
18373
18374         * icall.c (ves_icall_System_MonoType_getFullName):
18375         Added `gboolean assembly_qualified'.    
18376
18377         * reflection.h
18378         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
18379
18380         * reflection.c (mono_reflection_parse_type): Parse the new type
18381         name format.
18382
18383 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18384
18385         * icall.c: no need to convert from utf16 to utf8 and then back again
18386         after the call to GetLogicalDrives.
18387
18388 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18389
18390         * icall.c: frombase64. Fix problems exposed by new tests.
18391
18392 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18393
18394         * icall.c: added internal calls for converting char [] and strings in
18395         base64 into byte [].
18396
18397 2005-06-10  Martin Baulig  <martin@ximian.com>
18398
18399         * class.c (mono_class_create_generic_2): Read the nested classes
18400         from the metadata rather than from `gklass->nested_classes' since
18401         `gklass' might not be initialized yet.
18402
18403 2005-06-09  Duncan Mak  <duncan@novell.com>
18404
18405         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
18406         all public headers. Fixes #74919.
18407
18408 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
18409
18410         * domain.c: The key for proxy_vtable_hash is now a pointer
18411         array. Added new GHashFunc and GCompareFunc functions for this.
18412
18413         * class.h: The list of interfaces in MonoRemoteClass is known in
18414         advance and can't grow (we create a new MonoRemoteClass if needed),
18415         so now the interface array can be allocated together with
18416         MonoRemoteClass.
18417         
18418         * object.c: Added a new method create_remote_class_key.
18419         Fixed mono_remote_class so it does not depend on
18420         mono_upgrade_remote_class.
18421         Removed extend_interface_array.
18422         Added new method clone_remote_class(), which makes a copy of a remote
18423         class and adds a new interface or class to it.
18424         mono_upgrade_remote_class() now creates a new remote class (or gets
18425         it from the cache) if an vtable upgrade is needed. In this way
18426         we make sure that other objects sharing the same remote class
18427         don't get the new vtable with unwanted interfaces.
18428         
18429         * object-internals.h:
18430         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
18431         
18432         * marshal.c: Track changes in mono_upgrade_remote_class().
18433
18434 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
18435         * icall.c: Add runtime methods for obtaining members of inflated
18436         class, which were created from supplied non-inflated members. It
18437         is used in internal Get{Method,Constructor,Field} methods in
18438         System.Type
18439
18440 2005-06-09  Martin Baulig  <martin@ximian.com>
18441
18442         * reflection.c
18443         (mono_reflection_bind_generic_method_parameters): Fix #75169.
18444
18445 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18446         * reflection.c (mono_image_basic_init): Define
18447         Version in MonoDynamicAssembly. 
18448         
18449 2005-06-08  Martin Baulig  <martin@ximian.com>
18450
18451         Fix #75136.
18452
18453         * loader.c
18454         (mono_method_signature_full): New public method; takes a
18455         `MonoGenericContext *'.
18456         (find_method): Use mono_method_signature_full() and pass the
18457         klass'es context to it.
18458
18459         * class.c (mono_class_is_inflated_method): Use
18460         mono_method_signature_full() and pass the context to it.
18461
18462 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
18463
18464         * object.c: add proper locking in mono_remote_class_vtable(),
18465         fixes possible memory corruption.
18466
18467 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
18468
18469         * marshal.c (mono_remoting_marshal_init): set
18470         initialized after initialization.
18471
18472 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
18473
18474         * locales.c : hush.
18475
18476 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
18477
18478         * object.c (extend_interface_array): fix really silly
18479         memory corrupting / comparison bug.
18480
18481 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18482
18483         * reflection.c: Functions added to support the creation
18484         of CustomAttributeData, which includes Attribute data
18485         used by ReflectionOnly methods.
18486
18487         * reflection.h:  mono_reflection_get_custom_attrs_data and
18488          mono_custom_attrs_data_construct added (functions exposed).
18489
18490          * icall.c: Added mono_reflection_get_custom_attrs_data
18491          as icall.
18492         
18493 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
18494
18495         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
18496         lupus's request.
18497
18498 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
18499
18500         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
18501
18502         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
18503         dynamic DllImportAttribute.
18504
18505         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
18506         dynamic DllImportAttribute.
18507
18508         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
18509         Fixes #75162.
18510
18511 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18512
18513         * threads.c: avoid segfault when an unstarted thread is aborted.
18514
18515 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
18516
18517         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
18518         Returns the name and version of the runtime for reporting.
18519
18520 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18521
18522         * appdomain.c: bump corlib version.
18523         * object-internals.h: new field in MonoReflectionAssembly.
18524
18525 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18526
18527         * object-internals.h: Carlos forgot to add this field.
18528
18529 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18530
18531         * icall.c: Added create_version to create instances
18532         of Version of MonoReflectionAssemblyName. This change helps
18533         the AssemblyName tests to keep running fine.
18534         
18535 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
18536   
18537         * object.c (mono_method_return_message_restore): A somehow less
18538         intrusive fix for #75138.
18539
18540 2005-06-03  Raja R Harinath  <rharinath@novell.com>
18541
18542         * object.c (mono_method_return_message_restore): Fix computation
18543         of expected number of out args.
18544
18545 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
18546
18547         * reflection.c (mono_image_get_method_info): Fix the case when the
18548         charset is empty.
18549
18550 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
18551
18552         * object.c: Added missing null check in
18553           mono_method_return_message_restore.
18554
18555 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
18556
18557         * reflection.c (mono_image_get_method_info): Handle the case when
18558         dllentry is empty.
18559
18560 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
18561
18562         * object.c: When creating the vtable for a proxy, take into account
18563         all inherited interfaces, not only the ones registered in
18564         iclass->interfaces. This fixs bug #74996.
18565         Also, in mono_method_return_message_restore, verify that the array
18566         of out args has the expected lengh.
18567
18568 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18569
18570         * socket-io.c: update the timeout in Poll when the call is interrupte.
18571
18572 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18573
18574         * socket-io.c: support abort/suspend in Select_internal after last
18575         change.
18576
18577 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18578
18579         * threadpool.c: remove warning.
18580
18581 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18582
18583         * icall.c:
18584         * socket-io.[ch]: Select_internal uses poll() now when available, thus
18585         removing the 1024 limit from select(). Runtime part of the fix for
18586         bug #71203.
18587
18588 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18589
18590         * socket-io.c: when resolving the addresses for the same
18591         host returned by gethostname(), get the local IPs from the interface
18592         list. Loopback addresses are discarded if the are interfaces up with
18593         non-loopback ones. Fixes bug #63265.
18594
18595 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
18596
18597         * appdomain.c, verify.c, object-internals.h, reflection.c:
18598         bumped corlib number to 36, and added new extra_flags field
18599         to ReflectionMethodBuilder and friends.  Fixes #75060.
18600
18601 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
18602
18603         * gc.c: register a new weak link only if the object is non-null
18604         (fixes bug#75047).
18605
18606 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
18607
18608         * culture-info.h : short time pattern too.
18609
18610 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
18611
18612         * culture-info.h : expand long time pattern string length.
18613
18614 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
18615
18616         * culture-info-table.h : update (more French date format; #72788).
18617
18618 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
18619
18620         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
18621         the method is static. Fixes #75029.
18622
18623 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
18624
18625         * reflection.c: Update the table_idx field of method builders after
18626         saving the module, since it can change. This is a workaround for
18627         bug #74914. 
18628
18629 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
18630
18631         * culture-info-table.h : update (additional French date format).
18632
18633 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
18634
18635         * icall.c (ves_icall_type_Equals): Revert last change.
18636         
18637         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
18638
18639         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
18640
18641 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
18642
18643         * class-internals.h: Added executioncontext_class field to 
18644         MonoDefaults structure.
18645         * domain.c: Cache System.Threading.ExecutionContext class in 
18646         mono_defaults.
18647         * object.c: Capture the ExecutionContext for asynchroneous calls in
18648          mono_async_result_new.
18649         * object-internals.h: Added execution_context and original_context 
18650         fields to MonoAsyncResult. Added execution_context to MonoThread.
18651         * security-manager.c|.h: Added mono_get_context_capture_method to 
18652         return the capture method (if required by the security manager or by
18653         the framework version used).
18654         * threadpool.c: Apply capture (if present) ExecutionContext in 
18655         mono_async_invoke and revert to original context after it completes.
18656
18657 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
18658
18659         * culture-info-table.h : updated (real hacky solution for zh-CHT).
18660
18661 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
18662
18663         * culture-info-table.h : zh-CHT related workaround.
18664
18665 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
18666
18667         * marshal.c (emit_marshal_custom): Add some error checking and call the
18668         methods in the ICustomMarshaler interface. Fixes #74875.
18669         
18670         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
18671         native->managed wrappers.
18672
18673 2005-05-12  Martin Baulig  <martin@ximian.com>
18674
18675         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
18676         here and use the loader lock.
18677
18678         * mono-debug.c: Properly lock when the debugger is not attached.
18679         (mono_debug_init): Release the initial lock if we're not running
18680         in the debugger.
18681
18682 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
18683
18684         * marshal.c (emit_marshal_custom): Pass through NULL values without
18685         calling the custom marshalling routines.
18686
18687         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
18688         conversion in structures. Fixes #74882.
18689
18690 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
18691
18692         * culture-info-table.h : zh-* cultures were missing.
18693
18694 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
18695
18696         * threads.c: Added a new event background_change_event which is signaled
18697         when a thread changes its background mode.
18698         Moved here several checks previously done in managed code. The checks
18699         require the thread lock, and using the thread lock in managed code
18700         can result in deadlocks.
18701         Merged Start_internal and Thread_internal into a single method. Now 
18702         Thread_internal does all work of creating and starting a thread.
18703         Added icalls for setting and getting the state of the object. Moved from
18704         managed code to avoid locking there.
18705         Added wait_for_tids_or_state_change() which is called instad of
18706         wait_for_tids when waiting for non-backround threads to end. This method
18707         will return if one of the threads ends or the background_change_event
18708         is signaled.
18709         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
18710         the background mode. This method signals the background_change_event
18711         event.
18712         * icall.c:
18713         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
18714         removed Start_internal.
18715         
18716 2005-05-11  Martin Baulig  <martin@ximian.com>
18717
18718         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
18719         to order of some fields to get proper alignment on 64-bit machines.
18720
18721 2005-05-11  Martin Baulig  <martin@ximian.com>
18722
18723         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
18724         changes as they're broken and completely fuck up the debugger.
18725
18726         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
18727
18728 2005-05-10  Martin Baulig  <martin@ximian.com>
18729
18730         * reflection.c (mono_reflection_generic_class_initialize): Don't
18731         call mono_class_setup_parent() here.
18732
18733 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18734
18735         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
18736         send/receive timeout use an integer in milliseconds. We were using a
18737         struct timeval.
18738
18739 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18740
18741         * locales.c:
18742         (internal_get_cultures): reserve the first slot of the array for the
18743         InvariantCulture, which will be filled in managed code.
18744
18745 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
18746
18747         * reflection.c (mono_image_fill_module_table): Initialize the
18748         GENERATION field as well.
18749
18750 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18751
18752         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
18753         Monitor.Enter on the object.
18754
18755 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
18756
18757         * threads.c: Enable the wait for running threads when exiting.
18758         * icall.c: Suspend all threads before exiting.
18759
18760 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
18761
18762         * assembly.c (mono_assembly_load_reference): Fix warning.
18763
18764 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18765
18766         * threadpool.c: changed the default number of threads per cpu. From now
18767         on, the default will be 20 + (5 * number of cpus) instead of 50.
18768
18769 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
18770
18771         * loader.c (mono_method_get_signature_full): Add locking here.
18772
18773 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
18774
18775         * appdomain.c: Moved methods for parsing and freeing assembly
18776         names to assembly.c.
18777         * assembly.c, domain-internals.h: Created public methods for parsing
18778         assembly names. Fixed mono_assembly_load_with_partial_name:
18779         it now finds the best match, taking into account the version,
18780         token and culture specified in the partial name. Also return
18781         the latest version if no version information is specified.
18782
18783 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
18784
18785         * threadpool.c: replace check for SocketAsyncCall class.
18786
18787 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18788
18789         * threadpool-internals.h:
18790         * Makefile.am: added threadpool-internals.h
18791
18792         * threadpool.c: call mono_unhandled_exception on exceptions not handled
18793         that happen in threadpool threads (tested on MS).
18794         (mono_thread_pool_remove_socket): new function that dispatch any pending
18795         AIO call on a socket that is closing. By now only epoll really needs it,
18796         as select/poll wake up when the socket closes.
18797
18798
18799         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
18800
18801 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
18802
18803         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
18804
18805 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
18806
18807         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
18808
18809 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
18810
18811         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
18812         has an abort request, convert it into a suspend request.
18813
18814 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
18815
18816         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
18817         warning for the usage of `UnmanagedFunctionPointerAttribute' which
18818         is not supported yet.
18819
18820 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18821
18822         * image.c: register assemblies loaded from data (bundles) in the loaded
18823         assemblies hash. Fixes bug #74772.
18824
18825 2005-04-29  Martin Baulig  <martin@ximian.com>
18826
18827         * class.c (mono_type_get_name_recurse): Update to the new naming
18828         schema from the latest .NET 2.x beta2.
18829         (mono_class_setup_vtable_general): If we're a generic instance,
18830         copy the vtable from our generic type definition and inflate all
18831         the methods in it.
18832
18833         * loader.c (find_method): Update to the new naming schema from the
18834         latest .NET 2.x beta2.
18835
18836 2005-04-29  Raja R Harinath  <harinath@gmail.com>
18837
18838         * class.c (mono_class_init): Add a mono_loader_unlock to the
18839         #74734 fix.
18840
18841 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
18842
18843         * icall.c (ves_icall_System_Environment_Exit): Remove the 
18844         suspend_all_other_threads () call for the time being, since it can hang.
18845
18846         * threads.c (mono_thread_manage): Similarly, disable the waiting for
18847         the background threads to exit, since it can also hang.
18848
18849         * class.c (mono_class_init): Applied patch from Ankit Jain 
18850         (radical@gmail.com). Avoid pending init errors when a field refers
18851         to a nested class using a typeref. Fixes #74734.
18852
18853         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
18854         this for dynamic modules.
18855
18856 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18857
18858         * threads.c: don't wait for threads that are in the process of aborting
18859         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
18860         and waiting for background threads to finish. This makes xsp and
18861         mod-mono-server exit without random length delays and/or hangs.
18862
18863 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18864
18865         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
18866
18867 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
18868
18869         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
18870         dynamic types to prevent infinite loops. Fixes #74727.
18871
18872         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
18873         ..._is_assignable_to.
18874
18875 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
18876
18877         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
18878
18879 2005-04-25  Martin Baulig  <martin@ximian.com>
18880
18881         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
18882
18883         * domain.c
18884         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
18885
18886         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
18887
18888         * reflection.c (build_compressed_metadata): Set metadata header
18889         version to 2.0.
18890
18891 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
18892
18893         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
18894         number into an integral and a decimal part. Fixes #70473.
18895
18896         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
18897
18898 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
18899
18900         * culture-info-table.h : reflected the latest locale-builder output.
18901
18902 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18903
18904         * threadpool.c: check for SuspendRequested too when deciding if
18905         mono_thread_interruption_checkpoint should be called.
18906
18907 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18908
18909         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
18910         * threads.c: remove interruption_mutex and use Interlocked instead. When
18911         suspending all the threads, wait for all the suspended events at once.
18912         If we're shutting down and get an APC that is going to be queued,
18913         call mono_thread_execute_interruption immediately, as the thread might
18914         be sleeping on a pthread condition or mutex.
18915
18916         * icall.c: call mono_runtime_set_shutting_down before suspending the
18917         threads.
18918
18919         Fixes bug #74693. And now xsp is happier when exiting.
18920
18921 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
18922
18923         * loader.c (mono_stack_walk): Fix #74690.
18924
18925 2005-04-22  Martin Baulig  <martin@ximian.com>
18926
18927         * mono-debug.h (MonoDebugMethodJitInfo): Added
18928         `MonoDebugMethodJitInfo *jit'.
18929
18930         * mono-debug.c (mono_debug_read_method): Cache the
18931         MonoDebugMethodJitInfo in `address->jit'.
18932         (mono_debug_free_method_jit_info): New public method.
18933
18934 2005-04-22  Martin Baulig  <martin@ximian.com>
18935
18936         * class.c (mono_class_is_assignable_from): Disallow
18937         type parameter -> interface.
18938
18939 2005-04-21  Dick Porter  <dick@ximian.com>
18940
18941         * threads.c (mono_thread_create): Turn an assertion into an error.
18942
18943 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
18944
18945         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
18946         
18947         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
18948         Fix some gcc 4.0 warnings.
18949
18950 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
18951
18952         * file-io.c: fix alt dir separator char on unix systems
18953         and cleanup (fixes bug #71214).
18954
18955 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
18956
18957         * marshal.c: Use CALLVIRT instead of CALL when dispatching
18958         a call to a remote domain, since the method may be an
18959         interface method in the client domain. This fixes bug #74192.
18960
18961 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18962
18963         * threadpool.c: recv/send are now performed before going back to managed
18964         code to save one transition.
18965
18966 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18967
18968         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
18969
18970         * metadata/threadpool.c: removed hack to workaround the bug above.
18971
18972         Fixes bug #74618.
18973
18974 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
18975
18976         * reflection.c reflection.h: Fix handling of parameter defaults in
18977         dynamic methods. Also fixes handling of parameter attributes.
18978         Fixes #74609.
18979
18980         * mono-debug.c (mono_debug_close_image): Fix warning.
18981
18982 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18983
18984         * socket-io.h: replaced old unused field with new 'blocking'.
18985         * threadpool.c: restore socket blocking state on windows(tm).
18986
18987 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
18988
18989         * icall.c: don't return the codebase in the AssemblyName[] returned by
18990         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
18991         * object-internals.h: Removed FIXME (fields were presents) and fixed
18992         versioncompat declaration.
18993
18994 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18995
18996         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
18997         not closed, so don't cleanup when it happens.
18998
18999 2005-04-13  Chris Toshok  <toshok@ximian.com>
19000
19001         * mono-debug-debugger.h: change prototype for
19002         mono_debugger_lookup_type.
19003
19004         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
19005         this function, although it should probably be named
19006         mono_debugger_init_type.
19007
19008 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19009
19010         * threadpool.c: fix non-AIO case.
19011
19012 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
19013
19014         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
19015         the built-in profiler to measure just JIT compilation times.
19016
19017 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19018
19019         * threadpool.c: the epollfd might be closed by another thread at
19020         any time, so ignore EBADF at treat it as a "we're closing" sign.
19021
19022 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19023
19024         * threadpool.c: release the semaphores with a count equals to the number
19025         of working threads in both IO and regular pools. Fixed typo that messed
19026         up the count of IO pool threads. Don't initialize the pipe handles if
19027         we're using epoll.
19028
19029 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19030
19031         * threadpool.c: some systems don't like a NULL when deleting the socket
19032         from epoll.
19033
19034 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19035
19036         * threadpool.c: fix semaphore allocation.
19037
19038 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19039
19040         * threadpool.c: added epoll() based implementation for asynchronous IO
19041         that is used instead of the default poll() when available.
19042         It can be disabled by setting MONO_DISABLE_AIO.
19043
19044 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19045
19046         * threadpool.c: windows needs 'closesocket' and instead of returning
19047         0 when the stream is closed while in select, it returns -1. Fixes bug
19048         #74573.
19049
19050 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
19051
19052         * class.c (class_compute_field_layout): Fix the regression caused by
19053         the previous try.
19054
19055 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19056
19057         * threadpool.c: separate pool for socket async. IO.
19058         * threadpool.h: mono_max_worker_threads is not a global any more.
19059
19060 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
19061
19062         * class.c (class_compute_field_layout): Fix #74549.
19063
19064 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19065
19066         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
19067         use 2 connected sockets instead.
19068
19069 2005-04-08  Miguel de Icaza  <miguel@novell.com>
19070
19071         * mono-config.c: Add new entry point for mkbundle
19072         mono_config_parse_memory. 
19073
19074 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19075
19076         * threadpool.c: removed another unused function.
19077
19078 2005-04-08  Ankit Jain  <radical@corewars.org>
19079
19080         * reflection.c (get_default_param_value_blobs): Add 'types'
19081         parameter to get the types encoded in the constant table.
19082         (mono_param_get_objects): Use the type from the constant table,
19083         not the type of the parameter, when creating default values.
19084         Handle null default values correctly.
19085
19086 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19087
19088         * file-io.c:
19089         * file-io.h:
19090         * threadpool.c:
19091         * threadpool.h:
19092         * icall.c:
19093         * socket-io.c: removed dead code for async IO.
19094
19095 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19096
19097         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
19098
19099         * threadpool.c: intercept socket async. calls and pass them to a thread
19100         that is polling and dispatching the job items to the threadpool as
19101         socket become ready. Fixes bugs #71217, #71933.
19102
19103         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
19104         between char and short/ushort arrays.
19105
19106         * socket-io.c: remove dead code.
19107
19108 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
19109
19110         * locales.c,
19111           icall.c : removed InternalToUpper_Comp() and
19112           InternalToLower_Comp().
19113
19114 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
19115
19116         * char-conversions.h : The tables were incorrectly generated. Should
19117           be generated against invariant culture.
19118
19119 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
19120
19121         * object.c (mono_runtime_invoke_array): Fix return value when 
19122         passing pre-created valuetype objects to ctors.
19123
19124         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
19125         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
19126         Fixes #74338.
19127
19128 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
19129
19130         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
19131         only used with --security and hides the wrong corlib version error.
19132
19133 2005-03-30  Joshua Tauberer  <tauberer@for.net>
19134
19135         * class.c: Changed mono_class_name_from_token so that types
19136         outside of a namespace don't have an initial period.  Improved
19137         the g_warning message used in _mono_class_get when loading
19138         fails.
19139         * assembly.c: In mono_assembly_load_reference, when an assembly
19140         can't be found, "No such file or directory" is misleading and
19141         unhelpful because a few paths were checked for the presence of
19142         the assembly.  When that happens (ENOENT), display a nicer
19143         message indicating the directories that were searched.  In all
19144         cases, the warning is made easier to read for non-hackers.
19145
19146 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
19147
19148         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
19149         project/solution.
19150         * appdomain.h|domain.c: Removed inline from functions.
19151         * appdomain.c: Reduced warnings when compiling on windows.
19152         * icall.c: Fixed output_debug declaration to gunichar2*.
19153         * mono-config.c: Reduced warnings when compiling on windows.
19154         * rand.c: Added missing "windows.h". Added missing return value.
19155         * rawbuffer.c: Added missing winsock2.h for windows.
19156         * sysmath.h: Added mono-compiler.h header to allow/ease 
19157         compilation with non-GCC compilers.
19158         * threads.c: Fixed declarations to compile with VS.NET C compiler.
19159         Removed cast warnings.
19160
19161         Adapted from the work of J Lothian (for VC6).
19162
19163 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
19164
19165         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
19166         from default_path.
19167
19168 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
19169
19170         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
19171         the 2.0 profile.
19172
19173 2005-03-27  Raja R Harinath  <harinath@gmail.com>
19174
19175         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
19176         has to be in $(exec_prefix).  $(prefix) is for arch-independent
19177         stuff, and it would probably use $(prefix)/share rather than
19178         $(prefix)/lib.
19179
19180 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19181
19182         * console-io.c: added 2 includes that might be missing.
19183
19184 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
19185
19186         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
19187         profile.
19188
19189         * reflection.c (create_custom_attr): Allocate the params array using
19190         alloca so it gets GC tracking.
19191
19192 2005-03-23  Chris Toshok  <toshok@ximian.com>
19193
19194         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
19195         out some spew.
19196
19197 2005-03-24  Raja R Harinath  <rharinath@novell.com>
19198
19199         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
19200         changes to pick up any changes in prefix, etc.
19201
19202 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
19203
19204         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
19205         
19206         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
19207         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
19208
19209 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
19210
19211         * class-internals.h object-internals.h class.c reflection.c: Extend the
19212         mono_lookup_dynamic_token () function to return the class of the
19213         token as well. 
19214
19215         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
19216         well. Fixes #73848.
19217
19218 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
19219
19220         * security-manager.c: Skip inheritance checks for intra-corlib
19221         class inheritance and method overrides. This skips a lot of checks
19222         and (anyway) permissions cannot work until corlib is loaded.
19223
19224 2005-03-23  Martin Baulig  <martin@ximian.com>
19225
19226         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
19227         MONO_TYPE_GENERICINST.  
19228
19229 2005-03-23  Martin Baulig  <martin@ximian.com>
19230
19231         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
19232
19233 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
19234
19235         * class.c: added locking comments to some functions.
19236         Cache the interface offsets arrays (saves about 20 KB
19237         of runtime memory in a typical app).
19238         Reduce the time overhead in mono_class_setup_supertypes ().
19239
19240 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
19241
19242         * icall.c: speedup and fix leaks in GetMethodsByName and
19243         GetPropertiesByName.
19244
19245 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
19246
19247         * reflection.c: some locking fixes.
19248
19249 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
19250
19251         * metadata.c: added missing break in case statement.
19252
19253 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
19254
19255         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
19256         typedbyref return values. Fixes #73941.
19257
19258 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
19259
19260         * security-manager.c|h: Added demandunmanaged method and 
19261         suppressunmanagedcodesecurity class to MonoSecurityManager.
19262         Renamed aptc class to allowpartiallytrustedcallers.
19263
19264 2005-03-17  Martin Baulig  <martin@ximian.com>
19265
19266         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
19267
19268 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19269
19270         * file-io.c: disabled file async. IO using aio_*. It uses the
19271         threadpool now. Workaround for bug #73718.
19272
19273 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
19274
19275         * assembly.h, mono-config.c: added code to deal with bundled configs
19276         for bundled assemblies.
19277
19278 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
19279
19280         * *.c, private.h: cleanup, removing old private.h header file.
19281
19282 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
19283
19284         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
19285         and throw_on_unmappable_char attributes.
19286
19287 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
19288
19289         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
19290         _ProcessName_internal.
19291
19292 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
19293
19294         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
19295         #73631.
19296
19297         * icall.c threads.c threads-types.h: Remove slothash icalls as they
19298         are no longer used.
19299
19300 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
19301
19302         * object.c (compute_class_bitmap): Add support for generics. Fixes
19303         #73527.
19304
19305 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
19306
19307         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
19308
19309 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19310
19311         * filewatcher.c: commented out the code for windows watcher, as we don't
19312         use it (we use the managed implementation instead).
19313
19314 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
19315
19316         * object-internals.h (MonoThread): Remove 'unused1' field.
19317
19318         * appdomain.c: Bump corlib version.
19319
19320         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
19321
19322         * reflection.c (mono_reflection_create_runtime_class): Remove the
19323         AssemblyBuilder.Save optimization since it causes too many problems.
19324
19325 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
19326
19327         * exception.c|h: Added mono_get_exception_reflection_type_load to
19328         create a ReflectionTypeLoadException object.
19329         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
19330         to return NULL is a InheritanceDemand fails during reflection. Updated
19331         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
19332         ReflectionTypeLoadException if an InheritanceDemand fails during 
19333         reflection. Added icall mapping for GetLinkDemandSecurity.
19334         * security-manager.c|h: Added ves_icall_System_Security_
19335         SecurityManager_GetLinkDemandSecurity internal call to return the
19336         class and methods permissions set for a LinkDemand. Removed unused
19337         fields in MonoSecurityManager.
19338
19339 2005-03-10  Martin Baulig  <martin@ximian.com>
19340
19341         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
19342         it's a generic instance.
19343
19344 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
19345
19346         * reflection.c (mono_get_object_from_blob): Applied patch from
19347         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
19348
19349         * class.c (mono_class_is_assignable_from): Another try at fixing 
19350         #73469 without breaking anything.
19351
19352 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
19353
19354         * class.c: (mono_class_is_assignable_from): Revert the last changes
19355         since they don't work with generics.
19356         
19357         * class.c (mono_class_is_assignable_from): Fix build bustage.
19358
19359         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
19360         the managed IsAssignableFrom method. Fixes #73469.
19361
19362         * reflection.c (mono_reflection_call_is_assignable_from): New helper
19363         function.
19364
19365 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
19366
19367         * object.c (mono_load_remote_field_new): Fix returning uninitialized
19368         memory when the remoting callback does not sets the out arguments.
19369         Fixes #73007.
19370
19371         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
19372         by mistake.
19373
19374         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
19375
19376         * object-internals.h (MonoStackFrame): Sync with managed object layout.
19377
19378         * appdomain.c: Bump corlib version.
19379
19380 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
19381
19382         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
19383         function.
19384
19385         * threads.c (mono_thread_attach): Detect threads which are not started
19386         by the GC pthread wrappers.
19387
19388 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
19389
19390         * icall.c: Added new icall for RNG.
19391         * rand.c|h: Added new icall to open the RNG. This allows to share a 
19392         single handle on Linux to access /dev/urandom and fix #73183.
19393
19394 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
19395
19396         * object.c: setting the new vtable in a transparent proxy object must
19397         not change the GC descriptor.
19398
19399 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
19400
19401         * object.c: fixed compilation without GCJ support.
19402         * reflection.c: for runtime-created types ensure klass->has_references
19403         is correct (bug #73215).
19404
19405 2005-03-02  Martin Baulig  <martin@ximian.com>
19406
19407         * class.c (mono_class_is_assignable_from): Make this work if
19408         `oklass' is a generic instance; fixes #72831.
19409
19410 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
19411
19412         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
19413         with hasthis set.
19414         
19415         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
19416
19417         * marshal.c: Reorganize native->managed marshalling code to also use
19418         the emit_marshal_... functions.
19419
19420 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
19421
19422         * object.c: typed allocs have issues with bitmap sizes > 30,
19423         so check for max_set >= 30.
19424
19425 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
19426
19427         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
19428         managed code. Fixes #73012.
19429
19430         * metadata.h (MonoMarshalSpec): Add elem_mult field.
19431
19432         * metadata.c reflection.c: Load/Emit elem_mult as well.
19433         
19434         * metadata.h (MonoMarshalSpec): Add comment.
19435
19436         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
19437
19438         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
19439         num_elem to -1 if not given.
19440
19441         * object-internals.h (MonoReflectionMarshal): Add has_size field.
19442
19443         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
19444         given values.
19445
19446 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
19447
19448         * null-gc.c (mono_gc_free_fixed): Was not compilable.
19449
19450 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
19451
19452         * reflection.c (encode_marshal_blob): Encode param_num field as well.
19453
19454         * object-internals.h (MonoReflectionMarshal): Add param_num field.
19455
19456 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
19457
19458         * object.c: generalized the reference bitmap creation
19459         and added hooks for the new GC.
19460         * class-internals.c: removed the gc_bitmap field from MonoClass.
19461
19462 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
19463
19464         * domain.c: help the compiler to produce better code
19465         in mono_jit_info_table_find ().
19466
19467 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
19468
19469         * object.c: make all allocations look typed.
19470
19471 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
19472
19473         * socket-io.c: load Mono.Posix if it's not loaded already
19474         (fixes bug#73033).
19475
19476 2005-02-24  Martin Baulig  <martin@ximian.com>
19477
19478         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
19479         * reflection.c (dup_type): Likewise.
19480
19481 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
19482
19483         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
19484         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
19485
19486 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
19487
19488         * domain.c, threads.c, object-internals.h: make the critical thread
19489         local vars use the fast access mode (even when we're compiled in
19490         a lib). Provide accessors to be used by the jit during codegen.
19491
19492 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19493
19494         * appdomain.c: Changed hook functios behavior to include
19495         support for the reflection only assemblies. Some icalls were changed
19496         to support the mentioned assemblies too. Signatures of static methods
19497         try_assembly_resolve and real_load now have an additional parameter:
19498         refonly.
19499
19500         * assembly.c: General changes to mono_assembly_ methods to support
19501         reflection only api. Functions mono_assembly_open, mono_assembly_load,
19502         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
19503         suffix, to support an additional gbool parameter to specify whether
19504         the assembli is reflection only or not. Created some new hook functions 
19505         to add support for reflection only assemblies. Signatures of static 
19506         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
19507         have now an additional parameter: refonly.
19508
19509         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
19510         indicating whether the assembly is reflection only or not.
19511
19512         * exception.c: Add mono_get_exception_invalid_operation.
19513
19514         * icall.c: Throw an InvalidOperationException when trying to invoke
19515         a property/method/event, or trying to set/get the value of a field.
19516         Also add an icall to retrieve the ref_only flag to the
19517         MonoReflectionAssembly.
19518
19519 2005-02-23  Chris Toshok  <toshok@ximian.com>
19520
19521         Part of fix for #72827.
19522         * mono-debug.c (mono_debug_add_method): add lexical block data to
19523         the info we write.  Kind of a hack at the moment - we copy the
19524         lexical block info from the MonoDebugMethodInfo to the
19525         MonoDebugMethodJitInfo here, before writing it.
19526         (mono_debug_read_method): read the lexical block info.
19527
19528         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
19529
19530         * debug-mono-symfile.h: add lexical block support.
19531
19532         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
19533         support.
19534
19535 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
19536
19537         * loader.c (mono_lookup_pinvoke_call): Fix warning.
19538
19539         * object.c (mono_runtime_free_method): Call mono_free_method () and
19540         put the TODOs there.
19541
19542         * loader.c (mono_free_method): Free up most memory allocated for 
19543         dynamic methods.
19544
19545 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
19546
19547         * reflection.c: properly flag a Type argument to a
19548         named custom attr value (bug #72248).
19549
19550 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
19551
19552         * reflection.c: reduce code duplication in named custom
19553         attribute encoding.
19554
19555 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
19556
19557         * reflection.c: properly encode custom attrs of type object
19558         (bug #72649).
19559
19560 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
19561
19562         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
19563
19564 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
19565
19566         * socket-io.c: load System.dll if it's not loaded already
19567         (bug #72850 and #70477).
19568
19569 2005-02-21  Martin Baulig  <martin@ximian.com>
19570
19571         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
19572         generic instances.
19573
19574 2005-02-21  Martin Baulig  <martin@ximian.com>
19575
19576         * reflection.c (mono_image_build_metadata): We also need to
19577         "fixup" the MethodImpl table after we computed the final method
19578         indices.  Call fixup_methodimpl() to do that.
19579         (fixup_methodimpl): New private method.
19580
19581 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
19582
19583         * assembly.c: special case mscorlib.dll (bug#72536),
19584         patch from Carlos Alberto Cortez.
19585
19586 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
19587
19588         * threads-types.h threads.c: Fix build bustage.
19589
19590         * threads.c: Use a union for long<->double conversions.
19591
19592         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
19593         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
19594
19595         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
19596         containing the checkpoint call with NOT_TAKEN.
19597         
19598         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
19599         checkpoint before pushing the arguments, so they won't have to be
19600         spilled to stack.
19601
19602 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
19603
19604         * domain.c, assembly.c, domain-internals.h: make some data
19605         const and relocation-free.
19606
19607 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
19608
19609         * object.c, appdomain.c, class-internals.h: introduce the
19610         MonoClassRuntimeInfo structure to hold the info needed to
19611         use a class at runtime. Made mono_class_vtable() lock-free
19612         for all the appdomains.
19613
19614 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
19615
19616         * metadata-internals.h, image.c: introduce a per-image mempool to
19617         be used for memory that has the same lifetime as the image.
19618
19619 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
19620
19621         * domain.c: In mono_init_internal(), instead of selecting the first
19622         runtime version supported by an executable, get a list of all
19623         supported versions and select the one for which an mscorlib exists
19624         (since even if the runtime supports a given version, it doesn't mean
19625         that the framework for that version is installed).
19626         Modified get_runtimes_from_exe to support this behavior.
19627         In supported_runtimes, added information about additional system
19628         assembly versions.
19629         
19630         * assembly.c: Added support for more than one system assembly version
19631         per runtime version. Updated the assembly list.
19632         In mono_assembly_remap_version, removed the initial version check,
19633         since we don't know to which version we need to compare until we
19634         get the version set on which the assembly is based.
19635         Moved the code for loading corlib into the new method
19636         mono_assembly_load_corlib(), so it can be used by the initialization
19637         code.
19638         
19639         * domain-internals.h: Updated data structures and added declaration
19640         for mono_assembly_load_corlib.
19641
19642 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
19643
19644         * reflection.c (resolve_object): Fix the creation of the signature in 
19645         the SignatureHelper case.
19646
19647         * assembly.c (mono_assembly_remap_version): Fix binary search.
19648         
19649 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
19650  
19651         * class.c: Added inheritance check when a method is overloaded (from a
19652         virtual method or when implementing an interface) and when a class is
19653         inherited. Added functions to set a failure for a class and to 
19654         retreive the exception from a failure.
19655         * class-internals.h: Added fields to MonoClass to keep the exception
19656         information status for inheritance (or other exceptions) to be thrown
19657         later (i.e. not at load time).
19658         * object.c: Throw the inheritance SecurityException when a type is to 
19659         be created with either class or method inheritance violations.
19660         * reflection.c|h: Fix when getting declsec from a class. Removed 
19661         unrequired code for class. Improved sanity in parameter naming.
19662         * security-manager.c|h: Added functions to check for class and method
19663         inheritance.
19664
19665 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
19666
19667         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
19668         and has_finalize in dynamic types as well.
19669
19670 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
19671
19672         * culture-info-table.h : fixed currency format for en-GB (and so on).
19673
19674 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
19675
19676         * gc.c: ensure the GC handles never have 0 as a value.
19677
19678 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
19679
19680         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
19681         a pointer to a struct to unmanaged code. Fixes #72625.
19682
19683 2005-02-16  Martin Baulig  <martin@ximian.com>
19684
19685         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
19686
19687 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
19688
19689         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
19690
19691 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
19692
19693         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
19694
19695         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
19696         UnmanagedFunctionPointerAttribute, use it for determining calling convention
19697         etc. Fixes #71471.
19698
19699         * reflection.c (mono_custom_attrs_get_attr): New helper function.
19700
19701         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
19702
19703 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
19704
19705         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
19706         changes to make the current context a field in MonoThread.
19707
19708 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
19709
19710         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
19711         the last change.
19712         
19713         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
19714         extracted from mono_marshal_get_native_wrapper.
19715
19716         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
19717         to create wrappers around native functions.
19718
19719         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
19720         delegates for arbitrary function pointers. Fixes #71472.
19721
19722 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
19723
19724         * threads.c: cleaned up the code a little.
19725
19726 2005-02-15  Martin Baulig  <martin@ximian.com>
19727
19728         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
19729         the data table.
19730
19731         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
19732         allocate larger chunks if needed.
19733
19734 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
19735
19736         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
19737         in by mistake.
19738
19739 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
19740
19741         * domain.c: keep the domains in an array and ensure the domain ids
19742         are kept small, so they can be used as indexes to domain-specific data
19743         with a small memory overhead.
19744
19745 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
19746
19747         * icall.c: Handle byref types in Type icalls. Fixes #72544.
19748
19749 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
19750
19751         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
19752
19753 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
19754
19755         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
19756
19757         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
19758         values.
19759
19760         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
19761         
19762 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
19763
19764         * domain-internals.h: add the hashtable here.
19765
19766         * class-internals.h: Remove `info' from MonoMethod
19767
19768         * domain.c: Add a new hashtable, jit_trampoline_hash
19769
19770 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
19771
19772         * object.c: don't set the value of static fields
19773         (fixes bug#72494).
19774
19775 2005-02-11  Martin Baulig  <martin@ximian.com>
19776
19777         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
19778         (mono_debug_add_method): Silently ignore the method if it's too big.
19779         (mono_debug_add_type): Likewise.
19780
19781 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
19782
19783         * threads.c, appdomain.c: remove #ifdefs from the code.
19784
19785 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
19786
19787         * metadata-internals.h: Added flags to MonoAssembly to cache the most
19788         common security informations. This allows us to stay in unmanaged code
19789         when doing LinkDemand and it's special cases (except for the first 
19790         time for initialization). The flags a very much used with --security.
19791         * reflection.c|h: Added code to get declarative security attributes 
19792         for LinkDemand and InheritanceDemand. This required to refactor the
19793         existing code for Demand.
19794         * security-manager.c|h: Added new method fields for the special cases
19795         of LinkDemand.
19796
19797 2005-02-10  Martin Baulig  <martin@ximian.com>
19798
19799         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
19800         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
19801
19802 2005-02-10  Martin Baulig  <martin@ximian.com>
19803
19804         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
19805         debugging code; this is almost a complete rewrite.
19806
19807         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
19808
19809 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
19810
19811         * domain.c, object.h: expose mono_string_equal () and 
19812         mono_string_hash ().
19813         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
19814         it's implemented in managed code.
19815
19816 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
19817
19818         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
19819         lo leak objects between appdomains.
19820
19821 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
19822
19823         * assembly.c: old compilers compilation fix from 
19824         robertj@gmx.net (Robert Jordan).
19825
19826 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
19827
19828         * class-internals.h: Little reminder for the future.
19829
19830         * debug-helpers.c: Fix up wrapper_type_names
19831
19832 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
19833
19834         * image.c, metadata-internals.h: when loading an image from a file,
19835         mmap all of it and use the same codepaths as when using a
19836         in-memory image: the code is simpler and we use less memory
19837         (both writable and readonly).
19838
19839 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
19840
19841         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
19842         API to alloc runtime data structures that need to be tracked by the
19843         GC and contain pointers.
19844         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
19845         make the code more readable and eventually use a different GC.
19846
19847 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
19848
19849         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
19850         for out arguments.
19851         
19852 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
19853
19854         * object.c: In release_type_locks(), don't release the cctor lock
19855         if it has already been released. This fixes a crash in the
19856         thread5 test.
19857
19858 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
19859
19860         * gc.c, marshal.c, icall.c: register a delegate for finalization
19861         only when the native function pointer has been allocated for it.
19862
19863 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
19864
19865         * object.c: cleaned up some code, allocate objects that are
19866         pointer free with the atomic malloc variant. Allocate memory
19867         for static data from the mempool if it's pointer-free.
19868         Allocate the bounds array at the end of the array data, when needed.
19869         * object-internals.h, object.h: move a private function in a private
19870         header.
19871         * class.c: handle missing case in tracking references in fields.
19872
19873 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
19874
19875         * class.c, class-internals.h: keep track if a type has
19876         reference fields in either the instance or static fields.
19877
19878 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
19879
19880         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
19881         and renamed to MonoRuntimeInfo. Added fields to store the expected
19882         framework assembly version. Changed mono_get_framework_version and
19883         mono_get_runtime_version for a single mono_get_runtime_info method.
19884         
19885         * assembly.c: Added method to remap system assembly versions to the
19886         current executing runtime version. Removed old mapping code.
19887         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
19888         
19889         * icall.c, reflection.c: Track api changes.
19890
19891 2005-02-06  Miguel de Icaza  <miguel@novell.com>
19892
19893         * loader.c (method_from_memberref): Improve error reporting,
19894         produce the class name instead of the typeref/typedef index. 
19895
19896 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
19897
19898         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
19899
19900 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
19901
19902         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
19903         stdcall and charset name mangling.  Reorganize the code and add
19904         some tracing stuff.
19905
19906 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
19907
19908         * monodiet.c: More iters!
19909
19910         * marshal.c: Iter usage.
19911
19912         * icall.c: Iter usage.
19913
19914         * object.c: Use iters.
19915
19916         * debug-helpers.c: More iters
19917
19918 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
19919
19920         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
19921         under win32.
19922
19923 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
19924
19925         * mono-debug-debugger.c: use iters
19926
19927         * class.c, class-internals.h: mono_class_setup_events is static
19928         now
19929
19930         * All callers: use iters
19931
19932 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
19933
19934         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
19935         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
19936
19937 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
19938
19939         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
19940
19941         * marshal.h: Add prototypes for ldfld/stfld_remote.
19942
19943         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
19944         this is called during startup.
19945         
19946 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
19947
19948         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
19949         MonoThreadsSync struct private in monitor.c. Changed the way
19950         MonoThreadsSync is allocated so it's faster and there is no
19951         need to keep track of it with a finalizer and it uses less memory.
19952         This also finally allows us to allocate mono objects as ptrfree when
19953         there are no reference fields.
19954
19955 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
19956
19957         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
19958         disappearing link to the GC interface and use them to simplify
19959         the gchandles code.
19960
19961 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
19962
19963         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
19964         stfld_remote which call mono_load/store_field_new. This allows methods
19965         calling ldfld/stfld wrappers to be AOTed.
19966
19967         * console-io.c: Include sys/filio.h under solaris.
19968         
19969         * console-io.c: Include curses.h if needed correctly.
19970
19971 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
19972         
19973         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
19974         method->klass as well.
19975
19976         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
19977
19978         * class.c (mono_class_init): Switch on lazy initialization of 
19979         methods.
19980
19981         * class.c (mono_class_get_finalizer): Handle the case when the 
19982         finalizer is inherited.
19983
19984 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19985
19986         * console-io.c: <curses.h> is needed by term.h on solaris.
19987
19988 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
19989
19990         * icall.c, class-internals.h, monodiet.c, class.c: Remove
19991         mono_class_setup_properties where possible. Remove this ftn from
19992         the header file, and make it static.
19993
19994 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
19995
19996         * loader.c: Add missing setup_... call.
19997
19998         * class.c: Add missing setup_... calls.
19999
20000         * class.c (mono_class_init): Switch on lazy initialization of 
20001         the generic vtable.
20002         
20003         * class.c (mono_class_init): Fix generics broken by the recent changes.
20004
20005         * monodiet.c (handle_type): Add missing setup_... calls.
20006
20007         * class.c: Back out garbage in previous patch.
20008         
20009         * class.c: Add missing setup_... calls.
20010
20011         * class.c (mono_class_get_method_from_name_flags): Avoid calling
20012         mono_class_setup_methods () if possible.
20013
20014         * class-internals.h (MonoClass): Add 'has_cctor' flag.
20015
20016         * class-internals.h (MonoCachedClassInfo): New structure.
20017
20018         * class.c: Initialize properties and events fields of MonoClass lazily.
20019
20020         * class.c: Add infrastructure for lazily initializing the methods and
20021         vtable fields of MonoClass. Not yet used.
20022
20023         * class.c (mono_class_get_finalizer): New helper function.
20024
20025         * class.c: Add infrastructure for loading some class related data from
20026         an AOT file.
20027
20028         * object.c: Add infrastructure for initializing the vtable from data
20029         in the AOT file.
20030
20031         * gc.c (run_finalize): Use mono_class_get_finalizer ().
20032
20033         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
20034         appropriate initialization function before accessing parts of the
20035         MonoClass structure.
20036
20037         * marshal.c: Fix warnings.
20038         
20039         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
20040
20041         * mono-debug-debugger.c (get_exception_message): Use 
20042         mono_class_get_method_from_name_flags ().
20043
20044 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
20045
20046         * reflection.c, appdomain.c: Replace a few manual searches that
20047         Zoltan missed. (Paolo approved this part of my initial patch).
20048
20049 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
20050
20051         * profiler.c: disable recording statistical events at report time.
20052
20053 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20054
20055         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
20056         to byteswap arrays of enum values, too (bug #72080).
20057
20058 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
20059
20060         * appdomain.c (set_domain_search_path): Allow this to be called if
20061         domain->setup is not yet set.
20062
20063         * loader.c (mono_method_get_index): New helper function.
20064
20065         * loader.c reflection.c: Use mono_method_get_index ().
20066
20067         * class.c (mono_class_get_method_from_name_flags): New helper method.
20068
20069         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
20070         this.
20071
20072         * class.c (mono_class_get_cctor): New helper method.
20073
20074         * string-icalls.c object.c class.c marshal.c reflection.c: Use
20075         mono_class_get_method () to look up methods.
20076
20077 2005-02-01  Miguel de Icaza  <miguel@novell.com>
20078
20079         * console-io.c: Fix the build, this should work on Windows.
20080
20081 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
20082
20083         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
20084         be set to null to keep things valid
20085
20086 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20087
20088         * icall.c: added Console 2.0 icalls.
20089         * Makefile.am: added console-io.[ch]
20090         * console-io.[ch]: internal calls for Console 2.0 API.
20091
20092 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20093
20094         * class.c: make sure we consider all the interfaces
20095         when calculating max_interface_id (bug found by
20096         Jeroen Frijters running ikvm).
20097
20098 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
20099
20100         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
20101         valuetype fields to null.
20102
20103         * object.c (set_value): Ditto. Fixes #71669.    
20104
20105 2005-01-31  Martin Baulig  <martin@ximian.com>
20106
20107         * metadata.c (mono_metadata_has_generic_params): New public
20108         function; checks whether something is a generic method.
20109
20110 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
20111
20112         * appdomain.c: fix infinite recursion when adding assemblies.
20113
20114 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
20115
20116         * object.c: Fix small typo to return all items for Environment.
20117         GetCommandLineArgs.
20118
20119 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20120
20121         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
20122         reflection.c: more domain and assembly-unload related fixes
20123         and memory leaks plugs.
20124
20125 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
20126
20127         * 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.
20128
20129 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
20130
20131         * loader.c (mono_method_signature): Make this method lazy
20132         (mono_get_method_from_token): Don't computate the signature here.
20133
20134         Doing this saves quite a bit of memory. I got 90 kb on starting up
20135         monodoc. It should also save some disk reads on startup.
20136
20137         * *: MonoMethod->signature might be NULL now. You *MUST* use
20138         mono_method_signature.
20139
20140 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
20141
20142         * object.c (mono_runtime_get_main_args): Return an array from the
20143         current domain here. Fixes #71938.
20144
20145 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
20146
20147         * monitor.c: formatting changes to comply with the
20148         mono coding style and remove #ifdefs from the code.
20149
20150 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
20151
20152         * metadata.c, private.h: remove some unneeded data
20153         and use a more compact representation for table schemas.
20154
20155 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
20156
20157         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
20158         to get a better distribution in hash tables.
20159         * *.c: use mono_aligned_addr_hash() where appropriate.
20160         * assembly.c: make var static.
20161
20162 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
20163
20164         * domain-internals.h: Put MonoJitInfo on a diet.
20165
20166         * domain.c: Fix a warning.
20167
20168 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20169
20170         * gc.c: rework the gc handles code to reuse handles
20171         when freed.
20172
20173 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
20174
20175         * domain.c: fixed long standing bug in mono_string_equal() which
20176         was brought to light with the ldstr changes.
20177
20178 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
20179
20180         * reflection.c: Remove warning by adding missing include for marshal.h
20181
20182 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20183
20184         * domain.c, object.c: change the ldstr_table to hold
20185         MonoString* as keys: makes the runtime isinterned lookup
20186         faster and simplifies memory management.
20187
20188 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
20189  
20190         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
20191         possible to add imperative security checks before calling the icall.
20192         * reflection.c: Return security attributes on the original MonoMethod
20193         (and not the wrapped one). This fix permissions on icalls.
20194
20195 2005-01-25  Dick Porter  <dick@ximian.com>
20196
20197         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
20198         the check for mktime() support actually test the mktime() return
20199         value.  "Fixes" bug 71682, though the output is still different to
20200         MS.
20201
20202 2005-01-25  Martin Baulig  <martin@ximian.com>
20203
20204         * class.c (mono_class_is_assignable_from): Make this work for
20205         generic instances.
20206
20207 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
20208
20209         * marshal.c (mono_string_utf8_to_builder)
20210         (mono_string_builder_to_utf16): We might not have ownership of the
20211         string. In thise case, we need to create a new buffer.
20212
20213         * object-internals.h (mono_stringbuilder_capacity): sb->str might
20214         be null, in which case, use the default capacity.
20215
20216 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20217
20218         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
20219         GC events to the profiler.
20220
20221 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
20222
20223         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
20224         if you don't want the GC to run.
20225
20226 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
20227
20228         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
20229         start providing a GC API and keeping different implementations in
20230         their own file.
20231         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
20232
20233 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
20234
20235         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
20236         mmap rather than allocating a huge buffer.
20237         (mono_debug_close_mono_symbol_file): Free the buffer allocated
20238         above.
20239
20240 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
20241
20242         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
20243         and CheckExecutionRights.
20244         * reflection.c|h: Keep the index of the declarative security to be 
20245         used, instead of the pointer, when AOT compiler is used. Also add 
20246         class initialization when requesting demands.
20247         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
20248         CheckExecutionRights. Both properties are now FALSE by default, and
20249         unmodifiable, unless the --security option is used.
20250
20251 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
20252
20253         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
20254         reflection.c: properly refcount images and assemblies, many leaks fixed.
20255
20256 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20257
20258         * threadpool.c: increase the timeout for threads in the thread pool to
20259         10s.  Fixes bug #67159.
20260
20261 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
20262
20263         * class-internals.h: Sun's compiler insists on explicit
20264         signed on bit fields to handle then correctly.
20265
20266 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
20267
20268         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
20269         Make the size of the array fit only the number of invalid path
20270         chars that we have.
20271
20272         * class.c (_mono_class_get): Improve the error reporting when a
20273         class referenced is not found, to assist debugging. 
20274
20275 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
20276
20277         * threads.c: fix off-by-one error.
20278         * domain.c: free data allocated in the domain.
20279
20280 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
20281
20282         * reflection.c (mono_method_body_get_object): Fill out exception info
20283         as well.
20284
20285         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
20286         structure.
20287         
20288 2005-01-19  Martin Baulig  <martin@ximian.com>
20289
20290         * loader.c (mono_get_method_constrained): Make this work again.
20291
20292 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
20293
20294         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
20295         guint16 to match the managed side.
20296
20297         * reflection.c (mono_reflection_body_get_object): Fill out local
20298         variables array.
20299
20300         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
20301         as well.
20302
20303         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
20304         'local_var_sig_token'.
20305
20306 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
20307
20308         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
20309         System.Drawing.
20310
20311         * reflection.c (mono_method_body_get_object): Handle abstract and
20312         runtime methods.
20313
20314 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
20315
20316         * marshal.c, loader.c, class-internals.h, reflection.c:
20317         store the emthod data for a wrapper in an array instead of a list.
20318
20319 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
20320
20321         * marshal.c: change the code to allocate memory more
20322         conservatively for method wrappers.
20323
20324 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
20325
20326         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
20327         fields from MonoClass to the marshal info structure where they belong.
20328
20329 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20330
20331         * class.c, object.c, class-internals.h, marshal.c: rearrange
20332         some fields and tweak some types to lower memory usage.
20333
20334 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
20335
20336         * threads.c (signal_thread_state_change): Handle the case when the
20337         target thread is the current thread.
20338
20339         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
20340
20341         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
20342         emit_ptr_to_object_conv. 
20343
20344         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
20345         marshalling. Fixes #71352.
20346
20347 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
20348
20349         * metadata.h, blob.h: move table enum to blob.h so it can be included
20350         in any header.
20351         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
20352         cut the size of MonoImage/MonoDynamicImage.
20353
20354 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
20355
20356         * profiler.c (mono_profiler_install_simple): Fix default arguments.
20357
20358 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
20359
20360         * reflection.c, reflection.h, icall.c: add a function to check
20361         if an attribute type is defined for a metadata object.
20362
20363 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
20364
20365         * object-internals.h: Added some needed fields from StringBuilder class.
20366         * marshal.c: Set the maxCapacity when creating a StringBuilder.
20367
20368 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
20369
20370         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
20371         threads before shutting down the runtime.
20372
20373         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
20374
20375 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
20376
20377         * object-internal.h, threads.c: implement stacksize and 
20378         parameterized thread start functionality (requires
20379         matching corlib). Marked broken code for later removal.
20380
20381 2005-01-12  Martin Baulig  <martin@ximian.com>
20382
20383         * class-internals.h (MonoGenericClass): Moved the `initialized'
20384         flag to MonoDynamicGenericClass, removed `init_pending'.
20385         (MonoGenericInst): Added `is_reference' flag.
20386
20387 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
20388
20389         * reflection.c (mono_image_create_pefile): Only set the pe_offset
20390         inside the MSDOS header. Fixes #71201.
20391
20392         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
20393         gc thread.
20394         (mono_domain_finalize): Ditto.
20395
20396 2005-01-12  Martin Baulig  <martin@ximian.com>
20397
20398         * class.c (mono_get_shared_generic_class): Use the cache for
20399         non-dynamic generic classes.
20400
20401         * class-internals.h (mono_class_create_generic_2): Removed
20402         function prototype, this function is now static inside class.c.
20403
20404         * class.c (mono_class_create_generic_2): Made this static, only
20405         call it from mono_class_init() and mono_class_setup_parent().
20406         (collect_implemented_interfaces_aux): Call mono_class_init() on
20407         the interfaces we collect.
20408         (mono_class_setup_vtable): Call mono_class_init (class->parent).
20409
20410 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
20411
20412         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
20413         it a real thread handle.
20414
20415         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
20416         MonoJitExceptionInfo, since each catch clause needs its own variable.
20417         
20418 2005-01-11  Dick Porter  <dick@ximian.com>
20419
20420         * image.c (mono_pe_file_open): New variant on mono_image_open()
20421         that does not set up the CLI metadata; used for FileVersionInfo so
20422         it can get the data for windows binaries too.
20423         
20424         * process.c (process_read_string_block): Don't read off the end of
20425         the StringTable block.
20426
20427         These both fix bug 70766.
20428
20429 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
20430
20431         * gc.c: set some fields to NULL at GC cleanup time.
20432         * threads.c: if we quit the main thread, call exit ().
20433
20434 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
20435
20436         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
20437
20438 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
20439
20440         * threads.h, threads.c, object.c: added accessor and settor for
20441         main_thread. Handle it specially when exiting from it: wait
20442         for other foreground threads to exit.
20443
20444 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
20445
20446         * process.c, verify.c: remove some bloat.
20447
20448 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
20449
20450         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
20451         the calling convention to cdecl under win32.
20452
20453 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
20454
20455         * object.c (mono_object_get_size): New function to get the size of
20456         an object instance.
20457
20458         * profiler.c (simple_allocation): Use above.
20459
20460 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
20461
20462         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
20463         ves_icall_System_AppDomain_getRootDomain (as it's not required to
20464         get an appdomain by it's id and we can't assume the root's id is 0).
20465         * domain-internals.h: Change the function prototype to match.
20466         * icall.c: Change the icall table for AppDomain.
20467
20468 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
20469
20470         * locales.c (string_invariant_compare_char): Only compute
20471         GUnicodeTypes in the case where we need them.  Test for ordinality
20472         first and return if so.
20473
20474         From the commit:
20475
20476                 /*
20477                  * FIXME: here we must use the information from c1type and c2type
20478                  * to find out the proper collation, even on the InvariantCulture, the
20479                  * sorting is not done by computing the unicode values, but their
20480                  * actual sort order.
20481                  */
20482
20483 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
20484
20485         * loader.c: for P/Invoke methods, allow the "Internal" shared
20486         library name to refer to the calling process symbol namespace.
20487
20488 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
20489
20490         * Makefile.am: Add the security manager to the build.
20491         * security-manager.c|h: New. Initialization of the security manager.
20492
20493 2005-01-07  Dick Porter  <dick@ximian.com>
20494
20495         * threads.c: 
20496         * monitor.c: Update thread state during Monitor and WaitHandle
20497         waits.  Fixes bug 71031.
20498
20499 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
20500
20501         * reflection.c (property_encode_signature): Correctly handle when the
20502         property has no methods.
20503
20504 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
20505
20506         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
20507         
20508         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
20509         fields from mb, not rmb. Fixes #71017.
20510
20511         * marshal.c (emit_ptr_to_str_conv): Add support for 
20512         ByValTStr -> string conversion. Fixes #71015.
20513
20514         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
20515
20516         * mempool.c (mono_mempool_contains_addr): New helper function.
20517
20518 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
20519
20520         * metadata.c (mono_metadata_compute_size): Fix size calculation of
20521         HasSematics encoded fields.
20522         
20523         * metadata.c (mono_type_to_unmanaged): Improve error message for 
20524         invalid string marshalling.
20525
20526         * metadata.c: Fix warnings.
20527         
20528 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
20529
20530         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
20531         profiler support.
20532
20533 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
20534
20535         * domain.c object.c domain-internals.h: Revert part of r38077 since the
20536         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
20537         tests.
20538
20539 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
20540
20541         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
20542         so methods containing these can be AOTed.
20543
20544 2005-01-03  Martin Baulig  <martin@ximian.com>
20545
20546         * loader.c (find_method): Removed the hack for generic instances.
20547         (method_from_memberref): If our parent is a generic instance, pass
20548         its generic type definition to find_method() and then inflate the
20549         method.
20550         (mono_get_method_constrained): Pass the generic type definition to
20551         find_method() and inflate the method later.
20552
20553         * class-internals.h (MonoStats): Added `generic_class_count'.
20554
20555         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
20556         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
20557
20558         * reflection.c (mono_custom_attrs_from_params): Don't ignore
20559         generic type definitions.
20560
20561 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
20562
20563         * loader.c icall.c: Fix warnings.
20564
20565 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
20566
20567         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
20568         blittable types. Fixes #70864.
20569
20570 2004-12-29  Martin Baulig  <martin@ximian.com>
20571
20572         * icall.c
20573         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
20574
20575         * reflection.c (mono_method_get_object): Create a
20576         "System.Reflection.MonoGenericMethod" for inflated methods; don't
20577         call mono_get_inflated_method().
20578
20579         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
20580
20581 2004-12-27  Martin Baulig  <martin@ximian.com>
20582
20583         * class-internals.h (MonoMethod): Added `is_inflated' flag.
20584         (MonoMethodInflated): Added `inflated' field.
20585
20586         * class.c (mono_class_inflate_generic_method): Don't really
20587         inflate the method here; just set the `is_inflated' flag in the
20588         MonoMethod.
20589         (mono_class_get_inflated_method): Actually inflate the method here
20590         if it's not already inflated; we use the MonoMethodInflated's new
20591         `inflated' field as a cache.
20592
20593 2004-12-26  Martin Baulig  <martin@ximian.com>
20594
20595         * class.c
20596         (inflate_generic_class): Moved some code out of inflate_generic_type().
20597         (mono_class_inflate_generic_method): If we're already inflated,
20598         inflate the context and use the declaring method; ie. make sure
20599         the declaring method of an inflated method is always the generic
20600         method definition.
20601         (mono_class_create_from_typedef): Create
20602         `class->generic_container->context->gclass'.
20603
20604 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
20605
20606         * metadata-internals.h, marshal.c, reflection.c: More
20607         MonoGHashTable->GHashTable.
20608
20609         * domain-internals.h, class.c: Change MonoGHashTable's into
20610         GHashTables for some cases where no gc stuff is used
20611
20612         All users: update apis
20613
20614 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
20615
20616         * metadata.c (builtin_types): Make this `const'. Makes this get
20617         put into the shareable section.
20618         (mono_metadata_init): Casts to make gcc happy.
20619
20620 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
20621
20622         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
20623
20624 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
20625
20626         * icall.c: Added an internal call to retrieve the position and length
20627         of assembly-level declarative security attributes (RequestMinimum, 
20628         RequestOptional and RequestRefuse). This is used by the Assembly class
20629         to re-create the corresponding permission sets.
20630
20631 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
20632
20633         * marshal.c: fix the stelemref wrapper to be type correct
20634         (and faster).
20635
20636 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
20637
20638         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
20639         to do key & 0x7fffffff. Hashtable already does this. It just
20640         results in longer code.
20641
20642 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
20643
20644         * appdomain.c: Bump corlib version.
20645         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
20646         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
20647         * reflection.c|h: Add functions to get declarative security infos
20648         (blob position and length) for assemblies, classes and methods.
20649
20650 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
20651
20652         * reflection.c: sort the constant table (bug #70693).
20653
20654 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
20655
20656         * object-internals.h, threads.c, domain.c: add accessors for
20657         the MonoThread and MonoDomain tls keys.
20658
20659 2004-12-18  Martin Baulig  <martin@ximian.com>
20660
20661         * class.c (inflate_generic_type): If we're inflating a generic
20662         instance, set `ngclass->context->container = context->container';
20663         ie. the container we inflated into.
20664
20665         * metadata.c (mono_metadata_parse_generic_param): Reflect above
20666         inflate_generic_type() changes.
20667
20668 2004-12-17  Martin Baulig  <martin@ximian.com>
20669
20670         * class-internals.h
20671         (MonoGenericClass): Replaced `MonoType *generic_type' with
20672         `MonoClass *generic_class'.  Removed `dynamic_info'; if
20673         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
20674         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
20675
20676 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
20677
20678         * exception.c (mono_exception_from_token): New helper function.
20679
20680 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
20681
20682         * assembly.c (mono_assembly_load_with_partial_name): Call 
20683         mono_assembly_loaded before invoking the preload hooks. Fixes
20684         #70564.
20685
20686         * object-internals.h (MonoThread): Change culture_info and 
20687         ui_culture_info into an array.
20688
20689         * threads.c: Cache culture info objects from more than one appdomain.
20690
20691         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
20692         current UI culture.
20693
20694 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
20695
20696         * threads.h threads.c appdomain.c: Clear the culture_info field of
20697         all threads during unloading if they point to an object in the dying
20698         appdomain.
20699
20700 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
20701
20702         * culture-info.h (TextInfoEntry): New struct
20703         * object-internals.h: sync with managed
20704         * locales.c: fill the `text_info_data' field
20705         * culture-info-tables.h: update
20706
20707 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
20708
20709         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
20710         collector.
20711
20712 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
20713
20714         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
20715         (ves_icall_ModuleBuilder_getMethodToken): Ditto
20716
20717 2004-12-12  Martin Baulig  <martin@ximian.com>
20718
20719         * mono-debug-debugger.c (write_type): If we're an enum and the
20720         builtin types have already been initialized, call mono_class_init().
20721
20722 2004-12-11  Martin Baulig  <martin@ximian.com>
20723
20724         * metadata.c (mono_metadata_load_generic_params): Added
20725         `MonoGenericContainer *parent_container' argument; automatically
20726         compute `container->is_method'; pass the correct owner to
20727         get_constraints().      
20728
20729         * reflection.c (compare_genericparam): Sort the GenericParam table
20730         according to increasing owners. 
20731
20732 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
20733
20734         * profiler.c: allow disabling the default profiler.
20735
20736 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
20737
20738         * decimal.c, icall.c: allow disabling System.Decimal support.
20739
20740 2004-12-09  Marek Safar <marek.safar@seznam.cz>
20741
20742         * reflection.c: Add support for null attribute arguments.
20743
20744 2004-12-09  Martin Baulig  <martin@ximian.com>
20745
20746         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
20747         names to get rid of compiler warnings.
20748
20749 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
20750
20751         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
20752         mono_marshal_load_type_info (). Fixes #69625.
20753         (mono_marshal_get_ptr_to_struct): Likewise.
20754
20755 2004-12-08  Martin Baulig  <martin@ximian.com>
20756
20757         * mono-debug.h: Bumped version number to 47.
20758
20759         * mono-debug-debugger.c
20760         (mono_debugger_event_handler, mono_debugger_event): Take two
20761         guint64 arguments insteed of a gpointer and a guint32.  
20762
20763 2004-12-08  Martin Baulig  <martin@ximian.com>
20764
20765         * debug-mono-symfile.h
20766         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
20767         `address' to `native_offset'.
20768
20769 2004-12-08  Martin Baulig  <martin@ximian.com>
20770
20771         * class.c (mono_class_create_from_typespec): Only inflate if we
20772         either have `context->gclass' or `context->gmethod'.
20773
20774 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
20775
20776         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
20777
20778         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
20779
20780         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
20781
20782         * reflection.c (mono_assembly_get_object): Remove the workaround put
20783         in for the release.
20784         
20785         * appdomain.c: Use the corlib_internal field from MonoAssembly.
20786
20787         * appdomain.c: Bump corlib version.
20788
20789         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
20790         be visible in other appdomains.
20791
20792 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
20793
20794         * threads.c: Interlocked inc and dec for longs were messed up,
20795         use a KISS based impl for this. Fixes 70234
20796
20797 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
20798
20799         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
20800
20801 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
20802
20803         * icall.c: fix to follow policy not to allow struct
20804         arguments in icalls.
20805
20806 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20807
20808         * process.c: make the patch that handles spaces in file paths work
20809         on mono/windows too.
20810
20811 2004-12-06  Martin Baulig  <martin@ximian.com>
20812
20813         * class.c (mono_class_create_generic): Call
20814         mono_class_setup_supertypes() if we're dynamic.
20815         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
20816
20817 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
20818
20819         * object-internals.h: Add new fields to MonoThread.
20820
20821         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20822
20823         * icall.c threads-types.h threads.c: Add new icalls.
20824
20825         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
20826
20827         * object-internals.h (MonoReflectionAssembly): Sync object layout with
20828         managed side.
20829
20830         * appdomain.c: Bump corlib version.
20831
20832         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
20833         internal assemblies. Fixes #69181.
20834
20835 2004-12-05  Martin Baulig  <martin@ximian.com>
20836
20837         * class.c (mono_class_inflate_generic_signature): Make this a
20838         no-op if `context' is NULL or we don't have any type parameters;
20839         also copy `sentinelpos'.        
20840
20841 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
20842
20843         * image.c: Add unbox_wrapper_cache.
20844
20845         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
20846
20847         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
20848         function generator.
20849         
20850         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
20851         Fixes #70173.
20852
20853         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
20854         
20855 2004-12-04  Martin Baulig  <martin@ximian.com>
20856
20857         * loader.c (mono_method_get_signature_full): New public function;
20858         like mono_method_get_signature(), but with an additional
20859         `MonoGenericContext *' argument.
20860
20861         * class.c (mono_class_inflate_generic_signature): Formerly known
20862         as inflate_generic_signature(); make this public.
20863
20864 2004-12-04  Martin Baulig  <martin@ximian.com>
20865
20866         * metadata.c
20867         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
20868         instead of a `MonoGenericContainer *'.  
20869         (mono_metadata_parse_array_full): Likewise.
20870         (mono_metadata_parse_signature_full): Likewise.
20871         (mono_metadata_parse_method_signature_full): Likewise.
20872         (mono_metadata_parse_generic_inst): Likewise.
20873         (mono_metadata_parse_generic_param): Likewise.
20874         (mono_metadata_parse_mh_full): Likewise.
20875         (mono_type_create_from_typespec_full): Likewise.
20876
20877 2004-12-03  Martin Baulig  <martin@ximian.com>
20878
20879         * class-internals.h (MonoGenericContainer): Replaced the
20880         `MonoGenericContext * pointer with a `MonoGenericContext'
20881         structure and made it the first element.
20882
20883 2004-12-03  Martin Baulig  <martin@ximian.com>
20884
20885         * class.c
20886         (inflate_generic_type): Set the `context->container' when creating
20887         a new MonoGenericContext.
20888         (mono_class_inflate_generic_method): Likewise.
20889         (mono_class_create_from_typespec): Just use `context->container'
20890         to get the container.
20891
20892         * loader.c (method_from_methodspec): Set `context->parent' from
20893         `context->container' - and if that's a method container, use its
20894         parent.  Also set the `context->container' when creating a new
20895         MonoGenericContext.
20896         (mono_get_method_from_token): Use just `context->container' to get
20897         the container.
20898
20899         * metadata.c (do_mono_metadata_parse_generic_class): Also set
20900         `gclass->context->container'.
20901
20902         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
20903         the `context->container' when creating a new MonoGenericContext.
20904
20905 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
20906
20907         * reflection.c (compare_genericparam): Sort params with identical
20908         owner by their number. Fixes gen-111 on sparc.
20909
20910 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
20911
20912         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
20913         around the domain changes.
20914
20915         * appdomain.c (mono_domain_unload): Handle the case when the thread
20916         calling Unload is itself being aborted during unloading. Fixes #70022.
20917
20918         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
20919
20920         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
20921         checkpoint_func as an icall so it gets a wrapper.
20922         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
20923         in the cross-appdomain wrappers too.
20924
20925         * threads.c (mono_thread_has_appdomain_ref): Make this public.
20926
20927         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
20928
20929         * reflection.c: Fix some memory leaks.
20930         
20931 2004-12-02  Martin Baulig  <martin@ximian.com>
20932
20933         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
20934
20935         * metadata.c (generic_class_cache): New static hashtable.
20936         (mono_metadata_lookup_generic_class): New public method.
20937
20938 2004-12-02  Martin Baulig  <martin@ximian.com>
20939
20940         * class.c (mono_class_create_from_typedef): Call
20941         mono_class_setup_parent() and mono_class_create_mono_type() before
20942         parsing the interfaces.
20943
20944 2004-12-02  Martin Baulig  <martin@ximian.com>
20945
20946         * metadata.c (generic_inst_cache): New static hashtable.
20947         (mono_metadata_lookup_generic_inst): New public function.
20948         (mono_metadata_inflate_generic_inst): New public function.
20949         (mono_metadata_parse_generic_inst): New public function.
20950         (do_mono_metadata_parse_generic_class): Use the new
20951         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
20952         since this'll also use the cache.
20953
20954         * reflection.c (mono_reflection_bind_generic_method_parameters):
20955         Use mono_metadata_lookup_generic_inst() to use the new cache.
20956
20957         * class.c (inflate_mono_type): Use
20958         mono_metadata_inflate_generic_inst() to inflate a generic
20959         instance; this'll also use the new cache.
20960
20961         * loader.c (method_from_methodspec): Use
20962         mono_metadata_parse_generic_inst() and
20963         mono_metadata_inflate_generic_inst() rather than parsing it
20964         manually, so we can use the new cache.
20965
20966 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
20967
20968         * threads.c (wait_for_tids): Do not incorrectly free threads when 
20969         the wait times out.
20970
20971 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
20972
20973         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
20974         iter->args based on whether parameters are passed in registers (i.e.
20975         MONO_ARCH_REGPARMS is defined)
20976
20977 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
20978
20979         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
20980         the exception message. Fixes #70070.
20981         (method_from_methodspec): Fix warnings.
20982
20983 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20984
20985         * process.c: (complete_path) return the path quoted
20986
20987 2004-12-01  Martin Baulig  <martin@ximian.com>
20988
20989         * class-internals.h (MonoGenericInst): New structure.
20990         (MonoGenericClass): Replaced `type_argc', `type_argv' and
20991         `is_open' with `MonoGenericInst *inst'.
20992         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
20993         `is_open' with `MonoGenericInst *inst'.
20994
20995 2004-11-30  Martin Baulig  <martin@ximian.com>
20996
20997         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
20998
20999         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
21000         to `generic_class_cache'.
21001
21002         * metadata.c
21003         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
21004         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
21005         (mono_generic_inst_is_valuetype): Renamed to
21006         mono_generic_class_is_valuetype().
21007
21008         * class-internals.h
21009         (MonoGenericInst): Renamed to MonoGenericClass.
21010         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
21011         (MonoClass): Renamed `generic_inst' to `generic_class'.
21012         (MonoGenericContext): Renamed `ginst' to `gclass'.
21013
21014         * object-internals.h
21015         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
21016
21017         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
21018         mono_reflection_generic_class_initialize().
21019
21020         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
21021         now known as "System.Reflection.MonoGenericClass".
21022         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
21023
21024 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
21025
21026         * class-internals.h: Added a flag field to MonoClass to cache the
21027         declarative security attributes actions associated with the class.
21028         * domain-internals.h: Added booleans to MonoJitInfo to cache the
21029         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
21030         applicable to the JITted method.
21031         * reflection.c|h: Added functions to extract (as flags) which security
21032         actions are available (declaratively) for a method, class or assembly.
21033         * metadata.c|h: Added functions to search the declarative security
21034         table in the metadata.
21035         
21036 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
21037
21038         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
21039         EXPORTEDTYPES are already in the class name cache, so there is no
21040         need to add extra code here to look at them. Just removes a bit of
21041         cruft.
21042
21043         (ves_icall_System_Environment_get_TickCount): No need for #if
21044         WINDOWS. We already have the code in io-layer.
21045
21046 2004-11-28  Martin Baulig  <martin@ximian.com>
21047
21048         * loader.c
21049         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
21050         Fixes gen-112.cs.
21051
21052 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
21053
21054         * assembly.c (do_mono_assembly_open): Instead of having a
21055         conditional WITH_BUNDLE, incorporate support for bundles here, by
21056         having a global `bundles' variable holding a pointer to the actual
21057         bundles. 
21058
21059         (mono_register_bundled_assemblies): New API call used by the
21060         bundle code. 
21061
21062         See mkbundle.1 for details.
21063         
21064 2004-11-27  Martin Baulig  <martin@ximian.com>
21065
21066         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
21067         the vtable for generic methods.
21068
21069 2004-11-26  Martin Baulig  <martin@ximian.com>
21070
21071         * metadata.c
21072         (mono_metadata_generic_method_hash): New public function.
21073         (mono_metadata_generic_method_equal): Likewise.
21074
21075         * class-internals.h
21076         (MonoGenericContainer): Added `GHashTable *method_hash'.
21077
21078         * reflection.c (ReflectionMethodBuilder): Added
21079         `MonoGenericContainer *generic_container'.
21080         (reflection_methodbuilder_to_mono_method): Don't create a new
21081         MonoGenericContainer each time we're called.
21082         (mono_reflection_bind_generic_method_parameters): Use
21083         `container->method_hash' to cache the results so we don't create a
21084         different method if we're called several times with the same
21085         arguments.
21086
21087         * loader.c (method_from_methodspec): Use the new
21088         `container->method_hash' here, too.
21089
21090 2004-11-26  Martin Baulig  <martin@ximian.com>
21091
21092         * class.c (inflate_generic_signature): Correctly compute
21093         `res->has_type_parameters'.
21094         (mono_class_vtable): Use the `has_type_parameters' flag to
21095         determine whether we're a generic method.
21096
21097         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
21098
21099 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
21100
21101         * object.c (mono_runtime_run_main): Fix a small memory leak.
21102
21103 2004-11-25  Martin Baulig  <martin@ximian.com>
21104
21105         * class.c (set_generic_param_owner): Fixed the loop.
21106
21107 2004-11-25  Martin Baulig  <martin@ximian.com>
21108
21109         * object.c (mono_class_vtable): Don't create any JIT wrappers for
21110         generic methods.
21111
21112 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
21113
21114         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
21115         names. Fixes #69787.
21116
21117 2004-11-24  Martin Baulig  <martin@ximian.com>
21118
21119         * class.c (mono_class_create_generic_2): If we don't have a
21120         `ginst->parent', inflate `gklass->parent' to get our parent.
21121
21122 2004-11-24  Martin Baulig  <martin@ximian.com>
21123
21124         * reflection.c (compare_genericparam): Correctly sort the
21125         GenericParam table; fixes #69779.
21126
21127 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
21128
21129         * reflection.c: When writing a PE file, don't create a huge
21130         buffer in memory. Just write the arrays we have to the file.
21131         This reduces memory usage.
21132
21133         * metadata-internals.h: MonoDynamicStream pefile is no longer used
21134         globally.
21135
21136 2004-11-17  Martin Baulig  <martin@ximian.com>
21137
21138         * class.c (mono_class_init): Don't setup `class->parent' for
21139         dynamic instances; moved this to mono_class_generic_2().
21140         (mono_class_create_generic): Also set `klass->inited' for dynamic
21141         generic instances.
21142         (mono_class_create_generic_2): Don't do anything for dynamic
21143         generic instances.  Set `klass->parent' here and also call
21144         mono_class_setup_parent() here. 
21145
21146         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
21147         `MonoType *parent' argument; set `ginst->parent' before calling
21148         mono_class_create_generic_2(), so we set the correct parent.
21149
21150 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
21151
21152         * reflection.c: allow getting attributes from ModuleBuilder
21153         (used by ikvm).
21154
21155 2004-11-17  Martin Baulig  <martin@ximian.com>
21156
21157         * class.c (mono_class_create_from_typedef): If a type parameter is
21158         inherited from an outer class, set its owner to that class.
21159
21160 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
21161
21162         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
21163           for (int*) written size. This fixes bug #69592.
21164
21165 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
21166
21167         * icall.c: Added IsAuthenticodePresnet internal call.
21168         * image.c|h: New function that check a MonoImage for an Authenticode
21169         signature in the certificate PE data directory.
21170         * security.c|h: New internal call to ask the runtime if an 
21171         Authenticode signature seems referenced in the PE header.
21172
21173 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
21174
21175         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
21176
21177         * reflection.c (mono_image_create_pefile): Free the assembly streams
21178         after writing out the assembly file.
21179
21180         * object.c (mono_runtime_run_main): Fix small memory leak.
21181
21182         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
21183         property access modifiers. Fixes #69389.
21184
21185 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
21186
21187         * domain.c, object.c, object-internals.h, domain-internals.h,
21188         object.h, marshal.c: keep dynamic code info per domain.
21189
21190 2004-11-15  Martin Baulig  <martin@ximian.com>
21191
21192         * class.c (mono_type_get_name_recurse): Put type arguments in
21193         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
21194         see bug #68387.
21195
21196 2004-11-15  Martin Baulig  <martin@ximian.com>
21197
21198         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
21199         (mono_class_setup_vtable): When computing `the_cname' for a
21200         generic instance, don't include the namespace since we'd otherwise
21201         add it twice.
21202
21203 2004-11-15  Martin Baulig  <martin@ximian.com>
21204
21205         * class.c (mono_class_create_generic): Changed return type to void.
21206         (mono_class_create_generic_2): New public function; setup
21207         `class->method', `class->field' and `class->interfaces' here
21208         instead of in mono_class_init().
21209
21210         * class.h (mono_class_create_generic): Moved to class-internals.h.
21211
21212 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
21213
21214         * reflection.c (mono_image_create_pefile): take a file HANDLE.
21215         rather than writing to memory, write to this file. Right now,
21216         we are just writting into a buffer, and copying that. However
21217         we can avoid the buffer later.
21218
21219         (mono_dynamic_stream_reset): new function
21220
21221         * icall.c, object-internals.h: update for the above.
21222
21223 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
21224
21225         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
21226         have been using gc'd memory. First it is slower, unlikely
21227         the comment in the source code said, secondly, it increases
21228         our footprint to do it in the gc.
21229
21230         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
21231         the method so that it does not have to copy to managed code.
21232
21233 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
21234
21235         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
21236
21237 2004-11-12  Martin Baulig  <martin@localhost>
21238
21239         * reflection.c (mono_image_create_token): Allow generic method
21240         definitions here, since they may appear in an `.override'; see
21241         gen-98/gen-99 for an example.
21242
21243 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
21244
21245         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
21246         #69365.
21247
21248         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
21249         descriptive.
21250
21251 2004-11-11  Martin Baulig  <martin@ximian.com>
21252
21253         * class.c (mono_class_setup_vtable): In an explicit interface
21254         implementation, the method name now includes the arity.
21255
21256 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
21257
21258         * object.c (mono_array_full_copy): Fix warning.
21259
21260 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
21261
21262         * appdomain.c: Removed look_for_method_by_name(). Use the new method
21263         mono_class_get_method_from_name() instead.
21264         
21265         * class-internals.h: Added two new types of wrappers. 
21266         Added MonoRemotingTarget enum. Added new trampoline function type, which
21267         takes an additional MonoRemotingTarget value as parameter, so it is
21268         possible to request a trampoline for a specific target.
21269         
21270         * class.c: Added new mono_class_get_method_from_name() method.
21271         
21272         * class.h: In MonoRemoteClass, we can have now to vtables, one for
21273         general remoting sinks and one specific for cross domain calls.
21274         
21275         * debug-helpers.c: Added new wrapper names.
21276         
21277         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
21278         of a remote class.
21279         
21280         * image.c: Porperly delete value objects form the remoting invoke hashtable.
21281         
21282         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
21283         with several other methods (mono_marshal_get_xappdomain_dispatch,
21284         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
21285         and others) can generate a fast remoting wrapper for cross domain calls.
21286         More information can be found in docs/remoting.
21287         Other changes: Removed mono_find_method_by_name, and used
21288         mono_class_get_method_from_name instead.
21289         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
21290         is stored in the remoting invoke hashtable.
21291         
21292         * marshal.h: published the new method for getting the xdomain wrapper,
21293         and also added a method for getting the adequate wrapper for a given
21294         method and target.
21295         
21296         * object-internals.h, object.c: Added a couple of methods for capying and
21297         cloning arrays.
21298         Modified mono_install_remoting_trampoline, which takes the new remoting
21299         trampoline that has a remoting target as parameter.
21300         mono_class_proxy_vtable now also takes a remoting target as parameter, and
21301         will return the most suitable vtable for the target.
21302         Added mono_remote_class_vtable, which returns the vtable of a remote class
21303         (which can be the normal remoting vtable or the xdomain vtable).
21304         
21305         * threads.c: the xdomain invoke and dispatch wrappers must also be
21306         protected against interruptions.
21307
21308 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21309
21310         * icall.c: use memmove in BlockCopyInternal when the source and
21311         destination arrays are the same.
21312
21313 2004-11-09  Martin Baulig  <martin@ximian.com>
21314
21315         * class-internals.h (MonoGenericContainer): Removed `method' and
21316         `signature', replaced them with `is_method' and `is_signature'
21317         flags.  Added `context'.
21318
21319         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
21320         instead of a `MonoGenericContainer *'.
21321
21322         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
21323         for dynamic type parameters.
21324         (mono_metadata_load_generic_params): Setup `container->context'.
21325
21326         * reflection.c (mono_reflection_setup_generic_class): Setup
21327         `tb->generic_container->context'.
21328         (do_mono_reflection_bind_generic_parameters): Use
21329         mono_class_inflate_generic_type() to correctly inflate types,
21330         rather than using our own hack just for MONO_TYPE_VAR.
21331
21332 2004-11-09  Martin Baulig  <martin@ximian.com>
21333
21334         * class.c (mono_class_inflate_generic_method): Small fix; don't
21335         crash here.
21336
21337         * icall.c
21338         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
21339         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
21340         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
21341         (ves_icall_Type_BindGenericParameters): Likewise.
21342         (ves_icall_Type_get_IsGenericInstance): Likewise.
21343         (ves_icall_Type_GetGenericParameterPosition): Likewise.
21344         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
21345         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
21346         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
21347
21348 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
21349
21350         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
21351         assembly versions and public key tokens. Fixes #69113.
21352
21353 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
21354
21355         * metadata.c: fix bug introduced with the type cache changes
21356         on 2004-11-06.
21357
21358 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
21359
21360         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
21361         the MonoClass pointer instead of the token in exception clauses.
21362         * reflection.c: updates for the above and make the code not depend
21363         on the structure of MonoExceptionClause.
21364
21365 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
21366
21367         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
21368         Add support for dynamic assemblies. Fixes #69114.
21369
21370         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
21371
21372 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
21373
21374         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
21375         since most only those methods use it. the code member of
21376         MonoMethodPInvoke was dead, so that can be removed too. Also,
21377         remove inline_count (again, not used), and move slot so that it
21378         can share bits with some other flags. This saves 8 bytes in the
21379         structure and gives us about 50 kb back for mcs helloworld.cs
21380
21381         * *.[ch]: Do naming changes for the above.
21382
21383         * loader.c (mono_method_get_header): Lazily init the header
21384         on first access.
21385         (mono_get_method_from_token): don't init the header here
21386         (mono_free_method): the header may never be allocated
21387
21388         Overall, this saves 150 kb of unmanaged allocations
21389         for mcs helloworld.cs. That accounts for 10% of the unmanaged
21390         memory at runtime.
21391         
21392         * loader.c, loader.h (mono_method_get_header): new accessor.
21393
21394         * *.[ch]: use the above method. Prepares us to lazily load
21395         the header.
21396
21397         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
21398         three warnings, which are actual bugs (see 69206).
21399
21400         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
21401         unused. Saves a cool 4 bytes / method.
21402
21403 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
21404
21405         * metadata.c (builtin_types): Add types for System.Object here.
21406         (mono_metadata_parse_type_full): Cache MonoType*'s that are
21407         for a class or valuetype from klass->this_arg or klass->byval_arg.
21408
21409         On mcs for a hello world, this gets us down from 21836 MonoType's
21410         to 14560.
21411
21412         (mono_metadata_free_type): Account for the above change.
21413
21414 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
21415
21416         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
21417         exception instead of asserting if name is null.
21418         (ves_icall_System_AppDomain_GetData): Ditto.
21419
21420 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
21421
21422         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
21423         EnumBuilder.
21424
21425         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
21426         Return NULL when the domain does not have entry_assembly set.
21427
21428         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
21429         Add a 'resource_modules' argument.
21430         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
21431
21432         * reflection.c (mono_reflection_create_runtime_class): Move setting
21433         of wastypebuilder here, so mono_get_type_object () returns a MonoType
21434         for enums too.
21435
21436         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
21437         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
21438         Throw an ArgumentNullException if 'ptr' is null.
21439
21440         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
21441         assemblies here. Fixes #69020.
21442
21443 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
21444
21445         * reflection.c (build_compressed_metadata): Fix the previous patch for
21446         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
21447         the stack.
21448
21449 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
21450
21451         * assembly.c (mono_assembly_names_equal): Allow a match if one of
21452         the cultures is false. Fixes #69090.
21453
21454         * reflection.c (build_compressed_metadata): Fix invalid memory read 
21455         detected by valgrind.
21456         
21457         * reflection.c (mono_reflection_get_type): Avoid triggering a 
21458         TypeResolve multiple times for the same type. Fixes #65577.
21459
21460 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
21461
21462         * marshal.c: Avoid using ldftn to call managed functions. It is
21463         much slower than just a call.
21464
21465         * reflection.c (mono_module_get_object): free the basename we
21466         allocate here from glib.
21467         
21468         * reflection.c (ensure_runtime_vtable): make sure to free
21469         overrides.  Also, we were allocating an array of MonoMethod not an
21470         array of MonoMethod*.
21471
21472         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
21473
21474         * image.c (mono_image_close): free image->guid here.
21475
21476 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
21477
21478         * reflection.c: Fix some spec conformance issues with the PE file
21479         structures so mcs compiled apps run on the Net 2.0 beta.
21480
21481 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
21482
21483         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
21484         Implement this. Fixes #67264.
21485
21486         * debug-helpers.h debug-helpers.c marshal.c: Move 
21487         mono_find_method_by_name to debug-helpers.c.
21488
21489 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
21490
21491         * object.c (mono_release_type_locks): type_initialization_hash is
21492         a GHashTable.
21493
21494         * reflection.c object.c object-internals.h: Fix warnings.
21495
21496         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
21497         without accessors. Fixes #61561.
21498
21499         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
21500         application base from the root domain if not set. Fixes #65641.
21501         (mono_runtime_init): Fix warning.
21502
21503 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21504
21505         * appdomain.c: call mono_thread_pool_init.
21506         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
21507         of worker threads based on the number of CPUs and the environment
21508         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
21509         for non-windows (windows) systems.
21510
21511 2004-10-27  Chris Toshok  <toshok@ximian.com>
21512
21513         * mono-debug-debugger.c (write_class): don't call mono_class_init
21514         here, as even with the check for (!klass->init_pending), we get
21515         into a situation where we're hitting cycles in class
21516         initialization.  Fixes #68816.
21517
21518 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
21519
21520         * image.c: Avoid overwriting values in the loaded_images_hash when an
21521         assembly is loaded multiple times. Fixes #61152.
21522
21523         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
21524         so multiple satellite assemblies for the same name can be loaded.
21525         Fixes #68259.
21526
21527         * mono_domain_assembly_preload: Actually return the loaded assembly, 
21528         not NULL.
21529
21530         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
21531         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
21532
21533         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
21534         pending finalizers are not invoked after the appdomain has been 
21535         unloaded. Fixes #67862.
21536
21537 2004-10-22  Martin Baulig  <martin@ximian.com>
21538
21539         * mono-debug-debugger.c
21540         (mono_debugger_runtime_invoke): Don't box valuetypes.
21541
21542 2004-10-22  Chris Toshok  <toshok@ximian.com>
21543
21544         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
21545         don't hide private methods.
21546
21547 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
21548
21549         * icall.c: Allows the runtime to "share" (when known) the public key
21550         token of an assembly. This avoid the need to recalculate the token 
21551         (from the public key) in managed code.
21552
21553 2004-10-21  Chris Toshok  <toshok@ximian.com>
21554
21555         * debug-helpers.c (append_class_name): argh, revert last patch.
21556         
21557 2004-10-21  Chris Toshok  <toshok@ximian.com>
21558
21559         * debug-helpers.c (append_class_name): use '+' as the delimiter,
21560         not '/', so that it matches what the debugger uses to look up
21561         methods.
21562
21563 2004-10-21  Martin Baulig  <martin@ximian.com>
21564
21565         * mono-debug-debugger.c (mono_debugger_throw_exception): New
21566         public method; this is called each time an exception is thrown and
21567         allows the debugger to use exception catch points.
21568
21569 2004-10-21  Martin Baulig  <martin@ximian.com>
21570
21571         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
21572         the stack pointer and the exception object in some struct and pass
21573         that to the debugger.
21574
21575 2004-10-21  Chris Toshok  <toshok@ximian.com>
21576
21577         * mono-debug-debugger.c (do_write_class): add instance/static
21578         event support.  We don't expose "raise" or "other" yet.
21579         (event_is_static): new method.
21580
21581 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
21582
21583         * mono-debug-debugger.c
21584         (mono_debugger_handle_exception): Remove
21585         bogus return value for fussy compilers.
21586
21587 2004-10-20  Martin Baulig  <martin@ximian.com>
21588
21589         * mono-debug-debugger.c
21590         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
21591         (mono_debugger_handled_exception): Likewise.
21592
21593 2004-10-20  Martin Baulig  <martin@ximian.com>
21594
21595         * mono-debug-debugger.h (MonoDebuggerEvent): Added
21596         MONO_DEBUGGER_EVENT_EXCEPTION.
21597
21598         * mono-debug-debugger.c (mono_debugger_handle_exception): New
21599         public function to send the debugger a notification for an
21600         exception and inform it about a catch/finally clause.
21601
21602 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
21603
21604         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
21605         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
21606         fix 2.95 build. 
21607
21608         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
21609
21610 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
21611
21612         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
21613         marshalled as [In,Out]. Fixes #58325.
21614
21615 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
21616
21617         * reflection.c (mono_method_body_get_object): Implement some fields.
21618
21619 2004-10-12  Martin Baulig  <martin@ximian.com>
21620
21621         * reflection.c (mono_reflection_bind_generic_parameters): Small
21622         fix, correctly retrieve our parent from a generic instance.
21623
21624 2004-10-12  Martin Baulig  <martin@ximian.com>
21625
21626         * metadata.c (mono_metadata_generic_param_equal): We always have
21627         an owner.
21628
21629         * class.c
21630         (mono_class_from_generic_parameter): We need to have an owner.
21631         (my_mono_class_from_generic_parameter): Likewise.
21632
21633         * reflection.c (mono_reflection_setup_generic_class): Renamed to
21634         mono_reflection_create_generic_class() and added a new
21635         mono_reflection_setup_generic_class().  
21636         (mono_reflection_initialize_generic_param): If we're a nested
21637         generic type and inherited from the containing class, set our
21638         owner to the outer class.
21639
21640 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
21641
21642         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
21643
21644         * reflection.c (mono_method_body_get_object): New function to create
21645         a MethodBody object.
21646
21647         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
21648
21649 2004-10-11  Martin Baulig  <martin@ximian.com>
21650
21651         * metadata.c (_mono_metadata_type_equal): Renamed to
21652         do_mono_metadata_type_equal() and made static.
21653
21654 2004-10-11  Martin Baulig  <martin@ximian.com>
21655
21656         * appdomain.c: Bump corlib version number to 28.
21657
21658 2004-10-10  Martin Baulig  <martin@ximian.com>
21659
21660         * class-internals.h
21661         (MonoGenericInst): Added `MonoGenericContainer *container'.
21662         (MonoGenericMethod): Likewise.
21663         (MonoGenericContext): Likewise.
21664         (MonoGenericParam): Added `MonoGenericContainer *owner'.
21665
21666         * metadata.c
21667         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
21668         (do_mono_metadata_parse_generic_inst): Likewise.
21669         (mono_metadata_parse_type_full): New public method.  This is the actual
21670         mono_metadata_parse_type() implementation - with an additional
21671         `MonoGenericContainer *' argument.
21672         (mono_metadata_parse_array_full): Likewise.
21673         (mono_metadata_parse_signature_full): Likewise.
21674         (mono_metadata_parse_method_signature_full): Likewise.
21675         (mono_metadata_parse_mh_full): Likewise.
21676         (mono_type_create_from_typespec): Likewise.
21677         (mono_metadata_interfaces_from_typedef_full): New public method;
21678         this is similar to the other _full() methods, but we take a
21679         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
21680         (mono_metadata_parse_generic_param): Take an additional
21681         `MonoGenericContainer *' argument and lookup the MonoGenericParam
21682         from that container.
21683         (mono_metadata_generic_param_equal): New static method to compare
21684         two type parameters.
21685         (_mono_metadata_type_equal): New static method; takes an
21686         additional `gboolean signature_only' argument - if true, we don't
21687         compare the owners of generic parameters.
21688         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
21689         with a TRUE argument - do a signature-only comparision.
21690
21691         * loader.c: Use the new _full() methods and pass the
21692         MonoGenericContainer to them.
21693
21694         * object-internals.h (MonoReflectionTypeBuilder): Added
21695         `MonoGenericContainer *generic_container' field.
21696         (MonoReflectionMethodBuilder): Likewise.
21697
21698 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
21699
21700         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
21701         case initial images of dynamic assemblies.
21702
21703         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
21704
21705         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
21706
21707         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
21708         length of event->other array.
21709         (typebuilder_setup_events): Ditto.
21710
21711         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
21712         'assembly_by_name' and add an 'assemblies' list.
21713
21714         * assembly.h assembly.c: Add a new search hook for determining whenever
21715         an assembly is already loaded. Use this instead of searching in the
21716         loaded_assemblies list.
21717
21718         * domain.c appdomain.c: Implement the new search hook so loaded 
21719         assemblies are now scoped by appdomain. Fixes #67727.
21720
21721 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
21722
21723         * threads.c (mono_thread_attach): Initialize synch_lock field so
21724         mono_thread_detach works again.
21725
21726         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
21727         'lib' too. Fixes #63130.
21728
21729 2004-10-06  Jackson Harper  <jackson@ximian.com>
21730
21731         * culture-info-tables.h: regenerated.
21732
21733 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
21734
21735         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
21736         implemented by other interfaces in the result. Fixes #65764.
21737         
21738         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
21739         Handle unloadable modules without crashing.
21740
21741         * image.c (load_modules): Revert the previous patch since modules must
21742         have a fixed index inside the array.
21743         
21744         * image.c (load_modules): Don't include native modules in the modules
21745         array.
21746
21747 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
21748
21749         * reflection.h: Add param_defaults field.
21750
21751         * reflection.c: Add support for parameter defaults in dynamic methods.
21752         Fixes #64595.
21753
21754         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
21755         an empty string when a type has no namespace. Fixes #64230.
21756
21757 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
21758
21759         * tabledefs.h: Added "internal" security actions to support non-CAS
21760         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
21761         Note: they do not seems to be used anymore in 2.0 (new metadata format)
21762
21763 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
21764
21765         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
21766         constructor of abstract class. Fixes #61689.
21767
21768 2004-10-04  Martin Baulig  <martin@ximian.com>
21769
21770         * class-internals.h (MonoGenericContainer): New type.
21771         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
21772         `MonoGenericContainer *generic_container'.
21773         (MonoClass): Replaced `gen_params' and `num_gen_params' with
21774         `MonoGenericContainer *generic_container'.
21775
21776         * metadata.c (mono_metadata_load_generic_params): Return a
21777         `MonoGenericContainer *' instead of a `MonoGenericParam *';
21778         removed the `num' argument.
21779
21780 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
21781
21782         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
21783         for dynamic images.
21784
21785         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
21786         machine fields.
21787
21788         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
21789
21790         * reflection.c: Save pe_kind and machine values into the generated
21791         image file.
21792
21793         * appdomain.c: Bump corlib version number.
21794
21795         * object-internals.h: Reorganize layout of LocalBuilder.
21796
21797         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
21798         New helper function.
21799
21800         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
21801         created MonoType for dynamic types. Fixes #66180.
21802
21803 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
21804
21805         * threadpool.c: the ares hashtable needs a critical section around it.
21806         this prevents some nasty segfaults
21807
21808 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
21809
21810         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
21811         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
21812         bug 67324).
21813         
21814 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
21815
21816         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
21817         
21818 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
21819
21820         * image.c: Always canonicalize image file names, to avoid loading
21821         the same assembly twice when referenced using a relative path.
21822
21823 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
21824
21825         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
21826
21827         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
21828
21829         * marshal.c: Fix warnings.
21830
21831 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
21832
21833         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
21834         attempting to marshal the delegate_trampoline as the method_addr.
21835         This patch has a static hashtable of marshalled delegates so that 
21836         we can map delegate_trampoline addresses back to delegates.  This
21837         allows a delegate passed to managed code to be passed back into native
21838         code.  Fixes #67039
21839
21840 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
21841
21842         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
21843
21844         * reflection.c (method_encode_code): Align method headers properly.
21845         Fixes #66025.
21846
21847 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
21848
21849         * marshal.c: In the runtime invoke wrapper, reset the abort
21850         exception if it is cached. This avoids the automatic rethrowal of 
21851         the exception after the catch of the wrapper. Also check for pending
21852         interruptions before calling the managed method. This is done using
21853         the new method emit_thread_force_interrupt_checkpoint, since the
21854         normal checkpoint method is ignored when running the invoke wrapper.
21855         * object.c: If the abort exception is rethrown, set the abort_exc
21856         field of the thread, so it will be rethrown aftere every catch.
21857         * threadpool.c: Only run an interruption checkpoint if what has been
21858         requested is a stop of the thread (aborts will be ignored).
21859         * threads.c: By default, a thread will now never be interrumped while
21860         running the runtime invoke wrapper (this ensures that runtime_invoke
21861         will always return to the caller if an exception pointer is provided).
21862         There is a new special method mono_thread_force_interruption_checkpoint()
21863         to force an interruption checkpoint even if running a protected
21864         wrapper, which is used by the same runtime invoke wrapper to do a check
21865         at a safe point.
21866
21867 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
21868
21869         * object.c, object-internals.h: Implemented mono_release_type_locks,
21870         which releases the cctor locks held by a thread.
21871         * threads.c, threads.h: In thread_cleanup, release cctor locks held
21872         by a thread. Added mono_thread_exit() method to be used to safely stop
21873         a thread.
21874
21875 2004-09-28  Raja R Harinath  <rharinath@novell.com>
21876
21877         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
21878         Move null check before dereference.  Avoid indexing beyond the end
21879         of the 'modules' array.
21880
21881 2004-09-28  Raja R Harinath  <rharinath@novell.com>
21882
21883         * metadata-internals.h (MonoImage): Add module_count field.
21884         * image.c (load_modules): Set image->module_count.
21885         (mono_image_load_file_for_image): Use image->module_count.
21886         * reflection.c (mono_image_load_module): Append to image->modules array 
21887         of dynamic assembly.
21888         (mono_module_get_object): Fix loop to actually increment index.
21889         Use image->module_count.
21890         * assembly.c (mono_assembly_load_references): Use image->module_count.
21891         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
21892         Likewise.
21893
21894 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
21895
21896         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
21897         Avoid assert on generic types.
21898
21899 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
21900
21901         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
21902
21903         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
21904
21905         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
21906         function to convert a MarshalSpec structure to its managed counterpart.
21907
21908         * reflection.c: Fix warnings.
21909         
21910         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
21911         field.
21912
21913         * icall.c (mono_create_icall_signature): Fix build.
21914
21915 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
21916
21917         * icall.c: Add MakePointType icall.
21918
21919         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
21920         warnings.
21921
21922 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21923
21924         * threadpool.c: reuse allocated slots in the queue.
21925
21926 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
21927
21928         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
21929
21930         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
21931
21932         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
21933         previous change.
21934
21935         * tabledefs.h: Add constants for pinvoke attributes BestFit and
21936         ThrowOnUnmappableChar.
21937
21938         * icall.c (ves_icall_Type_GetPacking): New icall.
21939
21940 2004-09-24  Martin Baulig  <martin@ximian.com>
21941
21942         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
21943
21944 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21945
21946         * appdomain.c:
21947         (mono_domain_set): allow setting a domain that is being unloaded.
21948         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
21949         being unloaded.
21950
21951 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
21952
21953         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
21954         the GetCustomAttributes icall.
21955
21956 2004-09-23  Martin Baulig  <martin@ximian.com>
21957
21958         * object-internals.h (MonoReflectionGenericParam): Replaced
21959         'has_ctor_constraint', `has_reference_type' and `has_value_type'
21960         with `guint32 attrs'.
21961
21962 2004-09-23  Martin Baulig  <martin@ximian.com>
21963
21964         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
21965
21966 2004-09-23  Martin Baulig  <martin@ximian.com>
21967
21968         * object-internals.h (GenericParameterAttributes): New enum.
21969
21970 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
21971
21972         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
21973         
21974         * class.c (init_events): Fill out event->other field.
21975
21976         * class.c: Fix warnings.
21977
21978         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
21979
21980 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
21981
21982         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
21983         walk which doesn't supply the IL offset.
21984
21985 2004-09-22  Martin Baulig  <martin@ximian.com>
21986
21987         * reflection.c (mono_reflection_setup_internal_class): If we're
21988         System.ValueType, System.Object or System.Enum, set
21989         `klass->instance_size' and create the vtable.
21990         (mono_reflection_create_internal_class): If we're an enum type,
21991         get the base class from our current corlib.
21992
21993 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
21994
21995         * reflection.h (MonoResolveTokenError): New type.
21996
21997         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
21998         icall.
21999
22000         * icall.c: Add an 'error' argument to the ResolveToken icalls.
22001
22002 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
22003
22004         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
22005         Support also calling constructors, but only for already allocated objects.
22006
22007 2004-09-17  Geoff Norton <gnorton@customerdna.com>
22008
22009         * reflection.c (type_get_qualified_name): If the klass is null
22010         return the typename to avoid a NullRefEx.
22011         (encode_cattr_value): Get the qualified name of the boxed type,
22012         not the underlying enumtype.  Fixes #62984.
22013
22014 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
22015
22016         * marshal.c: Fix problems with previous checkin.
22017
22018 2004-09-21    <vargaz@freemail.hu>
22019
22020         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
22021         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
22022
22023         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
22024
22025 2004-09-21  Geoff Norton <gnorton@customerdna.com>
22026
22027         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
22028         should only return a type for pointers, arrays, and passbyref types.
22029         Fixes bug #63841.
22030
22031 2004-09-21  Martin Baulig  <martin@ximian.com>
22032
22033         * domain.c (mono_debugger_check_runtime_version): New public
22034         function.
22035
22036         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
22037
22038 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
22039
22040         * reflection.c: Added missing sort to the declarative security 
22041         attributes table. MS implementation stops seeing the attributes if the
22042         token number regress in the table (as shown by ildasm and permview).
22043
22044 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
22045
22046         * object-internals.h (MonoReflectionModule): Add 'token' field.
22047         
22048         * reflection.c (mono_reflection_get_token): Add support for Module
22049         and Assembly.
22050         (mono_module_get_object): Set 'token' field.
22051         (mono_module_file_get_object): Set 'token' field.
22052
22053         * icall.c: Add new Assembly and Module icalls.
22054
22055         * appdomain.c: Bump corlib version.
22056
22057 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
22058
22059         * loader.h loader.c class.h class.c: Add helper functions for obtaining
22060         tokens of metadata objects.
22061
22062         * reflection.h reflection.c (mono_reflection_get_token): New function
22063         to obtain the token of a metadata object.
22064
22065         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
22066
22067 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
22068
22069         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
22070         
22071         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
22072
22073 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
22074
22075         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
22076         * object-internals.h: Added 3 MonoArray* members to MonoReflection
22077         AssemblyBuilder to access the permissions set in the class lib.
22078         * reflection.c: Added security attributes encoding step in 
22079         mono_image_build_metadata.
22080         * tabledefs.h: Added new security actions defined in 2.0:
22081         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
22082
22083 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
22084
22085         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
22086         macro parameter.
22087
22088 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
22089  
22090         * locales.c: nullify the ICU_collator member of CompareInfo when it is
22091           finalized. There where random SIGSEVs at program termination, when
22092           an object being finalized was trying to do a string comparison and
22093           the current culture was already finalized.
22094  
22095 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22096
22097         * threads.c: call thread_cleanup before finishing the thread if we get
22098         there.
22099
22100 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
22101
22102         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
22103         assemblies from the parent. Fixes #65665.
22104
22105 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
22106
22107         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
22108         modifiers.
22109
22110 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
22111
22112         * reflection.h: add prototype for mono_get_dbnull_object
22113         * reflection.c: add prototypes for get_default_param_value_blobs 
22114         and mono_get_object_from_blob for fussier compilers
22115
22116 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
22117  
22118         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
22119         false deadlock checks in class initialization.
22120  
22121 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
22122
22123         * image.c (mono_image_addref): Fix comment.
22124
22125         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
22126         possible.
22127
22128 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
22129
22130         * reflection.c (mono_param_get_objects): Modified to return
22131         ParameterInfo.DefaultValue object.
22132
22133         (get_default_param_value_blobs):
22134         (mono_get_object_from_blob):
22135         (mono_get_dbnull_object): New helper routines. 
22136
22137         * object.c (mono_get_constant_value_from_blob): New helper routine
22138         carved out from get_default_field_value ()
22139
22140         * object-internals.h (mono_get_constant_value_from_blob): Added
22141         function declaration.
22142
22143 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
22144
22145         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
22146         referenced assemblies. Fixes #62135.
22147
22148         * exception.h exception.c (mono_get_exception_file_not_found2): New
22149         helper function.
22150
22151 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
22152
22153         * class.h class.c: Add mono_type_get_underlying_type ().
22154
22155 2004-09-09  Geoff Norton <gnorton@customerndna.com>
22156
22157         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
22158         Fix GetTypes() to support dynamically created assemblies.
22159
22160 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
22161
22162         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
22163         
22164         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
22165         previous patch.
22166
22167         * reflection.h reflection.c loader.c: Allow dynamic construction of
22168         pinvoke methods. Fixes #65571.
22169         
22170         * reflection.c (mono_reflection_get_type): Revert previous change since
22171         it causes regressions.
22172
22173 2004-09-08  Martin Baulig  <martin@ximian.com>
22174
22175         * class.c (class_compute_field_layout): Don't call
22176         mono_class_layout_fields() for open generic instances.
22177
22178 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
22179         * threads.c appdomain.c: fix typo in GC macro
22180
22181 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22182
22183         * threads.c: don't call mono_thread_detach() in start_wrapper(),
22184         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
22185
22186 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
22187
22188         * image.c (mono_image_close): Applied patch from 
22189         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
22190         assembly is loaded multiple times from data.
22191         
22192         * image.c (mono_image_open): Fix warning.
22193
22194 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
22195
22196         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
22197         once. Fixes #58334.
22198         
22199         * reflection.c (mono_reflection_create_runtime_class): Initialize
22200         klass->nested_classes. Fixes #61224.
22201
22202 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
22203
22204         * threads.c: sched_yield() on exit, to allow threads to quit.
22205
22206 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
22207
22208         * object.c (mono_unhandled_exception): Remove leftover debug code.
22209
22210 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
22211
22212         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
22213
22214 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
22215
22216         * marshal.c (emit_marshal_array): Really null terminate string arrays.
22217         
22218         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
22219
22220 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
22221
22222         * marshal.c (emit_marshal_array): Null terminate string arrays.
22223         
22224         * marshal.c (raise_auto_layout_exception): Fix warning.
22225
22226         * reflection.c (mono_param_get_objects): Initialize the default value
22227         with DBNull.Value, not null. Fixes #62123.
22228
22229 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
22230
22231         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
22232         throw an exception with a cute explanation.
22233
22234 2004-09-06  Dick Porter  <dick@ximian.com>
22235
22236         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
22237         Close the new process's thread handle, as we don't use it.  The
22238         handle stays around forever otherwise.
22239
22240 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
22241
22242         * object.c (arith_overflow): Fix warning.
22243
22244         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
22245         calling conventions in method refs. Fixes #65352.
22246
22247         * reflection.c: Fix warnings.
22248
22249 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
22250
22251         * icall.c: Add a new icall for Array.Clear
22252
22253 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
22254
22255         * object.c: When allocating an array, we have to throw
22256         an overflow exception if any of the lengths are < 0.
22257
22258 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
22259
22260         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
22261         properly. Also move implementation of string array marshalling to 
22262         managed code. Fixes #42316.
22263
22264 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22265
22266         * assembly.c: provide more information when loading an assembly fails.
22267
22268 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22269
22270         * filewatcher.c: don't expect the development fam package to be
22271         installed.
22272
22273 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
22274
22275         * marshal.c: Make a copy of the signature cookie since it will be
22276         freed by the caller.
22277         
22278         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
22279
22280         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
22281
22282         * metadata.c (mono_metadata_free_marshal_spec): New function to free
22283         marshal specs.
22284
22285         * marshal.c: More refactoring.
22286         
22287         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
22288         smaller functions.
22289
22290 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
22291
22292         * object.c: In mono_message_invoke, fill the output parameter array after
22293           calling the managed method (it was done before the call). This fixes
22294           bug #59299.
22295
22296 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
22297
22298         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
22299         as well.
22300
22301 2004-09-02  Martin Baulig  <martin@ximian.com>
22302
22303         * class.c (mono_class_instance_size): Don't allow generic type
22304         definitions or open generic instances.
22305         (mono_class_array_element_size): If we're a value type, call
22306         mono_class_instance_size() on the original class.
22307
22308         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
22309         handle generic instances.
22310
22311         * mono-debug-debugger.c (write_type): Handle generic instances
22312         like classes.
22313
22314 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
22315
22316         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
22317         the allocation request fails. Fixes #65089.
22318
22319         * object.c (mono_runtime_free_method): Do not call mono_free_method.
22320         
22321         * object.c (mono_runtime_free_method): New function to free a dynamic
22322         method.
22323
22324         * marshal.c (mono_delegate_free_ftnptr): New function to free the
22325         delegate trampoline.
22326
22327         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
22328         with hasthis as dynamic,
22329
22330         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
22331
22332         * domain.c (mono_jit_info_table_remove): New function to remove an
22333         entry from the jit info table.
22334
22335         * class-internals.h (MonoMethod): Add 'dynamic' field.
22336
22337         * loader.c: Fix warnings.
22338
22339 2004-09-01  Martin Baulig  <martin@ximian.com>
22340
22341         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
22342         instead of mono_debugger_lock() because the latter one is a no-op
22343         unless running in the debugger.
22344
22345 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
22346
22347         * class.c (class_compute_field_layout): Classes with auto-layout or
22348         reference fields are not blittable.
22349         
22350 2004-09-01  Dick Porter  <dick@ximian.com>
22351
22352         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
22353         mono_image_get_filename() to get the assembly location.
22354
22355         * icall.c:
22356         * metadata.h: Fix compile warnings
22357
22358 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
22359
22360         * class.c (class_compute_field_layout): System.Object is blittable.
22361
22362         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
22363         as in/out. Fixes #59909.
22364
22365 2004-09-01  Martin Baulig  <martin@ximian.com>
22366
22367         * metadata.h (MONO_TYPE_ISREFERENCE): Call
22368         mono_metadata_generic_inst_is_valuetype() if we're a generic
22369         instance to check whether our underlying type is a reference type.
22370
22371 2004-09-01  Martin Baulig  <martin@ximian.com>
22372
22373         * metadata.c (mono_type_size): If we're a generic instance, call
22374         mono_class_value_size() for value types.
22375
22376 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
22377
22378         * marshal.c: Implement more custom marshalling functionality. Fixes
22379         #64915.
22380
22381 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
22382
22383         * mono-debug.c, debug-mono-symfile.c: add some locking love.
22384
22385 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
22386
22387         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
22388
22389         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
22390
22391         * icall.c: Fix some warnings.
22392
22393         * threads.c (abort_appdomain_thread): Fix unref errors.
22394         (mono_thread_current): Fix THREAD_DEBUG define.
22395
22396 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
22397
22398         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
22399
22400         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
22401
22402 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
22403
22404         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
22405         string arrays.
22406
22407 2004-08-28  Martin Baulig  <martin@ximian.com>
22408
22409         * metadata.c
22410         (mono_metadata_generic_inst_is_valuetype): New public function.
22411
22412         * metadata.h (MONO_TYPE_ISSTRUCT): Call
22413         mono_metadata_generic_inst_is_valuetype() if we're a generic
22414         instance to check whether our underlying type is a valuetype.
22415
22416 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
22417
22418         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
22419         #63768.
22420
22421 2004-08-25  Martin Baulig  <martin@ximian.com>
22422
22423         * loader.c (mono_get_method_from_token): Abstract methods can also
22424         be generic and thus have type parameters.
22425
22426         * metadata-internals.h
22427         (MonoDynamicImage): Added `GPtrArray *gen_params'.
22428
22429         * reflection.c (mono_image_get_generic_param_info): Don't create a
22430         metadata row, just add an entry to the `gen_params' array.
22431         (build_compressed_metadata): Sort the `gen_params' array and then
22432         actually create the metadata.
22433
22434 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22435
22436         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
22437
22438 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
22439
22440         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
22441
22442 2004-08-24  Martin Baulig  <martin@ximian.com>
22443
22444         * class.cs (mono_class_is_subclass_of): Like an interface, a
22445         generic instance also derives from System.Object.
22446
22447 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
22448
22449         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
22450         custom modifiers to be in any order. Fixes #61990.
22451
22452 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
22453
22454         * object.c: Register mono_object_new_fast icall.
22455         
22456         * object.c (mono_class_get_allocation_ftn): Return to calling
22457         mono_object_new_fast, since it seems faster to compute the object 
22458         size in unmanaged code than passing it as a parameter.
22459
22460         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
22461
22462         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
22463         this function with Boehm as the oom handler, so we don't have to check
22464         the result of GC_malloc.
22465
22466         * object.c: Remove checks for oom.
22467
22468         * object.h object.c (mono_class_get_allocation_ftn): New function to
22469         return the icall which can be used to allocate an instance of a given
22470         class. 
22471
22472         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
22473
22474         * class-internals.h: Add 'enabled' field.
22475
22476 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
22477
22478         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
22479
22480 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
22481         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
22482         value 0x0010.
22483
22484 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
22485
22486         * appdomain.c: use the Tls function for appdomain too,
22487         at Zoltan's request. Actually return in mono_context_get
22488
22489         * appdomain.c, profiler.c, threads.c: use __thread
22490
22491 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
22492
22493         * appdomain.c threads.c: Call GC_CreateThread on windows.
22494
22495         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
22496         multiple libraries since this don't work on windows.
22497
22498 2004-08-18  Martin Baulig  <martin@ximian.com>
22499
22500         * class-internals.h
22501         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
22502         MonoMethodHeader.
22503
22504         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
22505         MonoMethodNormal since we also need it for abstract and interface
22506         methods.
22507
22508         * reflection.c
22509         (build_compressed_metadata): Sort the GenericParam table.
22510         (mono_image_create_token): Added `gboolean create_methodspec'
22511         argument; this is false when generating a MethodImpl token.
22512         (reflection_methodbuilder_to_mono_method): Abstract and interface
22513         methods may also have generic parameters.
22514
22515 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
22516
22517         * appdomain.c: thread local alloc
22518
22519 2004-08-17  Martin Baulig  <martin@ximian.com>
22520
22521         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
22522
22523         * icall.c
22524         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
22525         argument.
22526
22527         * class.c (mono_type_get_full_name): New public function.
22528         (mono_type_get_name): Don't include the type arguments.
22529
22530 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
22531
22532         * Makefile.am: Build static versions of libmetadata and libmonoruntime
22533         for inclusion into the mono executable.
22534
22535 2004-08-16  Martin Baulig  <martin@ximian.com>
22536
22537         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
22538         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
22539
22540 2004-08-14  Martin Baulig  <martin@ximian.com>
22541
22542         * class.c (dup_type): Also copy the `byref' field.
22543
22544 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
22545
22546         * reflection.c (create_dynamic_mono_image): Revert the last change 
22547         since it breaks bootstrap.
22548
22549 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
22550
22551         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
22552
22553         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
22554         not free them with g_free.
22555
22556 2004-08-11  Martin Baulig  <martin@ximian.com>
22557
22558         * reflection.c (mono_reflection_setup_internal_class): Also call
22559         mono_class_setup_mono_type() if we already have a `tb->type.type'.
22560
22561 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
22562
22563         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
22564         called during default (first) AppDomain creation. Keep track of
22565         Evidence when loading assemblies.
22566
22567 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
22568
22569         * opcodes.c, opcodes.h: reduce runtime relocations.
22570
22571 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
22572
22573         * culture-info.h, locales.c: fixes and chages to sue the new
22574         optimized format of the locale data.
22575         * culture-info-tables.h: regenerated.
22576
22577 2004-08-06  Geoff Norton <gnorton@customerdna.com>
22578         
22579         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
22580
22581 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
22582
22583         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
22584         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
22585         * domain-internals.h: icall declaration.
22586         * icall.c: icall registration.
22587         * object-internals.h: New fields in MonoAssembly for CAS.
22588
22589 2004-08-05  Duncan Mak  <duncan@ximian.com>
22590
22591         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
22592         CEE_LDELEM_ANY.
22593
22594 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
22595
22596         * reflection.c: fix to deal with object[] arrays in custom ctors
22597         (bug #62550).
22598
22599 2004-08-05  Martin Baulig  <martin@ximian.com>
22600
22601         * class.c (mono_class_array_element_size): Added support for
22602         generic instances and correctly handle "recursive" types.
22603
22604 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
22605
22606         * assembly.c: Fix warnings.
22607
22608 2004-08-04  Martin Baulig  <martin@ximian.com>
22609
22610         * class.c
22611         (mono_type_get_name_recurse): Added `gboolean include_arity'
22612         argument specifying whether or not we should include the generic
22613         arity in the type name.
22614         (_mono_type_get_name): New static function.
22615         (mono_class_setup_vtable): If we're a generic instance, don't
22616         include the generic arity in the names of explicit method
22617         implementations.        
22618
22619 2004-08-03  Martin Baulig  <martin@ximian.com>
22620
22621         * class.c (mono_type_get_name_recurse): Enclose the generic type
22622         arguments in `<', '>'.
22623
22624 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
22625
22626         * gc.c: make GC warning messages use the trace API, they are just
22627         noise to most of the users.
22628
22629 2004-08-03  Martin Baulig  <martin@ximian.com>
22630
22631         * debug-mono-symfile.c (read_string): Correctly read the string.
22632
22633 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
22634
22635         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
22636         
22637         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
22638         icalls.
22639         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
22640
22641 2004-07-30  Martin Baulig  <martin@ximian.com>
22642
22643         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
22644         Reflect latest symbol writer changes.   
22645
22646 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
22647
22648         * object.c: always create an object if null is passed
22649         to Invoke() where a valuetype is expected.
22650
22651 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
22652
22653         * marshal.c (mono_marshal_init): make managed
22654         signatures match native ones better for 64bits.
22655
22656 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22657
22658         * appdomain.c: hack to build correctly the private bin path on windows.
22659         Fixes bug #61991.
22660
22661 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
22662
22663         * assembly.c: Load mscorlib from the correct framework directory
22664           (mono/<version>/mscorlib.dll).
22665         * appdomain.h: Added prototypes for new functions.
22666         * internals.h: Added some prototypes.
22667         * domain.c: When initializing the runtime, get from the executable and
22668           the configuration files the runtime version that the app supports.
22669           Added support methods for reading app.exe.config. Added list of versions
22670           supported by the JIT. Added two new methods: mono_init_from_assembly,
22671           which initializes the runtime and determines the required version from
22672           the provided exe file, and mono_init_version, which initializes
22673           the runtime using the provided version.
22674         * icall.c: Get machine.config from version-specific directory.
22675         * reflection.c: When generating an image, embed the version number
22676           of the current runtime.
22677
22678 2004-07-28  Dick Porter  <dick@ximian.com>
22679
22680         * socket-io.c
22681         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
22682         returned sockaddr size before creating the remote address object.
22683         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
22684         61608.
22685
22686 2004-07-28  Dick Porter  <dick@ximian.com>
22687
22688         * locales.c (string_invariant_compare_char): Fix invariant char
22689         compares between upper and lower cases.  Fixes bug 61458.
22690
22691 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
22692         
22693         * marshal.c: actually cache stelem.ref wrappers.
22694         
22695 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
22696
22697         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
22698         sections and remove the mono_cli_rva_map () function.
22699
22700 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
22701
22702         * debug-mono-symfile.c: fix one more endianess issue, from a patch
22703         by Geoff Norton (<gnorton@customerdna.com>).
22704
22705 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
22706
22707         * class.c: fix class loads for pointer types (typeof(int) !=
22708         typeof(int*)).
22709
22710 2004-07-27  Martin Baulig  <martin@ximian.com>
22711
22712         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
22713         reading the debugging information from an external ".mdb" file.
22714
22715 2004-07-24  Martin Baulig  <martin@ximian.com>
22716
22717         * reflection.c (mono_image_get_type_info): Only write a class
22718         layout entry if we actually have a size or a packing size.
22719
22720 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
22721
22722         * reflection.c (type_get_fully_qualified_name): 
22723         insert cast to get type checking of ?: with non-gcc compilers
22724
22725 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
22726
22727         * rand.c: use g_getenv for both lookups of
22728         MONO_EGD_SOCKET
22729
22730 2004-07-17  Martin Baulig  <martin@ximian.com>
22731
22732         * reflection.c (mono_reflection_bind_generic_method_parameters):
22733         Set `gmethod->reflection_info'.
22734
22735 2004-07-17  Martin Baulig  <martin@ximian.com>
22736
22737         * class.c (mono_class_create_from_typedef): Insert the newly
22738         created class into the hash table before computing the interfaces
22739         since we could be called recursively.
22740
22741 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
22742
22743         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
22744         function to implement stelem.ref in managed code
22745         * class-internals.h, debug-helpers.c: a new wrapper type
22746         for the above.
22747
22748 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
22749
22750         * gc.c: allow GC handles to work even when no GC is compiled in.
22751         Fix part of bug #61134 (GetAddrOfPinnedObject).
22752
22753 2004-07-13  Peter Williams  <peter@newton.cx>
22754  
22755         * process.c (complete_path): Make sure we don't attempt to execute
22756         directories.
22757  
22758 2004-07-12  Geoff Norton <gnorton@customerdna.com>
22759
22760         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
22761           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
22762           and will add/subtract the hour if needed
22763
22764 2004-07-12  Martin Baulig  <martin@ximian.com>
22765
22766         * reflection.c (mono_field_get_object): If we have
22767         `field->generic_info', take the attributes from
22768         `field->generic_info->generic_type'.    
22769
22770 2004-07-12  Martin Baulig  <martin@ximian.com>
22771
22772         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
22773         This function must be called before initializing the runtime.
22774         (mono_debug_init_1): New function; call this after initializing
22775         the runtime, but before loading the assembly.  It tells the
22776         debugger to load corlib and the builtin types.
22777
22778         * mono-debug-debugger.c: Did some larger changes in the debugging
22779         code; support recursive class declarations, make sure we actually
22780         add all classes.
22781
22782 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22783
22784         * debug-helpers.c: undo my previous patch and fixed the real issue in
22785         ../mini/exceptions-x86.c
22786
22787 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22788
22789         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
22790         when no HOME env. variable was set and a NullRef was thrown in a .cctor
22791         called from other .cctors.
22792
22793 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
22794
22795         * loader.c: Removed the mono_loader_wine_init hack now that we are
22796         doing a managed version of Windows.Forms.
22797
22798 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
22799
22800         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
22801         threadpool.c, threads.c: remove static data from rootset.
22802
22803 2004-07-09  Dick Porter  <dick@ximian.com>
22804
22805         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
22806         Don't do any more processing if the matched length was 0.  It was
22807         increasing the size of the string before.  Fixes bug 61167.
22808
22809 2004-07-09  Dick Porter  <dick@ximian.com>
22810
22811         * socket-io.h:
22812         * socket-io.c
22813         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
22814         Add support for SO_PEERCRED if its available.
22815
22816 2004-07-09  Peter Bartok <pbartok@novell.com>
22817         * loader.c: winelib.exe.so error message is now only displayed if
22818         MONO_DEBUG is set. To help us avoid questions when people are trying
22819         out the new Managed.Windows.Forms.
22820
22821 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
22822
22823         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
22824         for isinst and castclass wrappers.
22825
22826         * class-internals.h icall.c: Move registration and lookup of JIT icalls
22827         to libmetadata from the JIT, so they could be used by the marshalling
22828         code and the interpreter.
22829
22830         * marshal.c: Register marshalling related JIT icalls here instead of
22831         in mini.c. Use CEE_MONO_ICALL instead of the family of 
22832         CEE_MONO_PROC<x> opcodes to call marshalling functions.
22833
22834         * metadata.h: Remove unneeded marshalling conversions.
22835
22836         * opcodes.c: Update for new opcodes.
22837         
22838 2004-07-08  Martin Baulig  <martin@ximian.com>
22839
22840         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
22841         (mono_debug_get_domain_data): Make this function static.
22842
22843 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
22844
22845         * gc.c, object.h: add nice GC handle API for embedders.
22846
22847 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
22848
22849         * reflection.c: more changes for the new api
22850
22851         * object.c: When we reflect on a field w/ a constant value, it
22852         will not have a memory location, so we must access metadata. Also,
22853         allow easier reading of strings so that we can read them from
22854         the constant data.
22855
22856         * class.c (mono_class_layout_fields): no need for literal fields here.
22857
22858         * class-internals.h: api changes for const fields
22859
22860         * icall.c (ves_icall_get_enum_info): use new apis for const fields
22861
22862 2004-07-06  Martin Baulig  <martin@ximian.com>
22863
22864         * mono-debug.h: Increment version number to 44.
22865
22866         * mono-debug.c (mono_debug_add_wrapper): The second argument is
22867         now a gpointer, rewrote this whole method.
22868
22869         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
22870         function.  Add information about the wrapper in a new "misc table".
22871
22872         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
22873         for the new misc table.
22874
22875 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
22876
22877         * metadata-internals.h image.c: Add a cache for helper signatures.
22878
22879         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
22880
22881 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
22882
22883         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
22884         delegates from a delegate. Fixes #61033.
22885         
22886         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
22887         marshalling of stringbuilder arrays. Fixes #59900.
22888
22889 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
22890
22891         * icall.c: Add EnumBuilder:setup_enum_type icall.
22892
22893 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
22894
22895         * icall.c: Added a new icall for the property version of
22896         OffsetOfStringData.
22897
22898 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
22899
22900         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
22901         it has a constant size across platforms.
22902
22903         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
22904         stack trace.
22905
22906 2004-06-29  Martin Baulig  <martin@ximian.com>
22907
22908         * mono-debug.c (mono_debug_add_method): Protect the whole function
22909         in mono_debugger_lock(), not just parts of it.
22910
22911 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
22912
22913         * reflection.c: make sure padding bytes in heaps are zeroed.
22914
22915 2004-06-24  David Waite  <mass@akuma.org>
22916
22917         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
22918         image.c, loader.c, locales.c, marshal.c, metadata.c,
22919         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
22920         string-icalls.c, threads.c: change to C90-style comments from C99 /
22921         C++ -style
22922
22923 2004-06-24  Dick Porter  <dick@ximian.com>
22924
22925         * threads.c
22926         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
22927         return createdNew.  Fixes bug 60412.
22928
22929         * threads-types.h: 
22930         * icall.c: Add createdNew parameter to CreateMutex icall
22931
22932 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
22933
22934         * reflection.c, object-internals.h: save default value in params.
22935
22936 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22937
22938         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
22939         no need to build a new path combining that with the application base.
22940         Fixes bug #60442.
22941
22942 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
22943
22944         * reflection.c: fixed minor standard compliance issues.
22945
22946 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
22947
22948         * reflection.c: fixed issue with encoding some custom attributes
22949         (arrays in properties and fields, bug #60411).
22950
22951 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22952
22953         * reflection.c: fix start address when copying the public key token.
22954
22955 2004-06-23  Martin Baulig  <martin@ximian.com>
22956
22957         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
22958         the `exc' object in a static object to put it into the GC's root set.
22959
22960 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
22961
22962         * reflection.c: make mono_reflection_setup_internal_class ()
22963         callable a second time to setup a new parent class.
22964
22965 2004-06-23  Dick Porter  <dick@ximian.com>
22966
22967         * threads.c: Check for WAIT_IO_COMPLETION return values.
22968
22969 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
22970
22971         * appdomain.c: Removed the g_free on the public key token. Now copy 
22972         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
22973         * assembly.c: Added public key token string value when loading 
22974         assemblies. Fix bug #60439.
22975         * icall.c: Added missing informations (like public key) in 
22976         GetReferencedAssemblies. Fix #60519.
22977         * image.h: Changed definition for public key token from const char*
22978         public_tok_value to guchar public_key_token [17];
22979         * reflection.c: Updated for changes to public key token.
22980
22981 2004-06-22  Lluis Sanchez Gual
22982
22983         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
22984         for the field in base classes.
22985
22986 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
22987
22988         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
22989         mark headers as not supported, they are installed only for use by the
22990         debugger.
22991
22992 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
22993
22994         * *.c, *.h: avoid namespace pollution in public headers.
22995
22996 2004-06-21  Martin Baulig  <martin@ximian.com>
22997
22998         * exception.c (mono_get_exception_security): It's in
22999         "System.Security", not in "System".
23000
23001         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
23002         the exception classes.
23003
23004 2004-06-21  Martin Baulig  <martin@ximian.com>
23005
23006         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
23007         Protect the exception object from being finalized.
23008
23009 2004-06-21  Martin Baulig  <martin@ximian.com>
23010
23011         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
23012         public function.
23013
23014 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
23015
23016         * reflection.c: Load the assembly in mono_reflection_type_from_name,
23017         if it was not loaded before. Fix parts of #60439.
23018
23019 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
23020
23021         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
23022         code that was broken since Ben's change: wrappers are now
23023         dependent on the method signature only again.
23024
23025 2004-06-21  Martin Baulig  <martin@ximian.com>
23026
23027         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
23028         added interface support.
23029
23030 2004-06-21  Martin Baulig  <martin@ximian.com>
23031
23032         * class.c (mono_vtable_get_static_field_data): New public method.
23033
23034 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
23035
23036         * filewatcher.c : Windows build fix to be compliant with API changes.
23037
23038 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
23039
23040         * class.h, class.c: more accessors.
23041         * metadata.h, metadata.c: prepare for hiding MonoType and
23042         MonoMethodSignature: people should use the accessors from now on
23043         outside of the tree.
23044
23045 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
23046
23047         * *.c, *.h: more API cleanups.
23048
23049 2004-06-18  Jackson Harper  <jackson@ximian.com>
23050
23051         * assembly.c: Trace loading assemblies.
23052         * loader.c: Trace loading native libraries.
23053         * mono-config.c: Trace loading config files.
23054         
23055 2004-06-18  Dick Porter  <dick@ximian.com>
23056
23057         * locales.c: Tell ICU the lengths of strings, it can cope with
23058         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
23059
23060 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
23061
23062         * image.c: swapped name/filename;
23063
23064 2004-06-18  Martin Baulig  <martin@ximian.com>
23065
23066         * mono-debug-debugger.c (write_class): Write the parent class at
23067         the end of the header.
23068
23069 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
23070
23071         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
23072
23073 2004-06-17  Raja R Harinath  <rharinath@novell.com>
23074
23075         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
23076         (bundle_obj): New conditional define.
23077         (BUILT_SOURCES): Remove.
23078         ($(bundle_srcs)): Make parallel-make safe.
23079         (libmonoruntime_la_LIBADD): Make unconditional.
23080         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
23081         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
23082
23083 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
23084
23085         * culture-info-tables.h: It was inconsistent with the latest
23086           supp info files.
23087
23088 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
23089
23090         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
23091         be loaded.
23092
23093         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
23094         with gcc 2.95.
23095
23096 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
23097
23098         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
23099         cleaned up public header threads.h.
23100
23101 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
23102
23103         * Makefile.am, *.c, *.h: more API cleanups.
23104
23105 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
23106
23107         * Makefile.am: removed monosn from compilation.
23108         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
23109         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
23110         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
23111         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
23112         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
23113         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
23114
23115 2004-06-15  Jackson Harper  <jackson@ximian.com>
23116
23117         * assembly.c: Make locales lower case when searching the GAC for
23118         assemblies. gacutil will always make locales lowercase when
23119         installing so this effectively makes them case insensitive.
23120         
23121 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
23122
23123         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
23124         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
23125           parameter which allows to choose whether the wait can be interrupted or 
23126           not. Also added the method mono_monitor_enter(), which locks the monitor
23127           using an infinite wait and without allowing interruption.
23128           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
23129           interrupted.
23130         * object.h: Added new fields in MonoThread. suspend_event holds the event
23131           used to susped/resume the thread. synch_lock is the lock object to use for
23132           modifying the thread state.
23133         * threads.c: Use the new synch_lock object for locking, instead of "this",
23134           which can generate deadlocks.
23135           Moved thread state change in Thread.Sleep and Thread.Join from managed
23136           to unmanaged code. This avoids a deadlock when the thread was suspended
23137           just after acquiring the thread lock.
23138           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
23139           Implemented Thread.Suspend using an event instead of ThreadSuspend,
23140           which is not fully implemented in the io-layer.
23141         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
23142
23143 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
23144
23145         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
23146         threads-types.h: more API cleanups.
23147
23148 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
23149
23150         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
23151         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
23152         threadpool.c, threads.c: first pass at the exported API cleanup.
23153
23154 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
23155
23156         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
23157
23158 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23159
23160         * icall.c: added internalGetHome.
23161
23162 2004-06-14  Dick Porter  <dick@ximian.com>
23163
23164         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
23165         possible to return successfully when '.' or '..' were the only
23166         entries in a directory, but were skipped.  The MonoIOStat was not
23167         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
23168         Fixes bug 59574.
23169
23170 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
23171
23172         * reflection.c: make binaries run on .Net 1.1 by default.
23173
23174 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
23175
23176         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
23177
23178 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
23179
23180         * marshal.c: keep track of struct size with explicit layout
23181         (bug #59979).
23182
23183 2004-06-12  Martin Baulig  <martin@ximian.com>
23184
23185         * mono-debug-debugger.c: Comment out a debugging g_message().
23186
23187 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
23188
23189         * reflection.c, reflection.h: do not free custom attrs that are cached.
23190         * icall.c: use braces to make code clearer.
23191
23192 2004-06-11  Martin Baulig  <martin@ximian.com>
23193
23194         * class.h (MonoInflatedField): New type.
23195         (MonoClassField): Replaced `MonoType *generic_type' with
23196         `MonoInflatedField *generic_info'.
23197
23198         * icall.c
23199         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
23200
23201 2004-06-11  Martin Baulig  <martin@ximian.com>
23202
23203         * reflection.c (mono_image_create_method_token): Correctly encode
23204         varargs methods.
23205
23206 2004-06-11  Martin Baulig  <martin@ximian.com>
23207
23208         * metadata.c (mono_metadata_parse_method_signature): When parsing
23209         a MethodDef which has VarArgs, also set sentinelpos if we don't
23210         have any parameters.
23211
23212 2004-06-11  Martin Baulig  <martin@ximian.com>
23213
23214         * verify.c (mono_method_verify): In CEE_CALL, use
23215         mono_method_get_signature() to get the method's signature, unless
23216         we're a PInvoke method.
23217
23218 2004-06-10  Jackson Harper  <jackson@ximian.com>
23219
23220         * assembly.c: Use <path>/lib/mono/gac for the extra paths
23221         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
23222         logical name as the supplied path is just a prefix to the gac not
23223         the direct path to it.
23224         
23225 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
23226
23227         * reflection.c: make the token for a created method match
23228         the token of the MethodBuilder it was created from
23229         (IKVM requires this behaviour now).
23230
23231 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
23232
23233         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
23234         reflection.c, socket-io.c: leak fixes.
23235
23236 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
23237
23238         * icall.c: handle sentinel pos in vararg methods in position different
23239         from 0.
23240
23241 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23242
23243         * culture-info-tables.h: freshly generated.
23244
23245 2004-06-09  Martin Baulig  <martin@ximian.com>
23246
23247         * loader.c (mono_get_method_constrained): Call `mono_class_init
23248         (constrained_class)'.   
23249
23250 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
23251
23252         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
23253         any methods. Fixes #59629.
23254
23255 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
23256
23257         * culture-info-tables.h: reflecting locale-builder updates.
23258
23259 2004-06-08  Dick Porter  <dick@ximian.com>
23260
23261         * object.h:
23262         * locales.c: Fixed compile warnings, including a real bug in
23263         CompareInfo_internal_compare.
23264         
23265 2004-06-08  Dick Porter  <dick@ximian.com>
23266
23267         * locales.c
23268         (ves_icall_System_Globalization_CompareInfo_internal_index):
23269         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
23270         Double-check the resuls of usearches, because ICU currently
23271         ignores most of the collator settings here.  Fixes bug 59720.
23272         
23273 2004-06-08  Dick Porter  <dick@ximian.com>
23274
23275         * locales.c
23276         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
23277         Fix memory leak and segfault-causing typo.  No idea how this one
23278         lasted so long without being noticed.
23279
23280 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
23281
23282         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
23283         any methods. Fixes #59629.
23284
23285 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23286
23287         * assembly.c:
23288         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
23289         own the critical section before). Removed dead code (that's done
23290         in the preload hook).
23291
23292         (mono_assembly_load_with_partial_name): call the preload hook.
23293
23294 2004-06-08  Martin Baulig  <martin@ximian.com>
23295
23296         * metadata.c (mono_metadata_signature_alloc): Default
23297         `sentinelpos' to -1.
23298
23299         * reflection.c (mono_image_get_array_token): Likewise.
23300
23301 2004-06-08  Martin Baulig  <martin@ximian.com>
23302
23303         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
23304
23305         * metadata.c (mono_metadata_parse_method_signature): When parsing
23306         a MethodDef which has VarArgs, set sentinelpos.
23307
23308         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
23309         `gint16' since we're using -1 for non-varargs methods.
23310
23311         * reflection.c
23312         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
23313         (method_encode_signature): Added varargs support.
23314         (method_builder_encode_signature): Likewise.
23315         (mono_image_get_varargs_method_token): New static method.
23316         (mono_image_create_method_token): New public method; this is
23317         called via an icall instead of mono_image_create_token() when
23318         calling a varargs method.       
23319
23320 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
23321
23322         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
23323
23324 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
23325
23326         * culture-info-tables.h : Reflecting the latest locale-builder that
23327           fixed empty array representation ({} to {0}).
23328
23329 2004-06-07  Jackson Harper  <jackson@ximian.com>
23330
23331         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
23332         looking up extra gac paths. This allows MONO_GAC_PATH to act
23333         exactly like a prefix.
23334         
23335 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
23336
23337         * reflection.c (mono_reflection_type_from_name): Make a copy of the
23338         type name before modifying it. Fixes #59405.
23339
23340 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
23341
23342         * culture-info.h: added fields for "all datetime patterns".
23343         * locales.c: (  ves_icall_System_Globalization_CultureInfo
23344           _construct_datetime_format ()): fill xxx_patterns fields.
23345         * object.h: added fields for "all datetime patterns" to
23346           MonoDateTimeFormatInfo.
23347         * culture-info-tables.h: reflecting locale-builder updates.
23348
23349 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
23350
23351         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
23352         the event has no add and remove methods. Fixes #59629.
23353
23354 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
23355
23356         * object.c: Fixed possible integer overflow when allocating large
23357         strings.
23358
23359 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
23360
23361         * culture-info-tables.h: reflecting locale-builder updates.
23362
23363 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
23364
23365         * culture-info-tables.h: reflecting locale-builder updates.
23366
23367 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
23368
23369         * culture-info-tables.h: reflecting locale-builder updates.
23370
23371 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
23372
23373         * threads.c: Made Thread.Sleep abortable.
23374
23375 2004-06-02  Martin Baulig  <martin@ximian.com>
23376
23377         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
23378
23379         * debug-mono-symfile.h: Bumped symbol file version number to 37.
23380
23381 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
23382
23383         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
23384
23385 2004-05-30  Jackson Harper  <jackson@ximian.com>
23386
23387         * reflection.c: Do not hardcode assembly versions or public key
23388         tokens anymore. All of this except the corlib section was dead
23389         code anyways.
23390         
23391 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
23392
23393         * object.c (mono_runtime_invoke_array): Automatically create boxed
23394         objects for byref valuetypes if needed. Fixes #59300.
23395         
23396         * object.c (mono_method_return_message_restore): Handle 
23397         MONO_TYPE_OBJECT as well.
23398
23399 2004-05-28  Jackson Harper  <jackson@ximian.com>
23400
23401         * reflection.c: The modified type encoding was causing build
23402         problems. Reverted for now.
23403         
23404 2004-05-28  Jackson Harper  <jackson@ximian.com>
23405
23406         * reflection.c/h: Take an assembly ref so that we dont create
23407         fully qualified names when encoding types in the same assembly as
23408         the custom attribute being emitted.
23409         * appdomain.c: Increment version number.
23410         
23411 2004-05-26  Duncan Mak  <duncan@ximian.com>
23412
23413         * icall.c
23414         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
23415         Set the full version number (major, minor, build, revision).
23416
23417 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
23418
23419         * marshal.c (emit_struct_conv): increment src/dst after blit
23420         (mono_marshal_get_managed_wrapper,
23421         mono_marshal_get_native_wrapper): make sure we have marshalling
23422         info before marshalling params (info computation affects
23423         blittable)
23424
23425         * class.c (class_compute_field_layout): correctly deal with
23426         blittable
23427         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
23428         value types (as per what windows dows by default)
23429         (mono_class_setup_mono_type): System.ValueType is blittable
23430         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
23431         blittable
23432
23433         * marshal.c (mono_marshal_load_type_info): flag types  as
23434         non-blittable if the native layout doesn't match the managed
23435         layout
23436
23437 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23438
23439         * appdomain.c: don't add stuff in the private search path that is
23440         above the application base. If application base is not set, there's
23441         no private search path.
23442
23443 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
23444
23445         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
23446         byref struct arguments in native->managed marshalling.
23447
23448 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
23449
23450         * marshal.c (mono_marshal_get_runtime_invoke): correctly
23451         cache methods using signature (special case for methods
23452         that are value type or string class)
23453         
23454         * image.c (mono_image_close): clean up allocated GSList's
23455         in runtime_invoke_cache.
23456
23457 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23458
23459         * mono-config.c: set the correct path for mono_cfg_dir on windows when
23460         there's no MONO_CFG_DIR environment variable defined.
23461
23462 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23463
23464         * threads.c: windows version must be >= 0x0500 to include OpenThread.
23465
23466 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
23467
23468         * threadpool.c: Really wait for 500ms after the async call, even if the wait
23469           is interrumped.
23470         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
23471           before waiting for it, and call CloseHandle after the wait to unref it.
23472           This will make sure that handles are not disposed too early.
23473
23474 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23475
23476         * appdomain.c:
23477         * appdomain.h:
23478         * icall.c: removed
23479         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
23480         needed now.
23481
23482         * object.c: se the application_base only for the domain that runs
23483         Main. Fixes bug #59216,
23484
23485 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23486
23487         * appdomain.c:
23488         * object.c: only the domain in which Main is run have
23489         SetupInformation.ConfigurationFile set, so moved a few lines from
23490         appdomain.c to object.c.
23491
23492 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23493
23494         * appdomain.c: we tried to load [name].(dll|exe), but according
23495         to bug #57710, we must also try [culture]/[name].(dll|exe) and
23496         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
23497         There's a test case attached to bug #58922.
23498
23499 2004-05-27  Dick Porter  <dick@ximian.com>
23500
23501         * icall.c:
23502         * file-io.c: Implemented icalls for locking and unlocking regions
23503         in a file.
23504         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
23505         FALSE on error (fixes both compiler warning and real bug.)
23506
23507 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
23508
23509         * culture-info-tables.h: reflecting locale-builder updates.
23510
23511           (Added missing ChangeLog entry for 05/26)
23512
23513 2004-05-27  Jackson Harper  <jackson@ximian.com>
23514
23515         * locales.c: Fix some cut and paste errors.
23516         
23517 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23518
23519         * mono-config.c: set the correct path for config. directory on windows.
23520
23521 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
23522
23523         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
23524           on win32.
23525
23526 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
23527
23528         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
23529         from pinvoke functions.
23530         
23531         * marshal.c (mono_ftnptr_to_delegate): Implement this.
23532
23533 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
23534
23535         * culture-info-tables.h: reflecting locale-builder updates.
23536
23537 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
23538
23539         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
23540         #59086.
23541
23542 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
23543
23544         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
23545         * icall.c: Modified icalls for RNG.
23546         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
23547         Windows (CryptoAPI).
23548
23549 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
23550
23551         * locales.c: Fix build.
23552
23553 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
23554
23555         * culture-info-tables.h: reflecting locale-builder updates.
23556
23557 2004-05-25  Jackson Harper  <jackson@ximian.com>
23558
23559         * locales.c: When creating the current culture use the $LANGs
23560         specific culture. So DateTimeFormat and NumberFormat entries are created.
23561         
23562 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
23563
23564         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
23565         a char array as parameter.
23566
23567 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
23568
23569         * image.c: In mono_image_open(), always use an absolute path name to
23570           look for already loaded images.
23571
23572 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
23573
23574         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
23575         missing in the windows build (like older cygwin include files).
23576
23577 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
23578
23579         * icall.c: Fixed check for possible integer overflow in Buffer_
23580         BlockCopy icall. Replaced comments style // by /* */.
23581
23582 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
23583
23584         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
23585         
23586         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
23587         check after MONO_VTADDR. Fixes pinvoke2.exe.
23588
23589         * marshal.h marshal.c metadata.h: Add beginnings of support for
23590         ftnptr -> delegate marshalling.
23591
23592 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
23593
23594         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
23595         * threads.c: Fix warnings.
23596
23597 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
23598
23599         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
23600         * icall.c: Registered icalls for Suspend and Resume.
23601         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
23602           Thread.Abort.
23603         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
23604         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
23605         * process.c: Use WaitForSingleObjectEx.
23606         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
23607           checkpoints.
23608         * threads.c, threads.h: Make use of new Ex wait methods. Improved
23609           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
23610           for Suspend and Resume. Added new mono_thread_stop, used for stoping
23611           background threads. Added basic support for Abort in Windows.
23612           Start new threads using a managed delegate invoke wrapper. This wrapper
23613           has an interruption checkpoint that is needed since an interruption
23614           can be requested before the thread leaves the unmanaged code that starts 
23615           the thread.
23616         * marshal.c: Added interruption checkpoint after every native call, and
23617           also before managed calls for wrappers called from unmanaged code to
23618           go into managed code.
23619         * object.h: Added new field in MonoThread to keep track of interruption
23620           requests.
23621
23622 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
23623
23624         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
23625         calls.
23626
23627 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23628
23629         * appdomain.c:
23630         * assembly.c:
23631         * gc.c:
23632         * locales.c:
23633         * mono-config.c:
23634         * rand.c: getenv -> g_getenv (windows!)
23635
23636         * process.c: complete_path is also used on non-windows platforms.
23637
23638 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23639
23640         * icall.c: new signature for Process_Start.
23641
23642         * process.[ch]: new signature for Process_Start. If we're on windows
23643         and UseShellExecute is false, we have to search for the program by
23644         ourselves if we don't get a full path.
23645
23646 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
23647
23648         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
23649         marshalling and call CleanUpNativeData if needed. Fixes #58646.
23650
23651 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23652
23653         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
23654         Fixes bug #58373.
23655
23656 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23657
23658         * process.c: use double quotes to quote program name and arguments on
23659         windows. Fixes bug #58575.
23660
23661 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23662
23663         * file-io.c: don't return "." and ".." when using windows Find*File.
23664
23665 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
23666
23667         * marshal.c: Don't pass wrappers to message init because method 
23668         addressed used to lookup metadata. part of remoting[2|3] fix.
23669
23670 2004-05-15  Jackson Harper  <jackson@ximian.com>
23671
23672         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
23673         path is essentially the same as MONO_PATH except that it points to
23674         GACs instead of lib directories.
23675         * loader.h: The user gac is gone so we dont need function to
23676         enable/disable it.
23677         * mono-config.c: user gac option is now gone.
23678         
23679 2004-05-15  Jackson Harper  <jackson@ximian.com>
23680
23681         * culture-info.h: Make defines more consistent, add calendar data
23682         to the culture info table.
23683         * culture-info-tables.h: Add basic calendar data. Basically
23684         everyone gets default gregorian until all the data is
23685         updated.
23686         * locales.c: Use the new consistent defines. Set calendar data for
23687         culture info objects.
23688         * object.h: add a field for calendar data to CultureInfo
23689         
23690 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
23691
23692         * image.c: image->runtime_invoke_cache is keyed on signatures now.
23693         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
23694         a signature.
23695         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
23696         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
23697         an extra param that is the pointer of the method to invoke. The IL for
23698         the invoke method is no longer specific to the method, but to the
23699         signature of the method. Thus, we can share the same code for multiple
23700         methods. This reduces the number of methods that have to be compiled.
23701
23702 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
23703
23704         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
23705
23706         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
23707
23708         * icall.c: Optimize Buffer.BlockCopy.
23709
23710 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23711
23712         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
23713         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
23714         quote). Changed them to "MMMM yyyy".
23715
23716 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
23717
23718         * rand.c
23719         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
23720
23721 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
23722
23723         * reflection.h: Updated after changes to managed structures.
23724
23725         * appdomain.c: Bump corlib version.
23726
23727 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23728
23729         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
23730         windows.
23731
23732 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23733
23734         * Makefile.am: link to ../os/libmonoos.la on windows.
23735
23736         * assembly.c:
23737                 -If MONO_DEBUG, warn about non-existing directories in
23738                 MONO_PATH.
23739                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
23740                 compile time variable.
23741                 -Removed init_default_path and call mono_set_rootdir from
23742                 libmonoos.a instead (windows only).
23743
23744         * assembly.h: declare mono_assembly_getrootdir().
23745
23746         * domain.c:
23747         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
23748
23749         * loader.c: s/getenv/g_getenv/
23750
23751 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
23752
23753         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
23754
23755         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
23756
23757         * metadata.h: Add new marshalling conversions.
23758
23759         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
23760         function.
23761
23762         * reflection.c (mono_reflection_get_type): Lookup the type in all
23763         modules of a multi-module assembly. Fixes #58291.
23764
23765 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
23766
23767         * threads.c: Before aborting a background, set the StopRequested
23768         state.  This avoids throwing the Abort exception.
23769         In mono_thread_manage, don't continue with the shutdown until all
23770         aborted threads have actually stopped.
23771
23772 2004-05-10  Jackson Harper  <jackson@ximian.com>
23773
23774         * locales.c: Remove the modifier from culture names.
23775         
23776 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23777
23778         * Makefile.am: monosn is not installed any more. It has been deprecated
23779         in favor of sn.
23780
23781 2004-05-07  Jackson Harper  <jackson@ximian.com>
23782
23783         * locales.c
23784         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
23785         Fix array construction, add bailout if the length is 0.
23786
23787 2004-05-07  Dick Porter  <dick@ximian.com>
23788
23789         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
23790         machine doesn't have a DNS entry.  Patch by Urs Muff
23791         (umuff@quark.com), fixes bug 57928.
23792
23793 2004-05-06  Jackson Harper  <jackson@ximian.com>
23794
23795         * reflection.c: Handle null PublicTokens properly. alloc mem for
23796         assembly names culture so we dont crash when freeing it.
23797         
23798 2004-05-06  Jackson Harper  <jackson@ximian.com>
23799
23800         * assembly.c: Check the usergac when loading with partial names.
23801         
23802 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
23803
23804         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
23805         does nothing for now (not required for Linux/Windows) but the class
23806         library can call it (and a newer or modified runtime could need it).
23807         * icall.c: Registred icall.
23808
23809 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23810
23811         * loader.c: prints a message on module loading error we set MONO_DEBUG
23812         environment variable.
23813
23814 2004-05-05  Jackson Harper  <jackson@ximian.com>
23815
23816         * appdomain.c: Handle PublicKeyToken=null properly.
23817         
23818 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
23819
23820         * environment.c|h: Added icall ves_icall_System_Environment_
23821         GetOSVersionString to get the current OS version as a string.
23822         * icall.c: Registred icall.
23823
23824 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
23825
23826         * object.c: in mono_object_get_virtual_method(), take into account that
23827         non-virtual methods don't have a slot in the vtable. Check needed when
23828         the object is a proxy.
23829
23830 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
23831
23832         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
23833         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
23834
23835         * object.c (mono_class_compute_gc_descriptor): Fix warning.
23836
23837         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
23838         passed when a valuetype is expected.
23839
23840         * object.c (mono_unhandled_exception): Only set the exit code if the
23841         exception happens in the main thread. Fixes thread5.exe.
23842
23843         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
23844         invalid names. Fixes #58047.
23845
23846 2004-05-03  Jackson Harper  <jackson@ximian.com>
23847
23848         * assembly.c: This line was committed accidently and is unneeded.
23849         
23850 2004-05-03  Jackson Harper  <jackson@ximian.com>
23851
23852         * icall.c: Add new icall for Assembly::LoadWithPartialName
23853         * assembly.c/.h: new function that probes the GAC to load partial
23854         assembly names by Paolo Molaro.
23855         
23856 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23857
23858         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
23859         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
23860         (type_get_fully_qualified_name): Added PublicKeyToken when building a
23861         full type name.
23862
23863 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23864
23865         * appdomain.c: fixed check for 'neutral' culture and removed warning.
23866         * reflection.c: fix bug when parsing a full type name and Version is not
23867         the last thing in the string.
23868
23869 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
23870
23871         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
23872         crashes when it is freed.
23873
23874 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23875
23876         * assembly.c: print the compat warning to stderr.
23877
23878 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
23879
23880         * assembly.c (mono_assembly_load_references): Add a compatibility
23881         hack to run old applications that might be still referencing the
23882         3300-based assemblies, only do this for System.xxx.
23883
23884 2004-05-01  Jackson Harper  <jackson@ximian.com>
23885
23886         * appdomain.c: If the culture is neutral we set it to "".
23887         
23888 2004-04-29  Jackson Harper  <jackson@ximian.com>
23889
23890         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
23891
23892 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
23893  
23894         * string-icalls.c: added low overhead function for copying chars
23895         * icall.c: added needed icall for the above function
23896  
23897 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23898
23899         * icall.c: fix return value of get_global_assembly_cache.  Implemented
23900         Environment.GetLogicalDrives.
23901
23902 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
23903
23904         * rand.c: try and talk to egd or prngd
23905         for random bytes if opening devices fail.
23906
23907 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
23908
23909         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
23910         alignment for the type using the native alignment of its members 
23911         instead of using klass->min_align.
23912
23913         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
23914
23915 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23916
23917         * file-io.c:
23918         * socket-io.c: added check for sys/aio.h.
23919
23920 2004-04-28  Dick Porter  <dick@ximian.com>
23921
23922         * threads.c: Don't abort a thread thats already aborting, when
23923         terminating everything.
23924
23925 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23926
23927         * icall.c: added 2 new async calls for Socket.
23928
23929         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
23930         IO on *nix systems.
23931
23932         * threadpool.c: removed unused variable.
23933
23934 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
23935
23936         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
23937
23938 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
23939
23940         * locales.c: put back string_invariant_tolower () and
23941         string_invariant_toupper ().
23942
23943 2004-04-26 David Waite <mass@akuma.org>
23944
23945         * file-io.h:
23946         * socket-io.h:
23947         * threads.h:
23948         * unicode.h: remove comma from end of enumeration declarations
23949
23950 2004-04-26 David Waite <mass@akuma.org>
23951
23952         * debug-mono-symfile.h:
23953         * decimal.c:
23954         * mono_debug.h:
23955         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
23956
23957
23958 2004-04-26  Jackson Harper  <jackson@ximian.com>
23959
23960         * appdomain.c: Increment version number.
23961         
23962 2004-04-26  Jackson Harper  <jackson@ximian.com>
23963
23964         * appdomain.c: Set assembly references public token value when
23965         PublicKeyToken is specified, not the hash_value. Free public token
23966         values when free assembly name data. Previously the public key
23967         token was hex decoded, however we are using hex encoded public key
23968         tokens, so this is not neccasary.
23969         * assembly.c: Lookup assemblies in the gac if their public token
23970         value is set. Add function to allow enabling user gac
23971         lookups. Specify whether or not the assembly was loaded from the
23972         GAC. Compare full assembly names when checking the cache for
23973         assemblies (Temporarily disabled see comment in code). Remove
23974         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
23975         specifies trace-loader they get extra info to stdout on the
23976         loading of assemblies.
23977         * image.h: Add a field for an assembly references public token
23978         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
23979         whether an assembly has been loaded from the GAC.
23980         * image.c: Remove a corlib -> mscorlib name mapping.
23981         * loader.h: Add function to enable/disable the user gac.
23982         * mono-config.c: Check if the usergac is enabled in the config
23983         file.
23984         * icall.c: New icall to determine whether or not an assembly has
23985         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
23986         * tabldefs.h: Add constant for assemblyref flag that specifies a
23987         full public key is used instead of a public token.
23988         * reflection.c: Remove mscorlib -> corlib mappings. Set
23989         PublicTokenValue instead of hash value. This value is a hex
23990         string so it does not need to be expanded.
23991
23992 2004-04-26  Martin Baulig  <martin@ximian.com>
23993
23994         * mono-debug-debugger.c (mono_debugger_initialize): Set
23995         `mono_debugger_initialized' before calling mono_debug_lock().
23996
23997 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
23998
23999         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
24000           InternalToUpper/InternalToLower.
24001         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
24002           removed invariant culture shortcut.  This is now done in managed code.
24003         * locales.c: (string_invariant_toupper/tolower) removed.
24004
24005 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24006
24007         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
24008         Added Poll internal call.
24009
24010         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
24011         call for Poll. Select was too heavy for polling a single socket.
24012
24013         * threadpool.[ch]: added mono_threadpool_cleanup.
24014         * threads.c: use it. Don't use Thread_Abort on windows.
24015
24016 2004-04-23  Martin Baulig  <martin@ximian.com>
24017
24018         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
24019
24020 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
24021
24022         * icall.c: Registred new icalls for key pair protection and added an
24023         icall for Environment.GetFolderPath on Windows.
24024         * security.c|h: Added new icalls for key pair protection.
24025
24026 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24027
24028         * socket-io.c: don't display the non-supported family warning for known
24029         families. Now this is not displayed on windows when checking support
24030         for IPv4/IPv6.
24031
24032 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24033
24034         * class.c: don't display the layout warning for static fields.
24035
24036 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
24037
24038         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
24039         * locales.c, locales.h: Added new icalls for culture-specific
24040         Char.ToLower and Char.ToUpper.
24041
24042 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24043
24044         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
24045         by David Waite.
24046
24047 2004-04-20  Martin Baulig  <martin@ximian.com>
24048
24049         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
24050         of the type name before passing it to mono_reflection_type_from_name().
24051
24052 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
24053
24054         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
24055         encodings here. Fixes #56965.
24056
24057 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
24058
24059         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
24060         fix test on strstr result not that I can see anything that
24061         relies on the result.
24062
24063 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
24064
24065         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
24066         Fixes #57081.
24067
24068         * marshal.c (mono_marshal_get_string_encoding): New helper function.
24069
24070         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
24071         function to determine which marshalling to use for strings. Fixes
24072         #56965.
24073
24074         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
24075
24076         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
24077
24078 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
24079
24080         * icall.c: #include mono-config.h
24081
24082 2004-04-15  Jackson Harper  <jackson@ximian.com>
24083
24084         * culture-info-tables.h: Fix date formats for en-US culture.
24085         
24086 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
24087
24088         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
24089         ThreadPool.SetMinThreads.
24090         * threadpool.c: Implemented ThreadPool.GetMinThreads and
24091         ThreadPool.SetMinThreads.
24092
24093 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
24094
24095         * mono-config.c: also load the .config file in the directory
24096         where the assembly was found.
24097
24098 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
24099
24100         * assembly.c: load per-assembly config files.
24101         * icall.c: decrapified code to get the config dir and moved to
24102         mono-config.c.
24103         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
24104         per-assembly config files. When doing a dll map lookup give precedence
24105         to the per-assembly data.
24106
24107 2004-04-14  Martin Baulig  <martin@ximian.com>
24108
24109         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
24110         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
24111         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
24112
24113         * mono-debugger-debugger.c: While the debugger is locked, remember
24114         whether the symbol tables have changes and send one single
24115         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
24116
24117 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
24118
24119         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
24120
24121         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
24122         function.
24123
24124         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
24125         account when marshalling string arrays. Fixes #56965.
24126
24127 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
24128
24129         * icall.c: Add new icalls mapping for security.
24130         * security.c|h: Add internal calls for WindowsIdentity,
24131         WindowsImpersonationContext and WindowsPrincipal.
24132
24133 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
24134
24135         * class.c: Added comment to ensure the System.MonoDummy class
24136         is removed when no longer necessary
24137
24138 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
24139
24140         * appdomain.c: Pass arguments to the bootstraping exceptions to
24141         minimize JITed methods at boot
24142
24143         * metadata.c (mono_exception_from_name_two_strings): Allow for the
24144         second string to be null.
24145
24146         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
24147         Change the protocol to minimize the JIT methods at startup.  Now
24148         it Returns the internal codepage, if the value of "int_code_page"
24149         is 1 at entry, and we can not compute a suitable code page
24150         number, returns the code page as a string.
24151
24152 2004-04-13  Jackson Harper  <jackson@ximian.com>
24153
24154         * culture-info-tables.h: Fix number of decimal digits for all
24155         english locales.
24156
24157 2004-04-13  Jackson Harper  <jackson@ximian.com>
24158
24159         * icall.c: Clairfy out of sync error message. It is not always
24160         your corlib that is out of sync.
24161
24162 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
24163
24164         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
24165         properties when only the set accessor is overriden. Fixes #55874.
24166
24167 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
24168
24169         * assembly.c (mono_assembly_load_references): Make this thread safe.
24170         Fixes #56327.
24171
24172 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
24173
24174         * monosn.c: Add missing initialization calls.
24175
24176 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
24177
24178         * locales.c:
24179         ves_icall_System_Globalization_CultureInfo_construct_number_format
24180         Fix g_assert so it compiles on fussier compilers re int/ptr
24181         mismatch
24182
24183 2004-04-08  Dick Porter  <dick@ximian.com>
24184
24185         * socket-io.h:
24186         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
24187         53992.  Also rearrange the code so that the internal calls return
24188         an error value and exceptions are thrown from managed code.
24189
24190         * icall.c: Add type info to the socket icalls.
24191
24192 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24193
24194         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
24195         owes me a beer.
24196
24197 2004-04-07  Martin Baulig  <martin@ximian.com>
24198
24199         * class.c (mono_class_from_generic_parameter): Don't default
24200         `klass->parent' to `mono_defaults.object_type'.
24201
24202 2004-04-07  Martin Baulig  <martin@ximian.com>
24203
24204         * reflection.c (mono_reflection_initialize_generic_parameter): Set
24205         `param->pklass->reflection_info'.       
24206
24207 2004-04-07  Jackson Harper  <jackson@ximian.com>
24208
24209         * culture-info-tables.h: Fix date separator symbol.
24210         
24211 2004-04-07  Martin Baulig  <martin@ximian.com>
24212
24213         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
24214         from System.Type to System.MonoType.
24215
24216 2004-04-07  Martin Baulig  <martin@ximian.com>
24217
24218         * reflection.h
24219         (MonoReflectionGenericParam): Added `has_reference_type' and
24220         `has_value_type' fields.
24221
24222         * reflection.c (mono_image_get_generic_param_info): Encode the
24223         correct flags if we have the `class' or `struct' constraint.
24224
24225 2004-04-07  Martin Baulig  <martin@ximian.com>
24226
24227         * reflection.h
24228         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
24229
24230 2004-04-07  Jackson Harper  <jackson@ximian.com>
24231
24232         * appdomain.c: Revert extra patches, just wanted to bump the
24233         version number.
24234         
24235 2004-04-07  Jackson Harper  <jackson@ximian.com>
24236
24237         * Makefile.am: Add culture-info private headers.
24238         * icall.c: Add new icalls for contructing locales.
24239         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
24240         * locales.h: Declare new culture info construction methods.
24241         * object.h: Add new fields used to avoid the CultureMap to
24242         MonoCultureInfo.
24243         * culture-info.h: Definition of structs used in the culture info
24244         tables.
24245         * culture-info-tables.h: Autogenerated tables that contain culture
24246         info data. This file was generated with the locale-builder tool.
24247         * appdomain.c: Incement corlib version number.
24248         
24249 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
24250
24251         * appdomain.c: (mono_runtime_init) move mono_thread_init
24252         to before mono_object_new calls so critical sections
24253         are initialized before use.
24254
24255 2004-04-07  Martin Baulig  <martin@ximian.com>
24256
24257         * icall.c
24258         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
24259         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
24260         (ves_icall_MonoGenericParam_initialize): Removed.
24261         (monogenericparam_icalls): Removed.
24262         (generictypeparambuilder_icalls): Added new table for
24263         System.Reflection.Emit.GenericTypeParameterBuilder.
24264
24265         * reflection.c
24266         (mono_reflection_define_generic_parameter): Removed.
24267         (mono_reflection_initialize_generic_parameter): This is now called
24268         from GenericTypeParameterBuilder's .ctor.
24269
24270 2004-04-06  Martin Baulig  <martin@ximian.com>
24271
24272         * class.c (mono_class_init): Don't inflate nested classes in a
24273         generic instance.
24274         (mono_type_get_name_recurse): Include the generic arguments for
24275         generic instances and generic type declarations.
24276         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
24277         (_mono_class_get_instantiation_name): Removed.
24278         (mono_class_create_generic): Always use `gklass->name' as our name.
24279
24280         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
24281
24282         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
24283         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
24284         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
24285         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
24286         closed generic methods here.
24287
24288         * reflection.c
24289         (mono_reflection_generic_inst_get_nested_types): Removed.
24290         (inflate_mono_method): Copy the generic parameters from the
24291         MonoMethodHeader into out MonoGenericMethod.
24292
24293 2004-04-06  Martin Baulig  <martin@ximian.com>
24294
24295         * row-indexes.h
24296         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
24297
24298         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
24299
24300         * reflection.c (build_compressed_metadata): If we have any entries
24301         in the GenericParam, MethodSpec or GenericParamConstraint tables,
24302         set the header version to 1.1.
24303
24304 2004-04-06  Martin Baulig  <martin@ximian.com>
24305
24306         * class.c (mono_class_init): If we're a generic instance,
24307         initialize our nested classes, too.
24308         (_mono_class_get_instantiation_name): Deal with the new `!%d'
24309         suffix. 
24310
24311 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24312
24313         * process.c: quote the argument passed to the shell on windows.
24314
24315 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
24316
24317         * threads.c (mono_alloc_special_static_data): Allow this to be
24318         called during startup.
24319
24320 2004-04-02  Martin Baulig  <martin@ximian.com>
24321
24322         * icall.c
24323         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
24324
24325 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
24326
24327         * icall.c: Fix build.
24328
24329 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
24330
24331         * Makefile.am: Added security.c|h.
24332         * icall.c: Added icall for get_UserName;
24333         * security.c: New file for security related icalls. Added function
24334         get_UserName for System.Environment (fix #56144).
24335         * security.h: New. Header file for security.c
24336
24337 2004-04-02  Dick Porter  <dick@ximian.com>
24338
24339         * icall.c: Deleted the icalls that were obsoleted some time ago
24340         by the ICU string code, and which were mixed into the icall
24341         rearranging.  Fixes bug 55969.
24342
24343         * string-icalls.h: 
24344         * string-icalls.c: Deleted the code that those icalls reference.
24345
24346 2004-04-01  Martin Baulig  <martin@ximian.com>
24347
24348         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
24349
24350         * class.c (mono_class_from_generic_parameter): Don't set 
24351         TYPE_ATTRIBUTE_INTERFACE.
24352         (my_mono_class_from_generic_parameter): Likewise.
24353
24354 2004-04-01  Martin Baulig  <martin@ximian.com>
24355
24356         * loader.c (find_method): Added an optional `MonoClass *ic'
24357         argument to search in a specific interface.
24358         (mono_get_method_constrained): New public function.
24359
24360 2004-04-01  Martin Baulig  <martin@ximian.com>
24361
24362         * reflection.c (mono_image_get_generic_field_token): Use the
24363         `handleref' cache here.
24364
24365 2004-04-01  Martin Baulig  <martin@ximian.com>
24366
24367         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
24368
24369         * reflection.c (create_generic_typespec): Use the `typespec' hash
24370         here, not the `typeref' one.    
24371
24372 2004-04-01  Martin Baulig  <martin@ximian.com>
24373
24374         * class.c (mono_class_inflate_generic_type): Moved the
24375         functionality into a new static inflate_generic_type() which
24376         returns NULL if it didn't do anything.  Only increment the
24377         `mono_stats.inflated_type_count' if we actually inflated
24378         something.
24379         (mono_class_get_full): Check the classes type to see whether we
24380         need to inflate it; also inflate MONO_TYPE_(M)VAR.
24381
24382 2004-04-01  Jackson Harper  <jackson@ximian.com>
24383
24384         * reflection.c: Set culture for assembly references.
24385         
24386 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
24387
24388         * reflection.[ch], icall.[ch], Fix support for pinning variables.
24389
24390 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24391
24392         * assembly.c:
24393         (do_mono_assembly_open): the critical section also covers
24394         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
24395
24396 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24397
24398         * threads.c:
24399         (mono_manage_threads): abort the background threads when finishing.
24400         Fixes bug #47232.
24401
24402 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24403
24404         * gc.c: only close the done_event handle if there was no timeout.
24405         C-ified comments.
24406
24407 2004-03-30  Martin Baulig  <martin@ximian.com>
24408
24409         * icall.c (icall_entries): It's called "System.Activator", not
24410         "System.Activation".    
24411
24412 2004-03-30  Martin Baulig  <martin@ximian.com>
24413
24414         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
24415         (mono_class_create_from_typespec): Likewise.
24416
24417 2004-03-30  Martin Baulig  <martin@ximian.com>
24418
24419         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
24420         `has_ctor_constraint' and `initialized'.
24421
24422 2004-03-30  Martin Baulig  <martin@ximian.com>
24423
24424         * reflection.c (encode_new_constraint): New static function to add
24425         the constructor constraint attribute to a type parameter.
24426         (encode_constraints): Call encode_new_constraint() if necessary.
24427
24428         * reflection.h
24429         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
24430
24431         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
24432         
24433 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
24434
24435         * reflection.c, icall.c: add support for pinning variables. 
24436
24437 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
24438
24439         * marshal.c (mono_marshal_get_managed_wrapper):
24440         init bool local with zero rather than null.
24441
24442 2004-03-29  Martin Baulig  <martin@ximian.com>
24443
24444         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
24445         the "official" behavior here.
24446         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
24447
24448 2004-03-29  Martin Baulig  <martin@ximian.com>
24449
24450         * icall.c: Reflect latest API changes.
24451
24452 2004-03-29  Martin Baulig  <martin@ximian.com>
24453
24454         * loader.c (mono_get_method_from_token): Also call
24455         mono_metadata_load_generic_params () for abstract and interface
24456         methods; replace the type arguments in the method signature with
24457         the ones which are loaded from the metadata.
24458
24459 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
24460
24461         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
24462         of the lock is not the current thread. MS.NET don't do it, in spite of
24463         what the documentation says. See bug #56157.
24464
24465 2004-03-28  Martin Baulig  <martin@ximian.com>
24466
24467         * class.c (mono_class_init): Don't call init_properties() and
24468         init_events() for generic instances; set `prop->parent' when
24469         inflating properties.
24470
24471         * reflection.c (mono_generic_inst_get_object): Call
24472         `mono_class_init (ginst->klass)'.
24473         (mono_type_get_object): Only create a MonoGenericInst if your
24474         generic type is a TypeBuilder.
24475         (do_mono_reflection_bind_generic_parameters): Only set
24476         `ginst->is_dynamic' if our generic type is a TypeBuilder.
24477
24478 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
24479
24480         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
24481         Fixes #56091.
24482
24483 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24484
24485         * icall.c: added Kill_internal icall.
24486         * process.[ch]: added Kill_internal icall.
24487
24488 2004-03-25  Martin Baulig  <martin@ximian.com>
24489
24490         * class.h (MonoStats): Added `generic_instance_count',
24491         `inflated_method_count', `inflated_type_count' and
24492         `generics_metadata_size'.       
24493
24494 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24495
24496         * reflection.c: no warnings now.
24497
24498 2004-03-25  Martin Baulig  <martin@ximian.com>
24499
24500         * class.c (mono_class_get_full): New public function; does a
24501         mono_class_get(), but also takes a `MonoGenericContext *'.
24502
24503         * loader.c (mono_field_from_memberref): Renamed to
24504         `field_from_memberref', made static and added `MonoGenericContext *'
24505         argument.
24506         (mono_field_from_token): Added `MonoGenericInst *' argument.
24507         (method_from_memberef): Likewise.
24508         (mono_get_method_from_token): Likewise.
24509         (mono_get_method_full): New public function; does a
24510         mono_get_method(), but also takes a `MonoGenericContext *'.
24511
24512         * verify.c (mono_method_verify): Get the method's generic context
24513         and pass it to mono_field_from_token(), mono_get_method_full() and
24514         mono_class_get_full().
24515
24516 2004-03-25  Martin Baulig  <martin@ximian.com>
24517
24518         * class.c (mono_class_inflate_generic_type): Take a
24519         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
24520         `MonoGenericMethod *'.
24521
24522 2004-03-25  Martin Baulig  <martin@ximian.com>
24523
24524         * loader.h (MonoMethodInflated): Store the MonoGenericContext
24525         instead of the MonoGenericMethod here.
24526
24527 2004-03-25  Martin Baulig  <martin@ximian.com>
24528
24529         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
24530         each time we create a new MonoGenericInst, we also create a new
24531         context which points back to us.
24532
24533         * class.c (inflate_method): Use `ginst->context' instead of
24534         creating a new context.
24535
24536         * loader.c (method_from_memberref): Use
24537         `klass->generic_inst->context' instead of creating a new context.
24538
24539 2004-03-25  Martin Baulig  <martin@ximian.com>
24540
24541         * class.h (MonoGenericContext): New struct.
24542         (MonoGenericMethod): Removed `generic_inst'.
24543
24544         * class.c (mono_class_inflate_generic_method): Take a
24545         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
24546
24547 2004-03-25  Martin Baulig  <martin@ximian.com>
24548
24549         * loader.h (MonoMethodInflated): New typedef.
24550
24551         * metadata.h (MonoMethodSignature): Removed `gen_method', make
24552         `generic_param_count' consume just 30 bits, added `is_inflated'
24553         and `has_type_parameters' flags (one bit each).
24554
24555         * class.c (mono_class_inflate_generic_method): Create a
24556         MonoMethodInflated instead of a MonoMethodNormal and set
24557         `is_inflated' in the method signature.
24558
24559         * class.h (MonoGenericMethod): Removed `generic_method'.
24560
24561 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
24562
24563         * image.c: Make sure the name of a MonoImage is always an absolute path.
24564           This fixes bug #54415.
24565
24566 2004-03-24  Martin Baulig  <martin@ximian.com>
24567
24568         * class.c (mono_class_setup_vtable): If we're a generic instance,
24569         use our generic type's vtable size.
24570
24571 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
24572
24573         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
24574         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
24575         problems.
24576
24577 2004-03-23  Martin Baulig  <martin@ximian.com>
24578
24579         * class.h (MonoDynamicGenericInst): Added `int count_events' and
24580         `MonoEvent *events'.
24581
24582         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
24583         (typebuilder_icalls): Added "get_event_info"; calls
24584         mono_reflection_event_builder_get_event_info(). 
24585
24586         * reflection.c (mono_reflection_generic_inst_initialize): Added
24587         `MonoArray *events'.
24588         (mono_reflection_event_builder_get_event_info): New function.
24589
24590 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
24591
24592         * object.h: add mono_type_initialization_init
24593
24594         * object.c (mono_runtime_class_init): 
24595         implement class constructor synchronization rules
24596         to cope with threading issues.  
24597         add mono_type_initialization_init
24598
24599         * appdomain.c (mono_runtime_init): call 
24600         mono_type_initialization_init
24601
24602         * class.h: removing initializing field from MonoVTable
24603
24604 2004-03-23  Martin Baulig  <martin@ximian.com>
24605
24606         * class.c (my_mono_class_from_generic_parameter): Use
24607         `param->name' if it's not NULL. 
24608
24609 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
24610
24611         * class.c: do not insert non-virtual methods in the vtable.
24612         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
24613         that means the method is non-virtual. This never would have
24614         happened before.
24615
24616 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
24617
24618         * profiler.c: Added lock for accessing coverage_hash.
24619
24620 2004-03-22  Martin Baulig  <martin@ximian.com>
24621
24622         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
24623         `method->method->signature->generic_param_count != 0' to make it
24624         work for interface methods.
24625
24626 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24627
24628         * process.c: quote the string passed to the shell using g_shell_quote.
24629
24630 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24631
24632         * threads.c:
24633         (mono_threads_manage): don't remove the finalizer thread and self
24634         from the threads hash table so that mono_thread_manage can be called
24635         more than once.
24636
24637 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24638
24639         * process.c: quote the arguments when UseShellExecute is true. Fixes
24640         bug #55790.
24641
24642 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24643
24644         * threads.c: set mono_thread_detach as a cleanup routine for every
24645         thread. This way it's always executed upon thread termination, either
24646         aborted or finished normally. No more xsp hangs!
24647
24648 2004-03-17  Martin Baulig  <martin@ximian.com>
24649
24650         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
24651         `int count_nested' and a `MonoType **nested'.
24652
24653         * reflection.c (mono_reflection_bind_generic_parameters): Moved
24654         most of the functionality into a new static
24655         do_mono_reflection_bind_generic_parameters() and don't take a
24656         `MonoType *nested_in' argument any more.  Don't compute nested
24657         types here.
24658         (mono_reflection_generic_inst_get_nested_types): New public method
24659         to get nested types.
24660
24661         * class.c (mono_class_create_generic): Set `klass->nested_in' if
24662         we're a nested class.
24663
24664         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
24665         mono_reflection_generic_inst_get_nested_types() to compute the
24666         nested types.
24667
24668 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
24669
24670         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
24671         descriptive error message under windows.
24672         
24673 2004-03-17  Martin Baulig  <martin@ximian.com>
24674
24675         * class.c (dup_type): Added `const MonoType *original' argument;
24676         copy the attrs from the original type.
24677
24678 2004-03-17  Martin Baulig  <martin@ximian.com>
24679
24680         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
24681         `m->generic_inst_cache' here.
24682
24683 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
24684
24685         * exception.h exception.c: Add stack_overflow_exception.
24686
24687 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24688
24689         * threadpool.c:
24690         (overlapped_callback): call SetEvent *after* invoking the callback.
24691         No need to call CloseHandle.
24692
24693 2004-03-16  Martin Baulig  <martin@ximian.com>
24694
24695         * reflection.c (mono_image_get_fieldref_token): Take a
24696         `MonoReflectionField *' instead of a `MonoClassField *' and a
24697         `MonoClass *'; store the `MonoReflectionField *' in the hash.
24698
24699 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24700
24701         * appdomain.c: don't add the culture to the filename we're looking for
24702         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
24703
24704 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24705
24706         * locales.c: don't ignore symbols when doing case insensitive compares.
24707         Thanks Dick! Fixes bug #54046.
24708
24709         * threads.c: surround 'threads' usage with enter/leave in
24710         mono_thread_manage.
24711
24712 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
24713
24714         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
24715         implicitly marshalled as [Out]. Fixes #55450.
24716
24717         (mono_marshal_get_runtime_invoke): Zero out the result if there is
24718         an exception.
24719
24720 2004-03-16  Martin Baulig  <martin@ximian.com>
24721
24722         * class.c (mono_class_from_generic_parameter): Use the actual
24723         parameter name. 
24724
24725 2004-03-16  Martin Baulig  <martin@ximian.com>
24726
24727         * reflection.c (type_get_signature_size): New static function.
24728         Compues the size of the type in a method signature.
24729         (method_get_signature_size): New static function; calls
24730         type_get_signature_size() to compute the actual size of the
24731         method's signature.
24732         (method_encode_signature): Use method_get_signature_size() to get
24733         the signature's size rather than using `nparams * 10'.
24734
24735 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24736
24737         * file-io.h: define here WapiOverlapped on windows. I don't want the
24738         regular OVERLAPPED one.
24739
24740         * file-io.c:
24741         * threadpool.c: somehow, BindIoCompletionCallback is not found.
24742         Disabling AIO on windows.
24743
24744 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24745
24746         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
24747         bug #55385.
24748
24749 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24750
24751         * appdomain.c: upgraded corlib version.
24752
24753         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
24754         and BeginWrite. Allow opening files for asynchrnous operations.
24755
24756         * file-io.h: new struct that maps FileStreamAsyncResult.
24757         * icall.c: added new icalls.
24758         * process.[ch]: support setting child process environment variables
24759         and use the SHELL or COMSPEC when UseShellExecute is true.
24760
24761         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
24762         callback for async. IO is here and also BindHandle.
24763
24764         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
24765         from here.
24766
24767 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
24768
24769         * reflection.c (create_custom_attr): Allow len == 0.
24770
24771         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
24772         computation on big-endian machines.
24773
24774 2004-03-13  Martin Baulig  <martin@ximian.com>
24775
24776         * class.h (MonoGenericInst): Added `int count_ifaces'.
24777
24778         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
24779         `ginst->count_ifaces' instead `klass->interface_count' since we
24780         may get called before the vtable is created.
24781
24782         * loader.c (mono_method_get_param_names): If we're a generic
24783         instance, return and don't initialize the class.
24784
24785         * reflection.c (mono_reflection_setup_generic_class): Don't call
24786         ensure_runtime_vtable().
24787         (mono_reflection_bind_generic_parameters): Set
24788         `ginst->count_ifaces'.
24789
24790 2004-03-11  Jackson Harper <jackson@ximian.com>
24791
24792         * icall.c:
24793         * unicode.c:
24794         * unicode.h: Remove unused System.Char icalls.
24795         
24796 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
24797
24798         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
24799         code when we P/Invoke the first library in Windows.Forms, instead
24800         of when we first open the assembly.
24801
24802         * assembly.c: Drop the lookup from here.
24803
24804 2004-03-10  Martin Baulig  <martin@ximian.com>
24805
24806         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
24807         class for properties, fields and events.  Finally fixes #54945.
24808
24809 2004-03-10  Martin Baulig  <martin@ximian.com>
24810
24811         * metadata.c (mono_metadata_class_equal): New static function;
24812         checks whether two generic instances or two generic parameters are
24813         equal.
24814         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
24815         compare classes.        
24816
24817 2004-03-10  Martin Baulig  <martin@ximian.com>
24818
24819         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
24820
24821         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
24822         argument and write it into the `reflection_info' field.
24823
24824         * icall.c
24825         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
24826         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
24827
24828 2004-03-09  Jackson Harper  <jackson@ximian.com>
24829
24830         * char-conversions.h: use 8 bits for numeric data its all we need
24831         * icall.c: numeric data is only 8 bits now.
24832
24833 2004-03-09  Martin Baulig  <martin@ximian.com>
24834
24835         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
24836
24837         * class.c (init_properties, init_events): Initialize the new
24838         `parent' field.
24839
24840         * reflection.c (typebuilder_setup_properties): Likewise.
24841         (typebuilder_setup_events): Likewise.
24842
24843         * reflection.h (MonoEventInfo): Replaced `parent with
24844         `declaring_type' and `reflected_type'.
24845
24846         * icall.c (ves_icall_get_property_info): Distinguish between
24847         declaring and reflected type.
24848         (ves_icall_get_event_info): Likewise.
24849
24850 2004-03-09  Martin Baulig  <martin@ximian.com>
24851
24852         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
24853         (ves_icall_Type_GetField): Correctly set field->klass.
24854
24855 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
24856
24857         * loader.h: Fix warning.
24858
24859 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
24860
24861         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
24862         library routine if present.  Notice that it will still continue
24863         executing even if its missing, for those working on the Gtk#
24864         edition of Windows.Forms.
24865
24866         * assembly.c (do_mono_assembly_open): If loading the
24867         System.Windows.Forms call mono_loader_wini_init.
24868
24869 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
24870
24871         * class.h: Added MonoRemoteClass struct.
24872         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
24873         function for MonoStrings.
24874         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
24875         Added internal call for getting the proxy type.
24876         * marshal.c: Get the type of transparent proxies from its remote_class.
24877         Added methods that generate the IL for type checks and casts:
24878         mono_marshal_get_isinst, mono_marshal_get_castclass, 
24879         mono_marshal_get_proxy_cancast.
24880         * marshal.h: Declaration of the previous new methods.
24881         * object.c: Added new moethods for creating and updating MonoRemoteClass
24882         instances: mono_remote_class, mono_upgrade_remote_class, 
24883         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
24884         * verify.c: FIx transparent_proxy_fields layout.
24885         * appdomain.c: Bump corlib version.
24886
24887 2004-03-04  Jackson Harper  <jackson@ximian.com>
24888
24889         * icall.c: Add icall to access char conversion tables.
24890         * char-conversions.h: Character conversion tables.
24891         * Makefile.am: Add char-conversions.h private header file.
24892         
24893 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
24894
24895         * appdomain.c (unload_thread_main): Increase unloading timeout to
24896         10 sec as a temporary workaround for Nant problems.
24897
24898 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
24899
24900         * gc.c: Add checks for GC_enable and GC_disable.
24901
24902         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
24903         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
24904         (bug #54988).
24905         
24906 2004-02-27  Martin Baulig  <martin@ximian.com>
24907
24908         * reflection.c (mono_reflection_bind_generic_parameters): Take a
24909         `MonoReflectionType *' instead of a `MonoType *'.
24910
24911 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
24912
24913         * gc.c (run_finalize): Avoid finalizing the object representing the
24914         finalizer thread.
24915         (finalizer_thread): Fix warning.
24916
24917 2004-02-25  Martin Baulig  <martin@ximian.com>
24918
24919         * class.c (_mono_class_get_instantiation_name): Added `int offset'
24920         argument for nested types.
24921         (mono_class_create_generic): Added support for nested generictypes.
24922
24923         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
24924         `GList *nested'.
24925
24926         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
24927
24928         * reflection.c (method_encode_signature): Increase the minimum
24929         value of `size' from 10 to 11.
24930         (mono_reflection_bind_generic_parameters): Take `int type_argc'
24931         and `MonoType **types' arguments instead of the `MonoArray
24932         *types'; added `MonoType *nested_in'.  Recursively instantiate
24933         nested classes. 
24934
24935 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
24936
24937         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
24938         stack_overflow_ex members which are used by exception handling.
24939
24940         * appdomain.c (mono_runtime_init): Initialize the new members.
24941
24942         * gc.c (mono_gc_enable): New helper function.
24943         * gc.c (mono_gc_disable): New helper function.
24944
24945 2004-02-23  Martin Baulig  <martin@ximian.com>
24946
24947         * icall.c: I must have been really stupid - make it actually work
24948         this time ;-)
24949
24950 2004-02-23  Martin Baulig  <martin@ximian.com>
24951
24952         * loader.c (method_from_memberref): Only inflate the method if
24953         it's in another klass.
24954
24955 2004-02-23  Martin Baulig  <martin@ximian.com>
24956
24957         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
24958         (mono_class_init): If we're a generic instance and an interface,
24959         compute `class->interface_id'; also create `class->interfaces'
24960         here and inflate them.
24961
24962         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
24963         `ginst->is_open'.
24964         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
24965
24966         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
24967
24968 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
24969
24970         * reflection.c (method_encode_code): Improved the error message
24971         generated by the exception.
24972
24973 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24974
24975         * icall.c: Martin did not do what he said in the ChangeLog for
24976         2004-02-18, but put back the changes for properties and events.
24977         Commenting those changes out again and adding comment to bug #54518.
24978         
24979         * process.c: removed warning.
24980
24981 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
24982
24983         * marshal.c (emit_struct_conv): Print an error message instead of
24984         asserting when a type does not have the StructLayout attribute.
24985
24986 2004-02-20  Martin Baulig  <martin@ximian.com>
24987
24988         * reflection.c (mono_type_get_object): Also use the cache for
24989         generic instances.
24990         (mono_reflection_bind_generic_parameters): Always compute
24991         `ginst->ifaces'.        
24992
24993 2004-02-20  Martin Baulig  <martin@ximian.com>
24994
24995         * class.h (MonoGenericMethod): Removed `klass'.
24996
24997         * class.c (mono_class_inflate_generic_method): Added `MonoClass
24998         *klass' argument.
24999
25000 2004-02-20  Martin Baulig  <martin@ximian.com>
25001
25002         * reflection.c (method_encode_methodspec): Actually use the
25003         uninflated signature for the memberref.
25004
25005 2004-02-20  Martin Baulig  <martin@ximian.com>
25006
25007         * class.h (MonoGenericMethod): Removed `declaring'.
25008
25009         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
25010         is NULL, compute it here.
25011
25012 2004-02-20  Martin Baulig  <martin@ximian.com>
25013
25014         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
25015
25016         * metadata.c (mono_metadata_generic_inst_hash): New method.
25017         (mono_metadata_generic_inst_equal): New method.
25018
25019         * reflection.c (mono_reflection_bind_generic_parameters): Use the
25020         `klass->image->generic_inst_cache' cache to avoid creating
25021         duplicate MonoGenericInst's.
25022
25023         * class.c (mono_class_inflate_generic_type): Use the cache.
25024
25025 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
25026
25027         * object.c: fixed gc descriptor calculation for embedded valuetypes.
25028
25029 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25030
25031         * icall.c: added Socket.WSAIoctl icall.
25032
25033         * socket-io.[ch]: implemented
25034         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
25035
25036 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
25037
25038         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
25039
25040 2004-02-18  Urs C Muff  <umuff@quark.com>
25041
25042         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
25043         this work on PPC and other big-endian architectures.
25044
25045         * debug-mono-symfile.h: Prepended the names of all the `guint32'
25046         fields with an underscore to make sure they're only accessed by
25047         the read32() macro.
25048
25049 2004-02-18  Martin Baulig  <martin@ximian.com>
25050
25051         * icall.c: Put the klass->refclass changes back for methods and
25052         fields, but not for properties and events.  We're currently not
25053         distinguishing between DeclaringType and ReflectedType for
25054         properties and events, that's what caused the regressions.
25055
25056 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25057
25058         * object.c:
25059         (mono_async_result_new): the handle can be NULL.
25060
25061         * threadpool.c: Use an event instead of a semaphore, don't initialize
25062         it until needed. This saves quite a few semaphores from being created
25063         when using the threadpool.
25064
25065 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
25066
25067         * object.c (mono_string_is_interned_lookup): Fix interning of long
25068         strings. Fixes #54473.
25069
25070         * domain.c (ldstr_equal): Optimize if the two strings are equal.
25071
25072         * icall.c: Revert the klass->refclass changes since they introduce
25073         regressions (bug #54518).
25074
25075 2004-02-18  Martin Baulig  <martin@ximian.com>
25076
25077         * class.c (mono_class_init): If we're a generic instance and don't
25078         come from a TypeBuilder, inflate our members here.
25079         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
25080         (mono_class_create_generic): New public method.
25081         (mono_class_initialize_generic): Removed.
25082         (get_instantiation_name): Renamed to
25083         _mono_class_get_instantiation_name() and made it public.
25084
25085 2004-02-18  Martin Baulig  <martin@ximian.com>
25086
25087         * class.c (mono_class_inflate_generic_type): Clear the new
25088         instance's `nginst->klass' when inflating a generic instance.
25089         (mono_class_is_subclass_of): Added (basic) support for generic
25090         instances.
25091
25092 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
25093
25094         * appdomain.h, domain.c: use a MonoCodeManager instead of a
25095         MonoMempool to hold compiled native code.
25096
25097 2004-02-17  Martin Baulig  <martin@ximian.com>
25098
25099         * class.h (MonoDynamicGenericInst): Added `count_properties' and
25100         `properties'.
25101
25102         * reflection.c (mono_reflection_generic_inst_initialize): Added
25103         `MonoArray *properties' argument.
25104
25105         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
25106
25107 2004-02-17  Martin Baulig  <martin@ximian.com>
25108
25109         * icall.c (ves_icall_Type_GetFields): Renamed to
25110         ves_icall_Type_GetFields_internal() and added a
25111         `MonoReflectionType *rtype' argument; pass it to
25112         mono_field_get_object() to set the field's "reflected" type.
25113         (ves_icall_Type_GetConstructors): Likewise.
25114         (ves_icall_Type_GetEvents): Likewise.
25115         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
25116         argument; pass it to mono_method_get_object() to set the method's
25117         "reflected" type.       
25118
25119 2004-02-17  Martin Baulig  <martin@ximian.com>
25120
25121         * class.h (MonoDynamicGenericInst): New type.
25122         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
25123
25124         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
25125         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
25126         (ves_icall_MonoGenericInst_GetFields): New interncall.
25127
25128         * class.c (mono_class_from_generic): Don't call
25129         mono_class_initialize_generic() if this is a dynamic instance;
25130         ie. it's being created from a TypeBuilder.
25131         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
25132         `class->byval_arg.type'.
25133
25134         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
25135         to `inflate_method' and made static.
25136         (mono_reflection_inflate_field): Removed.
25137         (mono_reflection_generic_inst_initialize): New public method.
25138
25139         * reflection.h (MonoReflectionGenericInst): Removed `methods',
25140         `ctors' and `fields'; added `initialized'.
25141
25142 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
25143
25144         * debug-helpers.c (mono_method_full_name): Fix output for empty
25145         namespaces.
25146
25147 2004-02-12  Martin Baulig  <martin@ximian.com>
25148
25149         * class.h (MonoClassField): Added `MonoType *generic_type'.
25150
25151         * reflection.c (mono_image_get_fieldref_token): Added support for
25152         instantiated generic types.
25153         (field_encode_inflated_field): Removed.
25154         (mono_image_get_inflated_field_token): Removed.
25155         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
25156
25157         * reflection.h (MonoReflectionInflatedField): Removed.
25158
25159 2004-02-12  Martin Baulig  <martin@ximian.com>
25160
25161         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
25162         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
25163
25164         * reflection.c (mono_image_get_methodspec_token): Take a
25165         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
25166         (mono_image_create_token): Check whether we have a
25167         `method->signature->gen_method' and call
25168         mono_image_get_methodspec_token() if appropriate.
25169         (inflated_method_get_object): Removed.
25170         (mono_reflection_bind_generic_method_parameters): Return a
25171         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
25172         (mono_reflection_inflate_method_or_ctor): Likewise.
25173
25174         * reflection.h (MonoReflectionInflatedMethod): Removed.
25175
25176 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
25177
25178         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
25179         for custom valuetype marshalling.
25180
25181         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
25182
25183 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25184
25185         * icall.c: fixed WSAGetLastError_internal name.
25186
25187 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
25188
25189         * threads.c (mono_thread_attach): Allow this to be called multiple
25190         times for a thread.
25191         
25192         * threads.c (build_wait_tids): Do not wait for ourselves.
25193
25194         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
25195         appdomain list is empty.
25196
25197         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
25198         memory returned by mono_string_builder_to_utf16, since it points into
25199         managed memory. Thanks to Bernie Solomon for noticing this.
25200
25201         * icall.c: Add AppDomainSetup icalls.
25202
25203         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
25204
25205         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
25206         types.
25207
25208         * reflection.c (reflection_methodbuilder_to_mono_method): Save
25209         custom attributes to the method_aux struct. Also fix array indexes etc.
25210
25211         * loader.c (mono_method_get_param_names): Make dynamic case work again.
25212         
25213 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
25214
25215         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
25216         (both static and runtime) and reduce startup time.
25217
25218 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
25219
25220         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
25221         AsAny marshalling conversion instead of crashing.
25222
25223         * marshal.c: Fix warnings.
25224
25225 2004-02-09  Martin Baulig  <martin@ximian.com>
25226
25227         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
25228
25229         * reflection.h (MonoReflectionInflatedMethod): Removed the
25230         `declaring' field, it's now in the unmanaged MonoGenericMethod.
25231
25232         * reflection.c (method_encode_methodspec): Removed the `method'
25233         argument; we get it from `gmethod->declaring'.
25234         (inflated_method_get_object): Removed the `declaring' argument.
25235
25236 2004-02-09  Martin Baulig  <martin@ximian.com>
25237
25238         * class.h (MonoGenericMethod): New type.
25239         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
25240         `generic_method'.
25241
25242         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
25243         a `MonoGenericMethod *gen_method' one.
25244
25245         * class.c (mono_class_inflate_generic_type): Take an additional
25246         `MonoGenericMethod * argument.  This is only non-NULL if we're
25247         inflating types for a generic method.   
25248         (mono_class_inflate_generic_signature): Renamed to
25249         inflate_generic_signature() and made static; take a
25250         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
25251         (inflate_generic_header): Take a `MonoGenericMethod *' argument
25252         instead of a `MonoGenericInst *' one.
25253         (mono_class_inflate_generic_method): Likewise.
25254
25255         * reflection.c (encode_generic_method_sig): Take a
25256         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
25257         (method_encode_methodspec): Likewise.
25258         (inflated_method_get_object): Likewise. 
25259
25260         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
25261         field with a `MonoGenericMethod *gmethod' one.  
25262
25263 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
25264
25265         * class.h (mono_class_has_parent): add parens to expansion
25266         so you can ! this.
25267
25268 2004-02-08  Martin Baulig  <martin@ximian.com>
25269
25270         * image.h (MonoImage): Removed `generics_cache'.
25271
25272         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
25273         instead of a `MonoType *' argument; removed the `inflate_methods'
25274         argument.  Don't inflate methods here.
25275
25276         * loader.c (find_method): If it's a generic instance, call
25277         mono_class_init() on the `sclass->generic_inst->generic_type'.
25278
25279         * metadata.c (mono_type_size): Make this work on uninitialized
25280         generic instances; call it on the `ginst->generic_type's class.
25281
25282         * reflection.c (mono_reflection_bind_generic_parameters): Call
25283         mono_class_from_generic() to create the `ginst->klass'.
25284
25285 2004-02-08  Martin Baulig  <martin@ximian.com>
25286
25287         * class.h (MonoClass): Changed type of `generic_inst' from
25288         `MonoType *' to `MonoGenericInst *'.
25289
25290 2004-02-08  Martin Baulig  <martin@ximian.com>
25291
25292         * icall.c (ves_icall_Type_BindGenericParameters): Just call
25293         mono_type_get_object(), this is now creating a `MonoGenericInst'
25294         for MONO_TYPE_GENERICINST.
25295         (ves_icall_MonoGenericInst_GetParentType): Likewise.
25296         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
25297
25298         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
25299         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
25300         (inflated_method_get_object): Added `MonoClass *refclass' argument.
25301         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
25302         and reflected type.
25303
25304         * reflection.h (MonoReflectionInflatedMethod): Removed
25305         `declaring_type' and `reflected_type'.
25306
25307 2004-02-08  Martin Baulig  <martin@ximian.com>
25308
25309         * class.h (MonoGenericInst): Added `MonoType *parent' and
25310         `MonoType **ifaces'.
25311
25312         * reflection.h (MonoReflectionGenericInst): Removed `klass',
25313         `parent' and `interfaces'.
25314
25315         * reflection.c (mono_reflection_bind_generic_parameters): Take a
25316         `MonoType *' argument and return a `MonoType *'.
25317
25318         * icall.c
25319         (ves_icall_MonoGenericInst_GetParentType): New interncall.
25320         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
25321
25322 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
25323
25324         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
25325         valuetype marshalling.
25326
25327 2004-02-06  Martin Baulig  <martin@ximian.com>
25328
25329         * class.c
25330         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
25331         (my_mono_class_from_generic_parameter): Likewise.
25332
25333 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
25334
25335         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
25336         contents of the symbol files lazily.
25337
25338         * object.h (MonoThread): Add 'name' and 'name_len' fields.
25339
25340         * threads.h threads.c icall.c: New icalls for getting and setting the
25341         threads name.
25342
25343 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
25344
25345         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
25346         Raise an exception when the domain is not found.
25347
25348 2004-02-03  Martin Baulig  <martin@ximian.com>
25349
25350         * reflection.c (mono_image_get_methodspec_token): Use the
25351         uninflated signature; fixes gen-33.
25352
25353 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
25354
25355         * gc.c threads.c: Make the finalizer thread a normal managed thread so
25356         the finalizer code can use thread functionality.
25357
25358         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
25359         the finalizer thread.
25360
25361         * threads.c: Make some functions more robust.
25362
25363         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
25364
25365         * metadata.h: Add new marshalling conventions.
25366
25367         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
25368         stringbuilder marshalling. Fixes #53700.
25369
25370         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
25371
25372         * reflection.c (mono_image_get_type_info): Save declarative security
25373         info.
25374
25375         * reflection.c (mono_image_get_field_info): Handle uninitialized 
25376         unmanaged fields as well.
25377
25378         * appdomain.c: Bump corlib version.
25379
25380 2004-02-01  Martin Baulig  <martin@ximian.com>
25381
25382         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
25383         method type arguments.  
25384
25385 2004-01-30  Duncan Mak  <duncan@ximian.com>
25386
25387         * marshal.h: Add prototype for
25388         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
25389         and
25390         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
25391         fix the build.
25392
25393 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
25394
25395         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
25396         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
25397
25398 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
25399
25400         * marshal.c (mono_marshal_get_native_wrapper): Add support for
25401         custom marshalling of valuetypes.
25402
25403         * marshal.c: Fix some warnings.
25404
25405 2004-01-29  Martin Baulig  <martin@ximian.com>
25406
25407         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
25408         for generic method parameters.
25409
25410         * reflection.c (method_encode_methodspec): Write the uninflated
25411         signature into the methodspec table.
25412         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
25413         is always the uninflated method.
25414         (reflection_methodbuilder_to_mono_method): Copy the generic
25415         parameters from the MethodBuilder into `header->gen_params'.
25416
25417 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
25418
25419         * class.c (mono_class_from_generic_parameter): Fix warning.
25420
25421 2004-01-27  Martin Baulig  <martin@ximian.com>
25422
25423         * class.c (mono_class_from_generic_parameter): Don't create
25424         `klass->methods' here.  
25425
25426 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
25427
25428         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
25429         extension since it does not work with libraries named lib<FOO>.dll.so.
25430
25431 2004-01-25  Martin Baulig  <martin@ximian.com>
25432
25433         * class.c (mono_class_inflate_generic_type): Added support for
25434         MONO_TYPE_GENERICINST.
25435
25436         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
25437         inflate methods on open constructed types.      
25438
25439 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25440
25441         * object.c: fire ProcessExit event in the root AppDomain after running
25442         Main. Fixes bug #53299.
25443
25444 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
25445
25446         * socket-io.c: include the new socket-wrappers.h header.
25447         Use the wrappers instead of the unix socket functions to make the code
25448         more clear.
25449
25450 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
25451
25452         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
25453
25454         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
25455         Fixes #22532.
25456
25457 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
25458
25459         * reflection.c (mono_image_create_pefile): Handle the case when the
25460         entry point is not a MethodBuilder.
25461
25462         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
25463         field to ReflectionMethod since it is not allways a builder.
25464
25465         * reflection.c (type_get_fully_qualified_name): New helper function to
25466         return the fully qualified name of a type.
25467
25468         * reflection.c (encode_marshal_blob): Always emit the fully qualified
25469         type name for custom marshallers.
25470
25471         * reflection.c (mono_marshal_spec_from_builder): Ditto.
25472
25473         * class.c (mono_class_setup_vtable): If a parent class already 
25474         implements an interface, use the implementing methods from that class.
25475         Fixes #53148.
25476
25477 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25478
25479         * threadpool.c: just return instead of ExitThread to allow for thread
25480         clean up earlier.
25481
25482 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
25483
25484         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
25485         when closing resource modules.
25486
25487         * reflection.c (mono_image_create_pefile): Handle the case when the
25488         entry point is not a MethodBuilder.
25489
25490         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
25491         field to ReflectionMethod since it is not allways a builder.
25492
25493 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
25494
25495         * marshal.c (mono_marshal_get_managed_wrapper): 
25496         mono_marshal_alloc takes native int so CONV_I
25497         the arg for 64bits.
25498
25499 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
25500
25501         * reflection.c (fixup_cattrs): New function to fixup the methoddef
25502         tokens in the cattr table. Fixes #53108.
25503
25504 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25505
25506         * loader.c: don't trim ".dll" before looking up in the config file.
25507         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
25508
25509 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
25510
25511         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
25512         Return the module which contains the resource as well.
25513         (ves_icall_System_Reflection_Module_Close): New icall.
25514
25515         * appdomain.c: Bump corlib version number.
25516
25517         * image.c (mono_image_addref): New public function.
25518
25519         * assembly.c: Call mono_image_addref.
25520
25521         * reflection.c (mono_module_get_object): Increase reference count of 
25522         the image.
25523
25524         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
25525         Fixes #22532.
25526
25527         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
25528         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
25529         proper exceptions on DllImport problems.
25530
25531 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
25532
25533         * class.c, metadata.c: eliminate CSIZE macro.
25534
25535 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
25536
25537         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
25538         * object.h: Added async_callback field in MonoAsyncResult.
25539         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
25540         * verify.c: Added async_callback in MonoAsyncResult layout.
25541
25542 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
25543
25544         * reflection.c (mono_reflection_get_custom_attrs): Add support
25545         for Modules.
25546
25547 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
25548
25549         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
25550         marshalling.
25551         (mono_marshal_method_from_wrapper): Add null pointer check.
25552
25553 2004-01-16  Martin Baulig  <martin@ximian.com>
25554
25555         * debug-mono-symfile.h: Set version number to 36 and reflect
25556         latest symbol writer changes.
25557
25558 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
25559
25560         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
25561         multi-dimensional arrays.
25562         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
25563         (mono_class_from_mono_type): Use bounded_array_class_get.
25564         
25565         * class.c (mono_bounded_array_class_get): New function which takes
25566         a 'bounded' bool argument to distinguish vectors from one dimensional
25567         arrays.
25568
25569         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
25570         bounded_array_class_get if the array has bounds.
25571
25572         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
25573         Search modules loaded using AssemblyBuilder:AddModule as well.
25574
25575 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25576
25577         * appdomain.c: increased corlib version.
25578         * filewatcher.c: removed g_print.
25579         * icall.c:
25580         (get_property_info): only allocate what is actually requested.
25581         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
25582
25583 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25584
25585         * Makefile.am: added filewatcher.[ch]
25586         * filewatcher.[ch]: FileSystemWatcher runtime support.
25587         * icall.c: added new FSW icalls.
25588
25589 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
25590
25591         * string-icalls.c: fix stringbuilder regression as suggested by
25592         Iain McCoy <iain@mccoy.id.au>.
25593
25594 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
25595
25596         * process.c (process_read_stringtable_block): Recognize '007f' as
25597         a language neutral stringtable block.
25598
25599 2004-01-12  Patrik Torstensson
25600
25601         * object.h (MonoStringBuilder) : Changed layout to support our
25602         new stringbuilder class.
25603         * marshal.c: Change marshalling to support the new layout of 
25604         string builder.
25605         * appdomain.c: increased version number because new layout of
25606         string builder.
25607
25608 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
25609
25610         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
25611         assembly name as an string instead of an AssemblyName, since it is
25612         easier to extract info from it.
25613
25614         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
25615         the culture subdirectories too. Fixes #52231.
25616
25617 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25618
25619         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
25620         It takes 2 new parameters with an optional name for the method to look
25621         for and case ignoring info.
25622
25623         * threadpool.c: removed unused variable.
25624
25625 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25626
25627         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
25628         It takes 2 new parameters with an optional name for the property to look
25629         for and case ignoring info.
25630         Fixes bug #52753.
25631
25632 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
25633
25634         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
25635         Fix #52451.
25636
25637 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25638
25639         * appdomain.c:
25640         * assembly.c: escape the uri before passing it to g_filename_from_uri.
25641         Fixes bug #52630.
25642
25643 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
25644
25645         * reflection.c: Add support for more than one unmanaged resource.
25646
25647         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
25648         in field->def_value, as done in all other cases.
25649
25650         * reflection.c (mono_reflection_get_custom_attrs): Add support for
25651         TypeBuilders.
25652
25653         * reflection.c (mono_reflection_create_runtime_class): Remove 
25654         errorneous assignment to klass->element_class, since it is already
25655         done in mono_reflection_setup_internal_class.
25656
25657 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25658
25659         * gc.c: added missing LeaveCriticalSection.
25660         * icall.c: indented a couple of lines.
25661         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
25662         if we call EndInvoke inside a callback. Fixes bug #52601.
25663
25664 2004-01-07  Martin Baulig  <martin@ximian.com>
25665
25666         * mono-debug-debugger.h
25667         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
25668
25669 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
25670
25671         * appdomain.c: Use messages in NotImplementedException.
25672
25673         * exception.c (mono_get_exception_not_implemented): Now this takes
25674         a message argument.
25675
25676         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
25677         exception instead of g_asserting an aborting when something is not
25678         implemented.
25679
25680         Add some inline docs.
25681
25682 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
25683
25684         * reflection.h: Update after changes to object layout.
25685
25686         * reflection.c: Implement saving of unmanaged aka win32 resources.
25687
25688         * appdomain.c: Bump version number.
25689
25690         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
25691         Handle missing domains gracefully.
25692
25693 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
25694
25695         * file-io.c : On Windows, there are much more invalid_path_chars.
25696
25697 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
25698
25699         * class.h, object.c: prepare for GetType () speedup.
25700
25701 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
25702
25703         * profiler.c: workaround for --profile null reference exception on
25704           cygwin. Patch by Patrik Torstensson.
25705
25706 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
25707
25708         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
25709         make work for unaligned access.
25710
25711 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
25712
25713         * class.c: small cleanup (class->fields [i] -> field).
25714         * image.c: check address of metadata is valid.
25715
25716 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
25717
25718         * assembly.h assembly.c (mono_assembly_loaded): New public function to
25719         search the list of loaded assemblies.
25720
25721         * reflection.c (mono_reflection_type_from_name): Use 
25722         mono_assembly_loaded instead of mono_image_loaded.
25723
25724         * reflection.c: Fix warnings.
25725
25726 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
25727
25728         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
25729         is dynamic. This is needed since an assembly can contain both dynamic and
25730         non-dynamic images.
25731
25732         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
25733         assembly->dynamic.
25734
25735         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
25736
25737         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
25738         to store modules loaded using AddModule.
25739
25740         * reflection.c (mono_image_fill_file_table): Generalize this so it works
25741         on Modules.
25742
25743         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
25744
25745         * reflection.c (mono_image_fill_export_table_from_module): New function to
25746         fill out the EXPORTEDTYPES table from a module.
25747
25748         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
25749         into a separate function. Also handle loaded non-dynamic modules.
25750
25751         * reflection.c (mono_image_basic_init): Fix memory allocation.
25752
25753         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
25754
25755         * assembly.c (mono_assembly_load_references): Make this public.
25756
25757 2003-12-19  Martin Baulig  <martin@ximian.com>
25758
25759         * class.c (mono_class_initialize_generic): Made this static, take
25760         a `MonoGenericInst *' instead of a `MonoClass *'.
25761         (mono_class_from_generic): Call mono_class_initialize_generic()
25762         unless we're already initialized or being called from
25763         do_mono_metadata_parse_generic_inst().
25764
25765         * class.h (MonoGenericInst): Added `initialized' and
25766         `init_pending' flags.
25767
25768         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
25769         `mono_class_init (gklass)' or mono_class_initialize_generic()
25770         here; set `generic_inst->init_pending' while parsing the
25771         `type_argv'.
25772
25773 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
25774
25775         * locales.c: include string.h for memxxx prototypes
25776
25777 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
25778
25779         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
25780         constructor when accessing literal fields.
25781
25782 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
25783
25784         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
25785
25786         * reflection.c (assembly_add_resource_manifest): New function to fill
25787         the MANIFESTRESOURCE table.
25788
25789         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
25790
25791         * reflection.h: Update to changes in class layout.
25792
25793         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
25794         Reenable call to mono_runtime_is_shutting_down ().
25795
25796         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
25797         determine if the runtime is shutting down.
25798
25799 2003-12-16  Jackson Harper <jackson@ximian.com>
25800
25801         * icall.c: comment out call to mono_runtime_is_shutting_down to
25802         fix build.
25803         
25804 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
25805
25806         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
25807         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
25808
25809 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
25810
25811         * reflection.c: move definition of swap_with_size
25812         to before its first call
25813
25814 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
25815
25816         * appdomain.c (mono_runtime_is_shutting_down): New public function.
25817
25818         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
25819         icall.
25820
25821         * object.c: Fix warnings.
25822
25823         * icall.c (ves_icall_Type_Get...): Only consider inherited static
25824         members if FlattenHierarchy is set.
25825
25826         * reflection.c (mono_image_add_decl_security): New function to emit
25827         declarative security.
25828
25829         * reflection.h reflection.c: Add support for declarative security.
25830
25831         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
25832         
25833 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
25834
25835         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
25836         
25837         * appdomain.c verify.c: Moved corlib version checking into its own
25838         function in appdomain.c since it needs to create vtables etc.
25839
25840 2003-12-13  Patrik Torstensson <p@rxc.se>
25841
25842         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
25843         instead of unwrapped server.
25844
25845 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
25846
25847         * verify.c (check_corlib): Fix field index.
25848
25849 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
25850
25851         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
25852         GetGacPath icall.
25853
25854 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
25855
25856         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
25857         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
25858         cope with sizeof(size_t) != sizeof(guint32).
25859
25860 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25861
25862         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
25863         in case of failure.
25864
25865 2003-12-10  Mark Crichton <crichton@gimp.org>
25866
25867         * icall.c: removed the GetNonZeroBytes.  We now handle this case
25868         in managed code.
25869
25870         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
25871
25872 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
25873
25874         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
25875         marked as deleted.
25876
25877 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
25878
25879         * verify.c (check_corlib): Handle the case when the version field is 
25880         initialized by a static constructor.
25881
25882 2003-12-08  Patrik Torstensson  <p@rxc.se>
25883
25884     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
25885
25886 2003-12-08  Martin Baulig  <martin@ximian.com>
25887
25888         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
25889         a MonoReflectionGenericParameter, also take the parameter index
25890         and name as arguments.
25891         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
25892         (ves_icall_MonoGenericParam_initialize): New interncall.
25893         (ves_icall_Type_make_byref_type): New interncall.
25894
25895         * reflection.h (MonoReflectionGenericParam): Derive from
25896         MonoReflectionType, not just from MonoObject.  Added `refobj' and
25897         `index' fields.
25898
25899         * reflection.c (mono_reflection_define_generic_parameter): Create
25900         and return a new MonoReflectionGenericParam; don't initialize the
25901         constraints here.
25902         (mono_reflection_initialize_generic_parameter): New public method;
25903         initializes the constraints and creates the `param->pklass'.
25904
25905 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
25906
25907         * reflection.h reflection.c: Use the new fields 'num_types', 
25908         'num_fields' and 'num_methods' to track the number of types etc.
25909
25910         * verify.c (check_corlib): Check corlib version number.
25911
25912 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
25913
25914         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
25915         function works on all methods.
25916
25917 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
25918
25919         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
25920         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
25921         the custom_type_info flag of the transparent proxy.
25922         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
25923         objects that supports IRemotingTypeInfo.
25924         * object.h: Added custom_type_info field in transparent proxy.
25925
25926 2003-12-06  Martin Baulig  <martin@ximian.com>
25927
25928         * class.c (mono_class_create_from_generic): Removed.
25929         (mono_class_from_generic): Check `ginst->klass' before doing
25930         anything else.  This is important to fully support "recursive"
25931         generic types.
25932
25933         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
25934         empty `generic_inst->klass' before doing anything else.
25935
25936 2003-12-06  Dick Porter  <dick@ximian.com>
25937
25938         * verify.c: 
25939         * object.h:
25940         * icall.c:
25941         * locales.c: Use C structs to access class fields.  Don't do a
25942         conversion between MonoString and UChar because both are
25943         platform-endian UTF-16.  Compare now takes startindex and count
25944         parameters.  Add a char overload for IndexOf.  Speed up the
25945         invariant string IndexOf.
25946
25947 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
25948
25949         * Makefile.am (monosn_LDADD): Fix parallel build.
25950
25951 2003-12-04  Martin Baulig  <martin@ximian.com>
25952
25953         * icall.c
25954         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
25955         (ves_icall_Type_make_array_type): New interncall.       
25956
25957 2003-12-04  Martin Baulig  <martin@ximian.com>
25958
25959         * locales.c: also change it in the !HAVE_ICU case.
25960
25961 2003-12-04  Dick Porter  <dick@ximian.com>
25962
25963         * icall.c:
25964         * locales.c: construct_compareinfo is now in CompareInfo, not
25965         CultureInfo.
25966
25967 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
25968
25969         * image.c (mono_image_load_file_for_image): Cache loaded images in the
25970         image->files array.
25971
25972         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
25973         table as well.
25974
25975         * assembly.c (mono_assembly_load_references): Only load references
25976         once.
25977
25978         * class.c (mono_class_from_name): Avoid linear search of the 
25979         EXPORTEDTYPE table.
25980
25981         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
25982
25983 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
25984
25985         * image.h (MonoImage): Add 'field_cache' field.
25986
25987         * loader.c (mono_field_from_token): Cache field lookups.
25988         
25989         * reflection.c (mono_module_get_object): Fix name property.
25990
25991         * icall.c (ves_icall_get_enum_info): Update after changes to 
25992         mono_metadata_get_constant_index ().
25993
25994         * icall.c: Get rid of get_type_info icall, use a separate icall for
25995         each type property to avoid needless memory allocations. Fixes #51514.
25996
25997         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
25998         to avoid needless binary searches.
25999
26000         * class.c (class_compute_field_layout): Move the initialization of
26001         field->def_value to mono_class_vtable ().
26002
26003         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
26004         non-corlib types.
26005
26006         * object.c (mono_object_allocate): Make it inline.
26007
26008         * object.c (mono_object_allocate_spec): Make it inline.
26009         
26010 2003-12-02  Dick Porter  <dick@ximian.com>
26011
26012         * locales.c (create_NumberFormat): NumberFormatInfo construction.
26013         Patch by Mohammad DAMT (mdamt@cdl2000.com).
26014
26015 2003-12-01  Dick Porter  <dick@ximian.com>
26016
26017         * threads.c: Fix signature and call in CreateMutex and
26018         CreateEvent.
26019
26020 2003-12-01  Dick Porter  <dick@ximian.com>
26021
26022         * icall.c: 
26023         * locales.c: Implement string compares and searching
26024
26025         * object.h: Add extra Thread field
26026
26027 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
26028
26029         * reflection.c (fixup_method): Add support for MonoCMethod.
26030
26031 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
26032
26033         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
26034
26035         * reflection.c (assembly_name_to_aname): Allow extra characters in
26036         assembly names. Fixes #51468.
26037
26038 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
26039
26040         * exception.c (mono_exception_from_name_domain): New helper function.
26041
26042         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
26043         exception object in the correct domain.
26044
26045         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
26046         formatting + make a copy a the input data.
26047
26048         * loader.c (mono_get_method_from_token): Methods which contain
26049         native code do not have entries in the ImplMap.
26050
26051         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
26052         Thanks to Gonzalo for spotting this.
26053         
26054         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
26055         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
26056
26057         * assembly.h (mono_assembly_load_from): Split the second part of 
26058         assembly loading into a new public function.
26059
26060         * exception.h (mono_get_exception_bad_image_format): New function.
26061
26062 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
26063
26064         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
26065         Enumerate all modules inside a dynamic assembly. Fixes #51293.
26066         
26067         * icall.c: Add new icall for creating dynamic methods.
26068
26069         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
26070
26071         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
26072
26073         * reflection.c (mono_reflection_create_dynamic_method): New icall to
26074         create a dynamic method.
26075
26076         * reflection.c (resolve_object): New helper function.
26077
26078         * reflection.c: Generalize ReflectionMethodBuilder and the functions
26079         which manipulate it so they can also work on dynamic methods.
26080
26081         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
26082         creating the MonoReflectionMethodAux structure if it is not needed.
26083         
26084         * reflection.h verify.c: Update after changes to object layout.
26085
26086         * reflection.c (method_builder_encode_signature): Fix compilation on
26087         gcc 2.95.x.
26088
26089 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
26090
26091         * appdomain.h: Added support for context static fields. Added static_data
26092           field to MonoAppContext and renamed thread_static_fields to a more
26093           generic special_static_fields in MonoAppDomain, since it can now contain
26094           context static fields.
26095         * domain.c: Updated hashtable name.
26096         * object.c: Replaced field_is_thread_static() for a more generic
26097           field_is_special_static() which also checks for context static attribute.
26098           In mono_class_vtable(), added support for static context fields.
26099         * threads.c: Changed methods that manage thread static fields to more
26100           generic methods so they can be reused both for thread and context static
26101           data.
26102         * threads.h: Declared some new methods.
26103
26104 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
26105
26106         * reflection.h: Update after changes to the managed types.
26107
26108         * reflection.c (encode_custom_modifiers): New helper function.
26109
26110         * reflection.c (method_encode_signature): Emit custom modifiers.
26111
26112         * reflection.c (field_encode_signature): Emit custom modifiers.
26113
26114 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
26115
26116         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
26117
26118         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
26119         implementation.
26120
26121         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
26122         icall.
26123
26124         * object.c (mono_field_get_value_object): New function.
26125
26126         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
26127         specific.
26128
26129 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
26130
26131         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
26132         return a preallocated out-of-memory exception instance.
26133
26134         * object.c (out_of_memory): Use the new function.
26135
26136         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
26137         flag is before the custom modifiers. Fixes #49802.
26138
26139 2003-11-16  Martin Baulig  <martin@ximian.com>
26140
26141         * class.c (mono_class_is_open_constructed_type): Implemented the
26142         MONO_TYPE_GENERICINST case.
26143
26144 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
26145
26146         * assembly.c (mono_assembly_fill_assembly_name): New function to
26147         fill out the MonoAssemblyName structure.
26148         (mono_assembly_open): Use the new function.
26149
26150         * icall.c (fill_reflection_assembly_name): New helper function.
26151
26152         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
26153         new function.
26154
26155         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
26156
26157 2003-11-15  Martin Baulig  <martin@ximian.com>
26158
26159         * class.c (mono_class_is_open_constructed_type): New public
26160         function; checks whether a type is an open constructed type,
26161         ie. whether it still contains type parameters.
26162         (mono_class_inflate_generic_type): If we're a type parameter and
26163         the inflated type is also a MONO_TYPE_(M)VAR, return the original
26164         type.
26165
26166         * class.h (MonoGenericInst): Added `guint32 is_open'.
26167
26168         * loader.c (method_from_methodspec): Check whether we're an open
26169         or closed constructed type and set `ginst->is_open'.
26170
26171         * reflection.c (mono_reflection_bind_generic_parameters): Check
26172         whether we're an open or closed constructed type and set
26173         `ginst->is_open'.
26174         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
26175         from open constructed types.
26176
26177 2003-11-15  Martin Baulig  <martin@ximian.com>
26178
26179         * reflection.c (mono_reflection_bind_generic_parameters): If we're
26180         a generic instance (instead of a generic type declaration) with
26181         unbound generic parameters, bind them to our actual types.
26182
26183 2003-11-14  Martin Baulig  <martin@ximian.com>
26184
26185         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
26186
26187         * reflection.c (mono_reflection_bind_generic_parameters): If we're
26188         an interface type, populate `res->interfaces' with instantiated
26189         versions of all the interfaces we inherit.
26190
26191 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
26192
26193         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
26194         when MONO_PATH is set but doesn't contain the install dir.
26195
26196 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26197
26198         * icall.c:
26199         (ves_icall_Type_GetInterfaces): don't return an interface twice when
26200         it's also implemented in base classes. Fixes bug #50927.
26201
26202 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
26203
26204         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
26205         if this method is called from a finalizer. Fixes #50913.
26206
26207 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
26208
26209         * threads.c: Implement VolatileRead/VolatileWrite
26210
26211         * icall.c: Add new icalls for VolatileRead/VolatileWrite
26212
26213 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
26214
26215         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
26216         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
26217         2.95.3.
26218
26219         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
26220         from Peter Ross (pro@missioncriticalit.com).
26221         
26222 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
26223
26224         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
26225
26226 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
26227
26228         * assembly.c (mono_assembly_load_references): Disable check because it
26229         triggers on older corlibs which lots of people have.
26230
26231 2003-11-12  Jackson Harper  <jackson@ximian.com>
26232
26233         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
26234         load corlib.dll if mscorlib.dll is not found.
26235         * assembly.h: Remove corlib name define.
26236         * class.c:
26237         * domain.c:
26238         * image.c: Change corlib name to mscorlib.
26239         
26240 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
26241
26242         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
26243
26244 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
26245
26246         * appdomain.h: Added loader_optimization here to sync with the C#
26247         code, and add disallow_binding_redirects field.
26248
26249 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
26250
26251         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
26252
26253         * reflection.c (mono_image_build_metadata): Fix crash on modules
26254         with no types.
26255
26256         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
26257
26258         * icall.c (ves_icall_get_method_info): Return callingConvention as
26259         well.
26260
26261         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
26262         namespaces from the EXPORTEDTYPE table as well.
26263
26264         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
26265         from all modules inside the assembly.
26266         
26267 2003-11-11  Martin Baulig  <martin@ximian.com>
26268
26269         * reflection.c (mono_reflection_bind_generic_parameters): Make
26270         this work for interfaces.
26271
26272 2003-11-11  Martin Baulig  <martin@ximian.com>
26273
26274         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
26275
26276 2003-11-11  Martin Baulig  <martin@ximian.com>
26277
26278         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
26279         "MonoInflatedMethod" and "MonoInflatedCtor".
26280
26281 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
26282
26283         * reflection.c (resolution_scope_from_image): Use the assembly table
26284         from the manifest module, since other modules don't have it.
26285
26286         * debug-helpers.c (mono_type_full_name): New helper function.
26287
26288         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
26289
26290         * image.c (mono_image_load_file_for_image): New public function which
26291         is a replacement for the load_file_for_image in class.c.
26292
26293         * assembly.c (mono_assembly_load_module): A wrapper for the function
26294         above which does assembly association and reference loading too.
26295
26296         * class.c (mono_class_from_name): Call mono_assembly_load_module.
26297
26298 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26299
26300         * appdomain.c: not all of the attributes for the full assembly name
26301         are required and the order doesn't matter. Fixes bug #50787.
26302
26303 2003-11-10  Dick Porter  <dick@ximian.com>
26304
26305         * locales.c: Use platform-endian UTF16
26306
26307 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
26308
26309         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
26310         
26311 2003-11-10  Martin Baulig  <martin@ximian.com>
26312
26313         * metadata.c
26314         (mono_metadata_load_generic_params): Make this actually work.
26315
26316         * reflection.c (mono_reflection_bind_generic_parameters): If our
26317         parent is a generic instance, pass all the `types' to it, no
26318         matter whether it has the same number of type parameters or not.
26319
26320 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
26321
26322         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
26323
26324         * assembly.c (mono_assembly_load_references): Move the image<->assembly
26325         assignment code to this function so it gets called recursively for all
26326         modules.
26327
26328         * image.c (load_modules): Remove the assembly assignment since it is
26329         now done by mono_assembly_load_references.
26330         
26331         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
26332         Add 'module' argument.
26333         (mono_module_get_types): New helper function.
26334         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
26335
26336 2003-11-08  Martin Baulig  <martin@ximian.com>
26337
26338         * class.c (mono_class_inflate_generic_method): Interface method
26339         don't have a header.
26340
26341         * reflection.c (mono_image_get_methodspec_token): Take an
26342         additional `MonoGenericInst *' argument instead of reading it from
26343         the header; this is necessary to support interfaces.
26344         (mono_image_create_token): Pass the `MonoGenericInst *' from the
26345         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
26346         (inflated_method_get_object): Take an additional `MonoGenericInst *'
26347         argument.
26348
26349         * reflection.h (MonoReflectionInflatedMethod): Added
26350         `MonoGenericInst *ginst'.
26351
26352 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
26353
26354         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
26355
26356 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
26357
26358         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
26359
26360 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
26361
26362         * reflection.c 
26363         (reflection_methodbuilder_from_method_builder):
26364         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
26365         initialize a ReflectionMethodBuilder structure.
26366         (mono_image_get_methodbuilder_token):
26367         (mono_image_get_ctorbuilder_token): New functions to emit memberref
26368         tokens which point to types in another module inside the same assembly.
26369
26370         * reflection.c: Use the new helper functions.
26371         
26372         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
26373
26374         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
26375         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
26376
26377         * reflection.c (resolution_scope_from_image): Emit a moduleref if
26378         neccesary.
26379
26380         * reflection.c (mono_image_build_metadata): Emit metadata only for the
26381         current module. Emit the manifest only for the main module.
26382
26383         * reflection.c (mono_image_create_token): Add assertion when a 
26384         memberref needs to be created.
26385
26386         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
26387
26388         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
26389         larger buffer for the custom attribute blob. Fixes #50637.
26390         
26391 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26392
26393         * threadpool.c: notify listener on async processing handles after
26394         invoking the async callback. Thanks to Zoltan.
26395
26396 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
26397
26398         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
26399         avoid code duplication.
26400
26401         * reflection.h (MonoDynamicImage): New type which is currently unused,
26402         but will be used through the ref.emit code in place of 
26403         MonoDynamicAssembly.
26404
26405         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
26406         object layout.
26407
26408         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
26409         a MonoDynamicImage instead of just a MonoImage.
26410         
26411         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
26412         icalls to ModuleBuilder but keep their semantics, so they will work
26413         with moduleb->assemblyb. This will change later.
26414         
26415 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
26416
26417         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
26418         object layout.
26419
26420         * reflection.c (mono_image_build_metadata): Avoid creation of a default
26421         main module, since it is now done by the managed code.
26422
26423 2003-11-03  Martin Baulig  <martin@ximian.com>
26424
26425         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
26426         `ginst->klass' here.
26427         (method_encode_methodspec): Don't use the `ginst->generic_method's
26428         klass if it's a generic instance, use `ginst->klass' in this case.
26429
26430 2003-11-03  Martin Baulig  <martin@ximian.com>
26431
26432         * reflection.c (mono_image_get_generic_method_param_info):
26433         Removed, use mono_image_get_generic_param_info() instead.
26434         (mono_image_get_type_info): Write the GenericParam table before
26435         the Method table.  This is neccessary because in the GenericParam
26436         table, type parameters of the class (ie. '!0' etc.) must come
26437         before the ones from its generic methods (ie. '!!0' etc).
26438
26439 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
26440
26441         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
26442
26443 2003-11-02  Martin Baulig  <martin@ximian.com>
26444
26445         * reflection.c (create_generic_typespec): Take a
26446         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
26447         the generic parameters from it.
26448
26449 2003-11-02  Martin Baulig  <martin@ximian.com>
26450
26451         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
26452         instead of a `MonoClassField *' since we just need the type.
26453         (create_generic_typespec): New static function.  Creates a
26454         TypeSpec token for a generic type declaration.
26455         (mono_image_get_generic_field_token): New static function.
26456         (mono_image_create_token): If we're a FieldBuilder in a generic
26457         type declaration, call mono_image_get_generic_field_token() to get
26458         the token.
26459
26460 2003-11-02  Martin Baulig  <martin@ximian.com>
26461
26462         * reflection.h
26463         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
26464         `MonoReflectionGenericInst *declaring_type' and
26465         `MonoReflectionGenericInst *reflected_type' fields.
26466
26467         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
26468         `MonoReflectionGenericInst *declaring_type' and a
26469         `MonoReflectionGenericInst *reflected_type' argument instead of a
26470         single `MonoReflectionGenericInst *type' one.  Set
26471         `res->declaring_type' and `res->reflected_type' from them.
26472         (mono_reflection_inflate_field): Likewise.      
26473
26474 2003-11-02  Martin Baulig  <martin@ximian.com>
26475
26476         * class.c (mono_class_setup_vtable): Don't store generic methods
26477         in the vtable.  
26478
26479 2003-11-02  Martin Baulig  <martin@ximian.com>
26480
26481         * reflection.h (MonoReflectionGenericInst): Added
26482         `MonoReflectionType *declaring_type'.
26483
26484         * reflection.c (mono_reflection_bind_generic_parameters): Use
26485         `if (tb->parent)' instead of `klass->parent'.
26486
26487 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
26488
26489         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
26490         with an empty ASSEMBLY table.
26491
26492         * reflection.c (mono_image_build_metadata): Avoid using the same loop
26493         variable in the inner and outer loops.
26494
26495 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
26496
26497         * metadata.h (mono_metadata_make_token): Put parentheses around macro
26498         argument.
26499
26500         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
26501         
26502         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
26503         icalls. Instead, do everything in managed code. This is needed since
26504         it is hard to restore the original domain etc. in unmanaged code in the
26505         presence of undeniable exceptions.
26506
26507         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
26508         New icalls to push and pop appdomain refs.
26509
26510 2003-10-31  Martin Baulig  <martin@ximian.com>
26511
26512         * class.c (inflate_generic_type): Renamed to
26513         mono_class_inflate_generic_type() and made it public.
26514
26515         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
26516         New interncall.
26517
26518         * loader.c (mono_field_from_memberref): Also set the retklass for
26519         typespecs.
26520
26521         * fielder.c (mono_image_get_inflated_field_token): New static
26522         method; creates a metadata token for an inflated field.
26523         (mono_image_create_token, fixup_method): Added support for
26524         "MonoInflatedField".
26525         (fieldbuilder_to_mono_class_field): New static function.
26526         (mono_reflection_inflate_field): New public function.
26527
26528         * reflection.h
26529         (MonoReflectionGenericInst): Added `MonoArray *fields'.
26530         (MonoReflectionInflatedField): New typedef.     
26531
26532 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
26533
26534         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
26535         for Solaris and other platforms without s6_addr16
26536
26537 2003-10-30  Martin Baulig  <martin@ximian.com>
26538
26539         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
26540         argument instead of two.
26541         (mono_class_inflate_generic_signature): Likewise.
26542         (inflate_generic_header): Likewise.
26543         (mono_class_inflate_generic_method): Likewise.  In addition, if
26544         `ginst->klass' is set, it becomes the new `method->klass'.
26545
26546         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
26547         field.
26548
26549         * reflection.c (encode_generic_method_sig): Write a 0xa as the
26550         first byte. [FIXME]
26551         (method_encode_methodspec): If we have generic parameters, create
26552         a MethodSpec instead of a MethodRef.
26553         (fixup_method): Added support for "MonoInflatedMethod" and
26554         "MonoInflatedCtor".
26555         (mono_image_create_token): Added support for "MonoInflatedMethod"
26556         and "MonoInflatedCtor".
26557         (inflated_method_get_object): New static function; returns a
26558         managed "System.Reflection.MonoInflatedMethod" object.
26559         (mono_reflection_bind_generic_method_parameters): Return a
26560         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
26561         (mono_reflection_inflate_method_or_ctor): Likewise.
26562         (mono_image_get_generic_method_param_info): Initialize unused
26563         fields to zero.
26564         (mono_image_get_generic_param_info): Likewise.
26565
26566         * reflection.h (MonoReflectionInflatedMethod): New public
26567         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
26568         "S.R.MonoInflatedCtor" classes.
26569
26570         * loader.c (method_from_memberref): If we're a TypeSpec and it
26571         resolves to a generic instance, inflate the method.
26572
26573 2003-10-28  Dick Porter  <dick@ximian.com>
26574
26575         * object.c (mono_runtime_run_main): Convert command-line arguments
26576         into utf8, falling back to the user's locale encoding to do so.
26577
26578 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
26579
26580         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
26581         at this time.
26582
26583         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
26584
26585         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
26586         up icalls at method definition time. Partially fixes #33569.
26587
26588 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
26589
26590         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
26591         marshalling of arrays. Fixes #50116.
26592
26593         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
26594
26595         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
26596         points to a vtable in the dying appdomain.
26597
26598         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
26599         listeners into unmanaged code inside the lock.
26600
26601         * object.c (mono_class_vtable): Turn off typed allocation in non-root
26602         domains and add some comments.
26603
26604 2003-10-25  Martin Baulig  <martin@ximian.com>
26605
26606         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
26607
26608         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
26609
26610         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
26611         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
26612         currently parsing.  Create the generic class and store it in
26613         `generic_inst->klass' before parsing the type arguments.  This is
26614         required to support "recursive" definitions; see mcs/tests/gen-23.cs
26615         for an example.
26616         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
26617         to support recursive typespec entries.
26618
26619         * class.c (mono_class_setup_parent): If our parent is a generic
26620         instance, we may get called before it has its name set.
26621         (mono_class_from_generic): Splitted into
26622         mono_class_create_from_generic() and mono_class_initialize_generic().
26623
26624 2003-10-25  Martin Baulig  <martin@ximian.com>
26625
26626         * icall.c (ves_icall_Type_BindGenericParameters): Return a
26627         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
26628         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
26629         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
26630
26631         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
26632         (create_typespec): Likewise.
26633         (mono_reflection_bind_generic_parameters): Return a
26634         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
26635         (mono_reflection_inflate_method_or_ctor): New public function.
26636
26637         * reflection.h (MonoReflectionGenericInst): New typedef.        
26638
26639 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
26640
26641         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
26642         inside the domain lock. Fixes #49993.
26643         
26644         * object.c (mono_class_vtable): When typed allocation is used, 
26645         allocate vtables in the GC heap instead of in the mempool, since the
26646         vtables contain GC descriptors which are used by the collector even
26647         after the domain owning the mempool is unloaded.
26648
26649         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
26650
26651         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
26652         reflect what it does. Also invalidate mempools instead of freeing
26653         them if a define is set.
26654
26655         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
26656         of the appdomain.
26657         
26658         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
26659         hold the finalizable objects in this domain.
26660
26661         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
26662         appdomain.
26663
26664         * appdomain.c (mono_domain_set): New function to set the current
26665         appdomain, but only if it is not being unloaded.
26666
26667         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
26668         appdomain which is being unloaded.
26669         
26670         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
26671         unloading of the root appdomain.
26672
26673         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
26674         icall to execute a method in another appdomain. Intended as a 
26675         replacement for InternalSetDomain, which can confuse the code 
26676         generation in the JIT.
26677
26678         * appdomain.c (mono_domain_is_unloading): New function to determine
26679         whenever an appdomain is unloading.
26680
26681         * appdomain.c (mono_domain_unload): New function to correctly unload
26682         an appdomain.
26683
26684         * assembly.c (mono_assembly_load_references): Check that an assembly
26685         does not references itself.
26686
26687         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
26688         domain manually, it asks the finalizer thread to do it, then waits for
26689         the result. Also added a timeout.
26690
26691         * icall.c: Register the new icalls.
26692
26693         * threads.h threads.c: Export the mono_gc_stop_world and 
26694         mono_gc_start_world functions.
26695         
26696         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
26697         function to fill out the mempool with 0x2a.
26698
26699 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
26700
26701         * reflection.h (MonoReflectionMethodAux): New structure to store
26702         information which is rarely used, thus is not in the MonoMethod
26703         structure.
26704
26705         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
26706         store the aux info.
26707
26708         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
26709         and marshalling info into the aux structure.
26710
26711         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
26712         from the aux structure.
26713
26714         * loader.c (mono_method_get_param_names): Retrieve the param names from
26715         the aux structure.
26716         
26717 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
26718
26719         * exception.h exception.c: Add AppDomainUnloadedException && fix 
26720         warning.
26721
26722 2003-10-21  Dick Porter  <dick@ximian.com>
26723
26724         * socket-io.c
26725         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
26726         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
26727
26728 2003-10-21  Martin Baulig  <martin@ximian.com>
26729
26730         * reflection.c (mono_reflection_bind_generic_parameters):
26731         `klass->parent' is NULL for interfaces.
26732
26733 2003-10-21  Martin Baulig  <martin@ximian.com>
26734
26735         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
26736
26737 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
26738
26739         * exception.c (mono_exception_from_name_msg): New helper function for
26740         creating exceptions and initializing their message field.
26741
26742         * exception.c: Simplify functions using the new helper.
26743
26744         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
26745         New function.
26746
26747         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
26748         mono_raise_exception, since otherwise gcc doesn't generate the function
26749         epilog for raise_exception, confusing the stack unwinding in the JIT.
26750         Fixes #45043.
26751
26752         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
26753         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
26754         Fixes #49499.
26755
26756 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26757
26758         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
26759         utf8.
26760
26761 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
26762
26763         * icall.c: Removed GetUninitializedObject method because
26764           AllocateUninitializedClassInstance does the same.
26765
26766 2003-10-18  Martin Baulig  <martin@ximian.com>
26767
26768         * class.c (inflate_generic_signature): Renamed to
26769         mono_class_inflate_generic_signature() and made it public.
26770         (my_mono_class_from_generic_parameter): New static function; if we
26771         don't already have the generic parameter's MonoClass, create a
26772         very simple one which is just used internally in the runtime and
26773         not passed back to managed code.
26774
26775         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
26776
26777         * metadata.h (MonoMethodSignature): Moved the
26778         `MonoGenericParam *gen_params' to the MonoMethodHeader.
26779         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
26780
26781         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
26782         ves_icall_MonoMethod_GetGenericArguments(); this is now an
26783         interncall on the MonoMethod class, not on MethodInfo.
26784         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
26785         calling mono_reflection_bind_generic_method_parameters() directly.
26786
26787         * loader.c (mono_method_get_signature): If this is a MethodSpec;
26788         return the already computed `method->signature'.
26789         (method_from_methodspec): New static function to load a method
26790         from a MethodSpec entry.
26791         (mono_get_method_from_token): Call the new method_from_methodspec()
26792         for MethodSpec tokens.  
26793         (mono_get_method_from_token): If we're a generic method, load the
26794         type parameters.
26795
26796         * reflection.c (mono_image_get_memberref_token): Allow
26797         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
26798         table.
26799         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
26800         (mono_image_create_token): First check whether it's a generic
26801         method (so we'd need to create a MethodSpec), then do the other
26802         two alternatives.
26803         (mono_reflection_bind_generic_method_parameters): Return a
26804         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
26805         called directly from the interncall.
26806
26807 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
26808
26809         * reflection.c (load_public_key): Move loading of the public key
26810         into managed code.
26811
26812         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
26813
26814         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
26815         fields.
26816
26817         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
26818         culture, hash_alg and public_key. Fixes #49555.
26819
26820 2003-10-17  Martin Baulig  <martin@ximian.com>
26821
26822         * class.h (MonoGenericInst): Moved this declaration here and added
26823         `MonoMethod *generic_method'.
26824
26825         * icall.c
26826         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
26827         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
26828
26829         * metadata.c (mono_metadata_type_equal): Two types of
26830         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
26831         index; ie. don't compare the address of the `MonoGenericParam'
26832         structure.
26833         (mono_metadata_load_generic_params): Removed the `MonoMethod
26834         *method' argument.
26835
26836         * metadata.h (MonoGenericInst): Moved declaration to class.h.
26837         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
26838
26839         * reflection.c (method_encode_signature): Encode the number of
26840         generic parameters.
26841         (encode_generic_method_sig): New static function.
26842         (method_encode_methodspec): New static function; creates an entry
26843         in the MethodSpec table for a generic method.
26844         (mono_image_get_methodspec_token): New static function.
26845         (mono_image_create_token): Call mono_image_get_methodspec_token()
26846         for generic methods.
26847         (mono_reflection_bind_generic_method_parameters): New public
26848         function.  Instantiates a generic method.
26849
26850 2003-10-16  Martin Baulig  <martin@ximian.com>
26851
26852         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
26853         *gen_params' here from MonoMethodHeader.
26854
26855         * metadata.c (mono_metadata_parse_method_signature): If we have
26856         generic parameters, initialize `method->gen_params' and then set
26857         the correct `type->data.generic_param' in all the parameters.
26858
26859 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
26860
26861         * threads.c (mono_threads_get_default_stacksize): New function to 
26862         return the default stacksize.
26863
26864         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
26865         termination of the finalizer thread, since the previous method had
26866         race conditions. Fixes #49628.
26867
26868         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
26869         as for the other managed threads.
26870
26871 2003-10-16  Martin Baulig  <martin@ximian.com>
26872
26873         * class.c (inflate_generic_signature): Copy `generic_param_count'
26874         and `gen_params'.
26875
26876         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
26877         New interncall.
26878
26879         * metadata.c (mono_metadata_parse_method_signature): Actually set
26880         the `method->generic_param_count' here.
26881         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
26882
26883 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
26884
26885         * object.h: Add a new field to TypedRef to simplify the implementation
26886         of the REFANY opcodes in the JIT.
26887
26888         * icall.c: Make use of the new field.
26889
26890         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
26891         dynamically.
26892
26893 2003-10-15  Martin Baulig  <martin@ximian.com>
26894
26895         * class.c (mono_class_from_gen_param): Renamed to
26896         mono_class_from_generic_parameter() and moved most of the
26897         functionality from mono_reflection_define_generic_parameter()
26898         here; ie. we create a "real" class here.
26899         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
26900         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
26901         previously been called.
26902
26903         * class.h (MonoGenericParam): Moved the declaration of this struct
26904         here from metadata.h and added `MonoMethod *method'.
26905
26906         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
26907         interncall.
26908
26909         * loader.c (mono_get_method_from_token): If we have any generic
26910         parameters, call mono_metadata_load_generic_params() to read them
26911         from the MONO_TABLE_GENERICPAR.
26912
26913         * metadata.c (mono_metadata_load_generic_params): Added
26914         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
26915
26916         * metadata.h (MonoMethodSignature): Replaced
26917         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
26918         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
26919
26920         * reflection.c (mono_reflection_define_generic_parameter): Moved
26921         most of the functionality into the new
26922         mono_class_from_generic_parameter(); set the `method' field if
26923         we're a method parameter.       
26924
26925 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
26926
26927         * marshal.c (emit_struct_conv): if native size is 0
26928         emit no code.
26929
26930 2003-10-14  Martin Baulig  <martin@ximian.com>
26931
26932         * icall.c: The generics API has changed in the spec since it was
26933         added to System.Type; these modifications make it match the spec
26934         again.
26935         (ves_icall_Type_GetGenericParameters): Renamed to
26936         `ves_icall_Type_GetGenericArguments'.
26937         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
26938         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
26939         `ves_icall_MonoType_get_HasGenericArguments'.
26940         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
26941         `ves_icall_MonoType_get_IsGenericParameter'.
26942         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
26943         this is no interncall anymore.
26944         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
26945         `ves_icall_TypeBuilder_get_IsGenericParameter'.
26946
26947 2003-10-14  Martin Baulig  <martin@ximian.com>
26948
26949         * reflection.c (mono_reflection_bind_generic_parameters): Also
26950         inflate generic methods if we're reading the class from IL.
26951
26952 2003-10-13  Martin Baulig  <martin@ximian.com>
26953
26954         * reflection.c (mono_reflection_define_generic_parameter): This
26955         method isn't called directly from the icall anymore; take a
26956         `MonoReflectionAssemblyBuilder *' so we can use this for type and
26957         method generic parameters.
26958         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
26959         (method_builder_encode_signature): Encode generic parameters.
26960         (mono_image_get_method_info): Write generic params to the
26961         MONO_TABLE_GENERICPARAM table.
26962
26963         * reflection.h (MonoReflectionMethodBuilder): Added
26964         `MonoArray *generic_params'.
26965
26966         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
26967
26968         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
26969         wrapper for mono_reflection_define_generic_parameter().
26970         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
26971
26972 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
26973
26974         * marshal.h: Add missing function to fix build.
26975
26976         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
26977         the SetLastError pinvoke attribute.
26978
26979         * marshal.c (mono_marshal_set_last_error): New helper function called
26980         by the generated code.
26981         
26982         * marshal.c (mono_mb_emit_branch): New helper function.
26983
26984         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
26985
26986         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
26987         classes as parameters and return values of delegates. Fixes #29256. 
26988
26989 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
26990
26991         * locales.c: use gint32 in non HAVE_ICU case
26992
26993 2003-10-11  Martin Baulig  <martin@ximian.com>
26994
26995         * mono-debug.c (mono_debug_add_method): Added a workaround for
26996         bug #48591.
26997
26998 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
26999
27000         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
27001         delegates passed to native code must use the STDCALL calling 
27002         convention. Fixes #35987.
27003
27004 2003-10-10  Martin Baulig  <martin@ximian.com>
27005
27006         * class.c (inflate_generic_type): If we're inflating for a generic
27007         type instance (and not for a generic method), return
27008         MONO_TYPE_MVAR unchanged.
27009
27010 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27011
27012         * string-icalls.c: Join ignores null strings in the source array.
27013         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
27014         * threads.c: GetAvailableTheads is slightly more accurate.
27015
27016 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
27017
27018         * threads.h threads.c : add mono_threads_set_default_stacksize
27019         and pass default to CreateThread calls.
27020
27021 2003-10-09  Dick Porter  <dick@ximian.com>
27022
27023         * icall.c:
27024         * locales.h:
27025         * locales.c: Internal calls for constructing CultureInfo and
27026         related objects from libicu (if its available.)
27027
27028 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
27029
27030         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
27031
27032 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27033
27034         * threadpool.c: added an argument to async_invoke_thread that is the
27035         item to process, pass the MonoAsyncResult to the thread start function
27036         when creating a new thread. This way we don't need to acquire any lock
27037         when we're creating a new thread. Readded a semaphore for faster
27038         response times (instead of that Sleep i added).
27039
27040 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
27041
27042         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
27043         get daylight change dates better on Windows, fix handling
27044         of platforms without tm_gmtoff.
27045
27046 2003-10-06  Martin Baulig  <martin@ximian.com>
27047
27048         * class.c (inflate_generic_method): Renamed to
27049         mono_class_inflate_generic_method() and made public.
27050         (mono_class_init): Don't inflate the generic methods here.
27051         (mono_class_from_generic): Added `gboolean inflate_methods'
27052         argument.  Inflate the methods here.
27053
27054         * loader.c (mono_method_get_param_names): Ignore instances of
27055         generic types for the moment.
27056
27057         * reflection.c (fixup_method): Added support for inflated methods.
27058         (mono_image_create_token): Use mono_image_get_methodref_token()
27059         for inflated methods.
27060         (mono_custom_attrs_from_param): Ignore instances of generic types
27061         for the moment.
27062         (mono_reflection_bind_generic_parameters): New public function.
27063         Moved all the functionality from
27064         ves_icall_Type_BindGenericParameters() here and added support for
27065         dynamic types.
27066         (mono_reflection_define_generic_parameter): Initialize
27067         `klass->methods' here.
27068
27069         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
27070         functionality into mono_reflection_define_generic_parameter().
27071         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
27072         TypeBuilder, return that TypeBuilder.
27073
27074 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27075
27076         * appdomain.c: removed mono_delegate_semaphore.
27077
27078         * threadpool.c:
27079         (mono_thread_pool_add): moved hash table creation inside and the thread 
27080         creation outside of the critical region.
27081         (mono_thread_pool_finish): removed obsolete code.
27082         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
27083         continue or exit the thread depending on the queue.
27084
27085 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
27086
27087         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
27088         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
27089         handle more bool marshalling options
27090
27091 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
27092
27093         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
27094         arrays of structs. Also add a more descriptive error message when
27095         a structure member is marshalled as LPArray.
27096
27097 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
27098
27099         * marshal.c (mono_marshal_get_native_wrapper): Add support for
27100         marshalling arrays of complex types. Fixes #29098. Also remove an
27101         usused and incomplete function.
27102
27103 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
27104
27105         * gc.c: report heap_size - free_bytes as total memory allocated
27106         (bug#49362).
27107
27108 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
27109
27110         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
27111         fix timezone handling problems on Windows.
27112         
27113         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
27114         asserts when the year is outside the range handled by ms the functions.
27115
27116         * class.c (setup_interface_offsets): If the class is an interface,
27117         fill out its interface_offsets slot.
27118
27119 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27120
27121         * threadpool.c: mark threadpool threads as background.
27122
27123 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
27124
27125         * decimal.c - define DECINLINE to nothing if not using GCC
27126
27127 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
27128
27129         * assembly.c: More refcount fixes.
27130
27131 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27132
27133         * string-icalls.c: if we're not trimming, return the same string.
27134         When not splitting, don't create a new string.
27135
27136 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27137
27138         * image.c:
27139         (mono_image_open): increment the ref_count inside the critical section.
27140
27141 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
27142
27143         * image.c (mono_image_open): Fix reference counting bug.
27144
27145 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
27146
27147         * marshal.c (mono_marshal_type_size) struct alignment changed for 
27148         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
27149         64bits. Avoid leak in mono_marshal_get_native_wrapper when
27150         mono_lookup_pinvoke_call throws.        
27151
27152 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
27153
27154         * reflection.c (mono_reflection_parse_type): Fix #49114.
27155
27156         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
27157         temporary workaround for cygwin header problem.
27158
27159         * object.c (mono_object_isinst): Synchronize this with the code
27160         generated by the JIT for casts.
27161
27162 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
27163
27164         * reflection.c (encode_type): Fix #38332.
27165
27166 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
27167
27168         * marshal.c (mono_marshal_method_from_wrapper): New function to return
27169         the original method from the wrapper method.
27170
27171 2003-09-25  Martin Baulig  <martin@ximian.com>
27172
27173         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
27174         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
27175         (ves_icall_Type_get_IsGenericInstance): New interncall.
27176
27177 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
27178
27179         * object.c: fix cast warning in big endian code.
27180
27181 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
27182
27183         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
27184         
27185 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27186
27187         * assembly.c: don't call check_env from mono_assembly_load. It's
27188         already done once in mono_assemblies_init and may cause headaches when
27189         multiple threads are loading assemblies.
27190
27191 2003-09-19  Martin Baulig  <martin@ximian.com>
27192
27193         * reflection.c (mono_reflection_define_generic_parameter): Don't
27194         allocate `klass->methods', set `klass->flags' to
27195         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
27196
27197 2003-09-18  Martin Baulig  <martin@ximian.com>
27198
27199         * class.c (mono_class_init): Don't create `class->methods' if it's
27200         already initialized.
27201
27202         * metadata.c (mono_metadata_load_generic_params): Make this
27203         actually work.
27204
27205         * reflection.c (mono_reflection_define_generic_parameter): Set
27206         parent class and interfaces from the constraints.
27207
27208         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
27209         to keep this struct in sync with the declaration in TypeBuilder.cs.
27210
27211 2003-09-17  Martin Baulig  <martin@ximian.com>
27212
27213         * metadata.h (MonoType): Replaced the data's `int type_param'
27214         field with `MonoGenericParam *generic_param'.
27215         (MonoGenericParam): Added `MonoClass *klass'.
27216
27217         * class.c (mono_class_from_gen_param): Removed the
27218         `MonoImage *image' and `int type_num' arguments.
27219
27220         * metadata.c (mono_metadata_parse_generic_param): New static
27221         method; creates a MonoGenericParam which just contains the index.
27222         (do_mono_metadata_parse_type): Call
27223         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
27224         MONO_TYPE_MVAR.
27225
27226         * reflection.c (mono_image_typedef_or_ref): Generic type
27227         parameters may be in the same assembly, but never use a typedef
27228         for them.
27229         (mono_reflection_define_generic_parameter): We're now creating a
27230         "real" class for the type parameter; it's now safe to call
27231         mono_class_from_mono_type() on the class'es type, it'll do the
27232         right thing.
27233
27234 2003-09-16  Martin Baulig  <martin@ximian.com>
27235
27236         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
27237         `symfile->range_entry_size' and `symfile->class_entry_size' here;
27238         the `symfile' data structure must be fully initialized before it
27239         gets added to the table.
27240
27241 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
27242
27243         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
27244
27245         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
27246         class init trampolines.
27247
27248 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
27249
27250         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
27251         to the built-in profiler to turn off time and allocation profiling
27252         respectively.
27253
27254 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
27255
27256         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
27257         g_direct_equal.
27258
27259         * debug-helpers.c (mono_method_full_name): Print the wrapper type
27260         in human readable form.
27261
27262 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
27263
27264         * reflection.c icall.c: Fixed warnings.
27265
27266         * image.c (load_class_names): Use a temporary hash table to hold the
27267         namespaces in order to avoid doing many string comparisons.
27268
27269         * image.h: Fix typo.
27270
27271         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
27272         Pass NULL instead of g_direct_equal to the GHashTable constructor 
27273         since the NULL case is short-circuited inside g_hash_table_lookup, 
27274         leading to better performance.  
27275
27276         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
27277         obtain the first custom attribute for a given index. Depends on the
27278         CustomAttribute table being sorted by the parent field.
27279
27280         * reflection.c (mono_custom_attrs_from_index): Use the new function 
27281         for better performance.
27282
27283 2003-09-07  Martin Baulig  <martin@ximian.com>
27284
27285         * class.c (mono_class_init): If we're a generic instance, inflate
27286         all our methods instead of loading them from the image.
27287         (mono_class_from_generic): Set `class->methods = gklass->methods'.
27288
27289 2003-09-07  Martin Baulig  <martin@ximian.com>
27290
27291         * mono-debug-debugger.c: Added support for constructors.
27292
27293 2003-09-06  Martin Baulig  <martin@ximian.com>
27294
27295         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
27296         New interncall.
27297
27298         * reflection.c (mono_reflection_setup_generic_class): Call
27299         ensure_runtime_vtable() to create the vtable.
27300
27301 2003-09-05  Martin Baulig  <martin@ximian.com>
27302
27303         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
27304         MONO_TYPE_MVAR.
27305
27306 2003-09-04  Martin Baulig  <martin@ximian.com>
27307
27308         * reflection.c (mono_reflection_define_generic_parameter): Generic
27309         parameters start with zero.
27310
27311 2003-09-04  Martin Baulig  <martin@ximian.com>
27312
27313         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
27314
27315         * reflection.h (MonoReflectionGenericParam): New typedef.
27316         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
27317         the generic parameters from the managed TypeBuilder.
27318
27319         * reflection.c (mono_reflection_define_generic_parameter): New function.
27320         (mono_reflection_create_runtime_class): Encode generic parameters.
27321         (mono_reflection_setup_generic_class): New function; this is
27322         called after adding adding all generic params to the TypeBuilder.
27323         (encode_type): Added MONO_TYPE_VAR.
27324
27325 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
27326
27327         * class.h class.c (mono_class_needs_cctor_run): Moved this method
27328         here from the JIT.
27329
27330         * assembly.h assembly.c: Moved the AOT loading code into an assembly
27331         load hook.
27332
27333 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
27334
27335         * reflection.h reflection.c class.h class.c: Delete duplicate 
27336         definition of mono_type_get_name () from reflection.c and export the
27337         one in class.c.
27338
27339         * class.c: Class loading fixes from Bernie Solomon 
27340         (bernard@ugsolutions.com).
27341
27342         * reflection.c: Endianness fixes from Bernie Solomon 
27343         (bernard@ugsolutions.com).
27344         
27345 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
27346
27347         * assembly.h assembly.c: Define a file format version for AOT
27348         libraries.
27349         
27350         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
27351
27352         * appdomain.h (MonoJitInfo): New field to determine whenever the
27353         code is domain neutral.
27354         
27355 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
27356
27357         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
27358
27359 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
27360
27361         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
27362         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
27363         Avoid caching the result since strings must be domain specific. Fixes
27364         #48050.
27365
27366 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
27367
27368         * marshal.c (mono_marshal_init): Make this callable multiple times
27369         since it is hard to find a correct place to call it.
27370
27371         * object.c (mono_runtime_class_init): Execute static constructors in
27372         the correct appdomain.
27373
27374         * image.c (build_guid_table): Handle the case when multiple images have
27375         the same GUID.
27376
27377 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27378
27379         * icall.c: added a couple of icalls for System.Web.
27380
27381 2003-08-28  Martin Baulig  <martin@ximian.com>
27382
27383         * icall.c (ves_icall_Type_BindGenericParameters): Use
27384         `klass->generic_inst' instead of `&klass->byval_arg' in the
27385         mono_type_get_object() call.  The returned type must be
27386         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
27387
27388 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
27389
27390         * NOTES: New file.
27391
27392         * object.c (mono_class_proxy_vtable): Make it thread safe.
27393
27394         * pedump.c: Fix warning.
27395
27396         * object.c appdomain.h: Get rid of metadata_section. 
27397         It is no longer needed and it was causing deadlocks with domain->lock.
27398
27399         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
27400
27401 2003-08-26  Martin Baulig  <martin@ximian.com>
27402
27403         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
27404
27405 2003-08-26  Martin Baulig  <martin@ximian.com>
27406
27407         * pedump.c (main): Call mono_metadata_init(),
27408         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
27409         and mono_loader_init().
27410
27411 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
27412
27413         * loader.h: Add missing include to fix build.
27414
27415         * image.h: mono_image_load_references is no more.
27416
27417         * assembly.c: Reworked assembly loading to make it really thread safe.
27418         After these changes, the assembly returned by mono_assembly_open is
27419         fully initialized, i.e. all its references assemblies are loaded.
27420
27421         * assembly.c (mono_image_load_references): Renamed to 
27422         mono_assembly_load_references, and made private, since clients no
27423         longer need to call it.
27424
27425         * class.c: Removed calls to mono_assembly_load_references, since it was
27426         a source of deadlocks.
27427
27428         * loader.h loader.c class.h class.c: Protect data structures using a 
27429         new lock, the loader lock.
27430
27431         * class.c (mono_class_setup_vtable): Create temporary hash tables and
27432         GPtrArrays only when needed.
27433
27434         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
27435         into empty structures by mcs. Fixes pinvoke7.cs.
27436         
27437         * domain.c (mono_init): Call a new initialization function.
27438
27439         * appdomain.c (mono_runtime_init): Call the new initializer function
27440         of the marshal module.
27441
27442         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
27443         inserted into empty structures by mcs. Fixes pinvoke7.cs.
27444
27445         * marshal.h marshal.c: Added locks around the wrapper caches to make
27446         this module thread safe.
27447
27448         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
27449         this argument. Fixes pinvoke1.exe.
27450
27451 2003-08-25  Lluis Sanchez <lluis@ximian.com>
27452
27453         * object.h: Added call_type field to MonoMethodMessage and the corresponding
27454         enumeration of values. Removed fields to store remote call output values in
27455         MonoAsyncResult. Not needed any more.
27456         * object.c: Initialize call_type and async_result fields in mono_message_init.
27457         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
27458         dispatching the message.
27459         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
27460         async call to finish. To do it use a message with EndInvoke call type.
27461
27462 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
27463
27464         * loader.h loader.c (mono_method_hash_marhal_info): New function which
27465         determines whenever a method has marshalling info.
27466
27467 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27468
27469         * assembly.c: fix the build on windows.
27470
27471 2003-08-22 Lluis Sanchez <lluis@ximian.com>
27472
27473         * object.cs: Fixed bug #47785.
27474
27475 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
27476
27477         * string-icalls.c (StringReplace): If their are no occurances of
27478         the old string found return a reference to the supplied
27479         string. This saves some memory and matches MS behavoir.
27480         
27481 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27482
27483         * socket-io.c: fixed compilation for systems that define AF_INET6
27484         and don't define SOL_IP/SOL_IPV6.
27485
27486 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
27487
27488         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
27489         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
27490
27491         * rawbuffer.c rawbuffer.h: Make this module thread safe.
27492
27493         * domain.c: Make this module thread safe.
27494
27495         * domain.c (mono_init): Call new initialization function.
27496
27497         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
27498         reference types too. Fixes #38812.
27499
27500         * image.c (mono_image_init): Fixed warnings.
27501
27502         * class.c (mono_class_from_typeref): Handle assembly load failure
27503         correctly.
27504
27505         * appdomain.c (add_assemblies_to_domain): Handle the case when
27506         the references of an assembly are not yet loaded.
27507
27508         * metadata.c image.c assembly.c: Moved initialization of global
27509         variables to a separate function called at startup since lazy 
27510         initialization of these variables is not thread safe.
27511         
27512         * image.c assembly.c: Made this module thread safe by adding locks in 
27513         the appropriate places.
27514
27515         * domain.c (mono_init): Call the new initialization functions of the
27516         three modules.
27517
27518 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
27519
27520         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
27521           make a direct call. It is proxy's work to make the call asynchronous.
27522           mono_delegate_end_invoke(): If the targe is a proxy, just collect
27523           the return values.
27524         * object.cs: mono_method_call_message_new(): read AsyncResult and
27525           state object from parameters list, if this info is requested.
27526         * object.h: Added fields to store remote call output values in
27527           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
27528
27529 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
27530
27531         * object.h: add needed fields to MonoThread.
27532         * threads.c, threads.h: allow registering a function to cleanup data
27533         allocated per thread by the JIT.
27534
27535 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
27536
27537         * loader.h: portability fix by Bernie Solomon
27538         * <bernard@ugsolutions.com>.
27539
27540 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
27541
27542         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
27543         return a MonoArray. This simplifies the code and also ensures that
27544         the cache allways contains an object reference as a value.
27545
27546         * icall.c (ves_icall_get_parameter_info): Simplified using the new
27547         function.
27548
27549 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27550
27551         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
27552         fixes a problem with byte ordering when getting the address family for
27553         a socket.
27554
27555 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
27556
27557         * .cvsignore: Added monosn.
27558
27559         * reflection.h reflection.c loader.c: Added support for parameter
27560         marshalling to dynamically created types. Fixes #47295.
27561
27562 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
27563
27564         * rand.c: remove useless warnings.
27565
27566 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
27567
27568         * class.c: implemented ldtoken for methods and fieldrefs.
27569
27570 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27571
27572         * threadpool.c: when mono_async_invoke was called, no one took care of
27573         monitoring the queue. So if the method invoked took some time and we
27574         got new async invoke requests after 500 ms (the thread created waited
27575         that long in WaitForSingleObject), the new async invoke was not called
27576         until the previous one finished.
27577
27578         This is fixed now. Thanks to Totte for helping with it.
27579
27580 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27581
27582         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
27583
27584 2003-08-11  Martin Baulig  <martin@ximian.com>
27585
27586         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
27587
27588 2003-08-06  Martin Baulig  <martin@ximian.com>
27589
27590         * mono-debug-debugger.c: Added support for static fields,
27591         properties and methods.
27592
27593 2003-08-06  Martin Baulig  <martin@ximian.com>
27594
27595         * mono-debug-debugger.c: Don't store the MonoString's vtable to
27596         make this work for applications with multiple application domains.
27597
27598 2003-08-04  Martin Baulig  <martin@ximian.com>
27599
27600         * mono-debug-debugger.c: Completely reworked the type support; the
27601         most important thing is that we're now just using one single
27602         `MonoType' instance per type.
27603
27604 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
27605
27606         * mono-endian.h, mono-endian.c, icall.c: Added icall
27607         ves_icall_System_Double_AssertEndianity to assert double word endianity
27608         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
27609
27610 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
27611
27612         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
27613         support, icalls and fixes.
27614
27615 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
27616
27617         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
27618         classes that are a punctuation character in .NET is not the same a
27619         g_unichar_ispunct.
27620
27621 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
27622
27623         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
27624
27625 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
27626
27627         * icall.c: Add new MemCopy internalcall.
27628         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
27629         Simplified code; It is not necessary to handle all the cases here,
27630         as the C# code takes care of it.  Only handle the case of the name
27631         resource embedded into the assembly.
27632
27633         Changed signature to return the data pointer and the size of the
27634         data. 
27635
27636 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
27637
27638         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
27639         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
27640
27641 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
27642
27643         * socket-io.c: ignore EINTR error in select.
27644
27645 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
27646
27647         * class.h, class.c: removed unused subclasses field in MonoClass.
27648
27649 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
27650
27651         * icall.c: improve fix of get_base_definition(). If the parent class
27652           doesn't have the mehod, look at the parent of the parent.
27653         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
27654           to check if a parameter is an in or out parameter
27655           (PARAM_ATTRIBUTE_IN is not set by default).
27656           mono_method_return_message_restore(): Use mono_class_value_size to
27657           get the size of a value type. mono_type_stack_size (parameterType)
27658           does not return the correct value if parameterType is byRef.
27659           mono_load_remote_field(), mono_load_remote_field_new(),
27660           mono_store_remote_field(), mono_store_remote_field_new():
27661           raise exception if the remote call returns an exception.
27662
27663 2003-07-28  Martin Baulig  <martin@ximian.com>
27664
27665         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
27666         method.  This is a wrapper around mono_runtime_invoke() which
27667         boxes the instance object if neccessary.
27668
27669 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
27670
27671         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
27672         metadata.h, row-indexes.h, verify.c: first cut of generics support.
27673
27674 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
27675
27676         * icall.c: disable mcs bug workaround.
27677
27678 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
27679
27680         * object.c (mono_runtime_class_init): Take the metadata_section
27681         mutex before obtaining the domain mutex.
27682
27683         * appdomain.h: Added definition of metadata_section mutex here. 
27684
27685         * object.c: define metadata_mutex here.
27686
27687 2003-07-24  Ravi Pratap  <ravi@ximian.com>
27688
27689         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
27690         fixed.
27691
27692 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
27693
27694         * reflection.c: Fix bug #46669
27695
27696 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27697
27698         * exception.c:
27699         * exception.h:
27700         * icall.c:
27701         * object.h: fill in the type name for TypeLoadException.
27702
27703 2003-07-23  Ravi Pratap  <ravi@ximian.com>
27704
27705         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
27706         relationship between TypeBuilders while compiling corlib) and bug
27707         45993 (Array types returned from the runtime while compiling
27708         corlib were from the loaded corlib).
27709
27710 2003-07-22  Martin Baulig  <martin@ximian.com>
27711
27712         * mono-debug-debugger.c: Reworked the type support a bit more;
27713         distinguish between types and classes.
27714
27715 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
27716
27717         * icall.c: add IsArrayImpl icall.
27718
27719 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
27720
27721         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
27722         initializing real_size only once. Also fix bug #46602.
27723
27724 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
27725
27726         * object.c: Renamed mono_metadata_section to metadata_section.
27727
27728 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
27729
27730         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
27731           empty array if the type is an array. Fixed.
27732           ves_icall_MonoMethod_get_base_definition: if the base method
27733           is abstract, get the MethodInfo from the list of methods of
27734           the class.
27735         * reflection.c: ParameterInfo.PositionImpl should be zero-based
27736           and it was 1-based. Fixed in mono_param_get_objects.
27737
27738 2003-07-20  Martin Baulig  <martin@ximian.com>
27739
27740         * mono-debug.h: Set version number to 31.
27741         (mono_debug_init): Added `MonoDomain *' argument.
27742
27743         * mono-debug-debugger.c: Reworked the type support; explicitly
27744         tell the debugger about builtin types; pass the `klass' address to
27745         the debugger.
27746
27747 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
27748
27749         * image.c: Allow new metadata tables to be loaded without a
27750         warning. Also update the warning message to give the new constant value.
27751                 
27752 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
27753
27754         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
27755         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
27756         array type representation changes.
27757
27758 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
27759
27760         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
27761         on Environment.Exit () call.
27762
27763 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
27764
27765         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
27766         requires a matching corlib.
27767
27768 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
27769
27770         * Changelog: My editor decided to add a CR to each line. Sorry about that.
27771           Committed again without the CRs.
27772         
27773 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
27774
27775         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
27776           getting it from the "this" socket instance. Did not work
27777           if the socket is a subclass of Socket.
27778           Also fixed bug #35371.
27779
27780 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
27781
27782         * metadata.c: fixed size for TypedByRef.
27783         * loader.c: when searching for a method, consider the vararg amrker.
27784         * unicode.c, decimal.c: constify some arrays.
27785
27786 2003-07-15  Dick Porter  <dick@ximian.com>
27787
27788         * socket-io.c: Fixed compilation for gcc < 3.2.
27789
27790         Fixed compilation for machines that don't have AF_INET6 (thanks to
27791         Bernie Solomon <bernard@ugsolutions.com> for that part.)
27792
27793         Fixed compile warnings.
27794         
27795         Fixed formatting and line endings.
27796
27797 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
27798
27799         * socket-io.h:
27800         * socket-io.c: Added IPv6 support.
27801
27802 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
27803
27804         * class.c (mono_class_is_assignable_from): New function to implement
27805         the is_assignable_from logic. Used by mono_object_isinst, 
27806         Type::IsAssignableFrom () and the interpreter.
27807
27808         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
27809         Object, even interfaces.
27810         
27811         * object.c (mono_object_isinst): Implement in terms of 
27812         is_assignable_from.
27813
27814         * icall.c (ves_icall_type_is_assignable_from): New icall.
27815
27816 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
27817
27818         * domain.c (foreach_domain): fix compiler warning.
27819
27820 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
27821
27822         * image.c (load_metadata_ptrs): use g_strndup because strndup is
27823         not available on all plattforms
27824
27825 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
27826
27827         * image.h image.c: Store the metadata version string in MonoImage.
27828         * icall.c: New icall to retrieve the image version.
27829         * reflection.c (create_dynamic_image): Fill in the image version field
27830         * reflection.c (build_compressed_metadata): Use the image version
27831         from the image structure.
27832
27833 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27834
27835         * appdomain.c: modified comment.
27836         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
27837         That will be its last iteration when mono_gc_cleanup is called from
27838         mono_runtime_cleanup and before the domain is unloaded.
27839
27840         Fixes bug #45962.
27841
27842 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
27843
27844         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
27845         attributes.
27846
27847 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
27848
27849         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
27850         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
27851         Bernie Solomon <bernard@ugsolutions.com>.
27852
27853 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
27854
27855         * object.c, object.h: provide mono_object_new_fast() for faster
27856         allocation in some special cases.
27857
27858 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
27859
27860         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
27861         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
27862
27863 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
27864
27865         * threadpool.c: fix leaks.
27866
27867 2003-07-01  Dick Porter  <dick@ximian.com>
27868
27869         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
27870         using MonoGHashTables.  Fixes threadpool bug posted to list.
27871
27872 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
27873
27874         * image.h, image.c: added support to load an assembly from a byte array.
27875         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
27876         assembly bundle support.
27877
27878 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
27879
27880         * threadpool.c (mono_thread_pool_add): keep a reference to the
27881         AsyncResult to prevent GC
27882
27883 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
27884
27885         * class.c: leak fix.
27886
27887 2003-06-25  Dick Porter  <dick@ximian.com>
27888
27889         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
27890         for the async object, the WaitHandle object will close the handle.
27891         Fixes bug 45321.
27892
27893 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
27894
27895         * class.c: in mono_array_class_get (), lookup from the hash with the
27896         same type we insert: this works around a bug in
27897         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
27898         lluis. The real fix will have to wait for after the release.
27899
27900 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
27901
27902         * icall.c: fix memory leak when getting type members.
27903
27904 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
27905
27906         * reflection.c: added more pubtoken special cases.
27907
27908 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
27909
27910         * class.c: handle field offset correctly when class size
27911         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
27912
27913 2003-06-20  Martin Baulig  <martin@ximian.com>
27914
27915         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
27916         *image' field.
27917
27918 2003-06-20  Martin Baulig  <martin@ximian.com>
27919
27920         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
27921
27922 2003-06-20  Martin Baulig  <martin@ximian.com>
27923
27924         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
27925         just distinguish between variables in registers and variables at
27926         an offset relative to a register.
27927
27928 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27929
27930         * icall.c: #ifdef out latest changes until mcs is fixed.
27931
27932 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
27933
27934         * icall.c: return members in metadata order.
27935
27936 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
27937
27938         * icall.c: avoid infinite loop in GetTimeZoneData.
27939
27940 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
27941
27942         * icall.c: added Marshal.Prelink/All icalls.
27943
27944 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
27945
27946         * object.c, object.h: fix warnings and do some overflow checking
27947         when creating arrays.
27948
27949 2003-06-17  Dick Porter  <dick@ximian.com>
27950
27951         * file-io.h:
27952         * file-io.c: File attributes need to be tweaked slightly when
27953         passed from the managed to the w32 world.
27954
27955 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
27956         * profiler.h profiler-private.h profiler.c: Rework last patch
27957         based on suggestion by Paolo.
27958         
27959 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
27960
27961         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
27962         instruction level coverage data collection.
27963         * profiler.h profiler.c (: Added new callback function which can be
27964         used by the profiler to limit which functions should have coverage
27965         instrumentation.
27966         * profiler.c (mono_profiler_load): Call g_module_build_path to
27967         generate the file name of the profiler library.
27968
27969 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
27970
27971         * profiler.c, profiler.h, profiler-private.h: added basic block 
27972         coverage profiling API.
27973
27974 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
27975
27976         * reflection.c (mono_reflection_create_runtime_class): Add support
27977         for events in dynamically generated code.
27978
27979         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
27980         not allocated.
27981
27982 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
27983
27984         * icall.c: when getting timezone info, return reasonable values if we
27985         can't get the actual data.
27986
27987 2003-06-14  Dick Porter  <dick@ximian.com>
27988
27989         * threads.c (start_wrapper): Remove the reference to the thread
27990         object in the TLS data, so the thread object can be finalized.
27991         This won't be reached if the thread threw an uncaught exception,
27992         so those thread handles will stay referenced :-( (This is due to
27993         missing support for scanning thread-specific data in the Boehm GC
27994         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
27995
27996 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
27997
27998         * reflection.c: ensure streams and tables are first allocated with
27999         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
28000
28001 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
28002
28003         * icall.c: fixed GetElementType for byrefs (bug# 44792).
28004
28005 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
28006
28007         * reflection.c (mono_reflection_create_runtime_class): Add support for
28008         properties to dynamically created classes.
28009         * reflection.c: Fix a few places where non-MonoObjects were inserted
28010         into the tokens hashtable.
28011
28012 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
28013
28014         * object.c: some support to handle out of memory exceptions.
28015
28016 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
28017
28018         * marshal.c (mono_marshal_get_native_wrapper): support reference
28019         return types
28020
28021 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
28022
28023         * object.h, object.c: more portability stuff from Bernie Solomon.
28024         Unexport mono_object_allocate(). Added mono_object_unbox ().
28025         Set exitcode when an unhandled exception is thrown.
28026
28027 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
28028
28029         * marshal.c (mono_marshal_get_native_wrapper): use custom
28030         marshaler for return types.
28031
28032 2003-06-10  Dick Porter  <dick@ximian.com>
28033
28034         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
28035         ip_mreq is available
28036
28037 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
28038
28039         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
28040         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
28041         by Bernie Solomon <bernard@ugsolutions.com>.
28042
28043 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
28044
28045         * gc.c (mono_gc_init): Avoid error message on shutdown when
28046         GC_DONT_GC=1 is used.
28047
28048         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
28049         New icall to return the GUID of a module.
28050
28051 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
28052
28053         * class.c: ensure instance size always includes the parent's size
28054         even whem class size is set explicitly (fixes bug#44294).
28055
28056 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
28057
28058         * profiler.h, profiler.c: made the simple profiler thread-safe,
28059         get more accurate timing info. Allow the loading of an
28060         externally-developed profiler module.
28061
28062 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
28063
28064         * marshal.c (mono_marshal_get_native_wrapper): improved
28065         class/byref arguments.
28066         (mono_marshal_get_native_wrapper): better string marshaling support.
28067
28068 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
28069
28070         * class.c: ensure .pack and .size are handled correctly and
28071         simplified layout of static fields.
28072
28073 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
28074
28075         * appdomain.c
28076         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
28077
28078         * loader.c (mono_lookup_pinvoke_call): look for modules in the
28079         current directory (fix bug 44008)
28080
28081 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
28082
28083         * marshal.c (mono_marshal_get_native_wrapper): started support for
28084         custom marshalers.
28085         (mono_delegate_to_ftnptr): consider marshalling specifications
28086
28087 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
28088
28089         * reflection.c, reflection.h: emit custom marshal info.
28090
28091 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28092
28093         * object.c: free the GError.
28094         * icall.c: added CloseEvent_internal.
28095         * threads.[ch]:
28096         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
28097         call.
28098
28099 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
28100
28101         * loader.c (mono_method_get_signature): Add support for dynamic
28102         assemblies.
28103
28104 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
28105
28106         * reflection.c: fixed bug #43905.
28107
28108 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
28109
28110         * class.c, domain.c, icall.c, metadata.h, object.h: support for
28111         handling TypedReference and ArgIterator.
28112         * loader.c, loader.h: added function to get signature at call site.
28113
28114 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
28115
28116         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
28117         data readonly. Buglets and warning fixes. Some MethodSpec support.
28118
28119 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
28120
28121         * class.h, class.c, object.c: remove relative numbering support.
28122
28123 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
28124
28125         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
28126         free the string, until we get a chance to fix Gtk#
28127
28128 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28129
28130         * marshal.c: revert last patch.
28131
28132 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
28133
28134         * icall.c: updates for new mono_class_vtable() not calling
28135         the type constructor anymore.
28136
28137 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
28138
28139         * object.h, object.c: separate vtable creation from type
28140         initialization. Make running the .cctor thread safe.
28141
28142 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
28143
28144         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
28145
28146 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
28147
28148         * loader.c (mono_get_method): consider calling convention
28149
28150 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
28151
28152         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
28153         to return the invisible global type for a module.
28154
28155         * reflection.c (mono_image_build_metadata): Emit global fields too.
28156
28157 2003-05-20  Peter Williams  <peterw@ximian.com>
28158
28159         * loader.c (mono_lookup_internal_call): Add a few newlines.
28160
28161 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
28162
28163         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
28164         literal strings.
28165
28166         * appdomain.c (set_domain_search_path): Recalculate search path when
28167         AppDomainSetup.PrivateBinPath changes.
28168
28169         * object.c (mono_class_compute_gc_descriptor): It turns out some
28170         parts of the class libs (like System.Thread) holds pointers to
28171         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
28172         to treat native int a pointer type here.
28173         
28174 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
28175
28176         * appdomain.h, domain.c: add hashtable for jump target resolution.
28177
28178 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
28179
28180         * reflection.h reflection.c icall.c: Added new icalls 
28181         GetManifestResourceInfoInternal, GetModulesInternal and support
28182         infrastructure.
28183
28184 2003-05-16  Dick Porter  <dick@ximian.com>
28185
28186         * icall.c:
28187         * file-io.h:
28188         * file-io.c: Implement System.IO.MonoIO::GetTempPath
28189
28190 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
28191
28192         * object.c: mono_store_remote_field: little fix to previous patch.
28193
28194 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
28195
28196         * class.c: add constructors to array classes.
28197         * icall.c: special case array construction for InternalInvoke (),
28198
28199 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
28200
28201         * class.h class.c reflection.c object.c: Added support for field
28202         defaults in dynamically generated classes.
28203
28204 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
28205
28206         * reflection.c: properly encode charset for ddlimport.
28207
28208 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
28209
28210         * threads.c: allow compiling without GC.
28211
28212 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
28213
28214         * appdomain.h, object.c, object.h, threads.c, threads.h: added
28215         handling of thread static data.
28216
28217 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
28218
28219         * reflection.h, reflection.c: added mono_custom_attrs_free ().
28220
28221 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
28222
28223         * class.c (mono_array_class_get): always set the serializable flags
28224         (mono_array_class_get): always set the SEALED attribute for array types
28225
28226 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
28227
28228         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
28229         attributes (fix for bug 42021).
28230
28231 2003-05-12  Dick Porter  <dick@ximian.com>
28232
28233         * gc.c: Don't run finalizers when the finalizer thread is
28234         finishing up, because the default domain has already been
28235         destroyed.
28236
28237 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
28238
28239         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
28240         value is null, we should throw an exception.   This is slightly
28241         different than the other conventions used for the constructor.
28242
28243 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28244
28245         * socket-io.c: fixed windows build.
28246
28247 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28248
28249         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
28250
28251 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
28252
28253         * object.c (mono_string_new_wrapper): Compatibility fix for MS
28254         compilers.
28255
28256 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
28257
28258         * class.c (mono_class_layout_fields): Add experimental GC aware
28259         auto layout facility. Requires class library changes to work correctly.
28260
28261         (mono_class_setup_vtable): Avoid overriding explicit interface
28262         method implementations. Fixes iface3.exe test.
28263
28264         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
28265         object reference.
28266         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
28267         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
28268
28269         * metadata.h: Add new type classification macro which determines
28270         whenever the type holds an object reference.
28271
28272 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
28273
28274         * marshal.c (mono_marshal_get_native_wrapper): cleanups
28275
28276 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
28277
28278         * gc.c (finalizer_thread): Work around a GC bug.
28279
28280 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
28281
28282         * marshal.c (emit_struct_conv): allow unions
28283
28284         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
28285
28286 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
28287
28288         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
28289
28290 2003-05-06  Martin Baulig  <martin@ximian.com>
28291
28292         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
28293
28294 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28295
28296         * socket-io.c:
28297         (Select_internal): allow NULLs, don't create arrays if not needed.
28298         Coupled with Socket.cs changes.
28299
28300         * threadpool.c:
28301         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
28302         register a finalizer for it that will close the semaphore handle. This
28303         fixes the leak and make Lupus' test run with > 4080 loops.
28304
28305 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
28306
28307         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
28308         Jerome Laban (bug #42287)
28309
28310 2003-05-02  Martin Baulig  <martin@ximian.com>
28311
28312         * debug-mono-symfile.h
28313         (MonoSymbolFile): Moved declaration into mono-debug.h.
28314         (MonoDebugMethodJitInfo): Likewise.
28315         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
28316         argument.
28317         (_mono_debug_address_from_il_offset): Take a
28318         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
28319
28320         * mono-debug.h
28321         (MonoDebugDomainData): New struct.
28322         (mono_debug_get_domain_data): New function.
28323         (mono_debug_add_method): Take an additional `MonoDomain *'
28324         argument.
28325         (mono_debug_source_location_from_address): Likewise.
28326         (mono_debug_il_offset_from_address): Likewise.
28327         (mono_debug_address_from_il_offset): Likewise.
28328
28329 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
28330
28331         * reflection.c: one more check for null type in custom attrs.
28332
28333 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28334
28335         * reflection.c: avoid warning (comparison is always false due to limited
28336         range of data type).
28337
28338 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28339
28340         * icall.c: throw an exception in Type.GetField if the argument 'name'
28341         is NULL.
28342
28343 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
28344
28345         * reflection.c: fixed handling of enums in named arguments to custom
28346         attributes (bug #42123).
28347
28348 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
28349
28350         * reflection.c: use the right array element type and handle
28351         a null for a Type argument, too.
28352
28353 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
28354
28355         * reflection.c: handle arrays as arguments to custom attributes.
28356
28357 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
28358
28359         * reflection.c: handle a string value in a custom attr
28360         ctor that takes an object.
28361
28362 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
28363
28364         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
28365         (fix bug #42063)
28366
28367 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
28368
28369         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
28370
28371 2003-04-27  Martin Baulig  <martin@ximian.com>
28372
28373         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
28374         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
28375         MONO_DEBUGGER_EVENT_BREAKPOINT.
28376         (mono_breakpoint_trampoline_code): Removed.
28377         (mono_debugger_event_handler): The last argument is now a
28378         `guint32'.
28379         (mono_debugger_insert_breakpoint_full): Removed the
28380         `use_trampoline' argument.
28381         (mono_debugger_method_has_breakpoint): Likewise.
28382         (mono_debugger_trampoline_breakpoint_callback): Renamed to
28383         mono_debugger_breakpoint_callback(); take the method and
28384         breakpoint number as arguments.
28385
28386 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
28387
28388         * metadata.c: fix off by one when loading parameters attributes.
28389
28390 2003-04-24  Martin Baulig  <martin@ximian.com>
28391
28392         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
28393
28394 2003-04-24  Martin Baulig  <martin@ximian.com>
28395
28396         * mono-debug-debugger.c: Moved all code which interacts with the
28397         Mono Debugger here.
28398
28399         * debug-mono-symfile.c: This code now just deals with the symbol
28400         file itself, the debugger code is now in mono-debug-debugger.c.
28401
28402 2003-04-23  Martin Baulig  <martin@ximian.com>
28403
28404         * mono-debug.c (mono_debug_source_location_from_il_offset):
28405         New method; like mono_debug_source_location_from_address(), but
28406         takes an IL offset instead of a machine address.
28407
28408 2003-04-23  Martin Baulig  <martin@ximian.com>
28409
28410         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
28411         `line' field; this is now computed by the debugger.
28412
28413 2003-04-23  Martin Baulig  <martin@ximian.com>
28414
28415         * mono-debug.[ch]: New files.  This is the new debugging interface.
28416
28417         * mono-debug-debugger.[ch]: New files.  Moved all code which
28418         interacts with the Mono Debugger here.
28419
28420 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
28421
28422         * domain.c (mono_init): initialize mono_defaults.monitor_class
28423
28424 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
28425
28426         * reflection.c (method_encode_code): Add a spicy exception to help
28427         future compiler authors.
28428
28429 2003-04-21  Martin Baulig  <martin@ximian.com>
28430
28431         * icall.c
28432         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
28433         Make this work with relative pathnames; g_filename_to_uri() needs
28434         an absolute filename.
28435
28436 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
28437
28438         * icall.c: Track name changes in Object and ValueType.
28439
28440 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
28441
28442         * metadata.c (mono_type_stack_size): size should be a multiple of
28443         sizeof (gpointer)
28444
28445 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28446
28447         * gc.c:
28448         (internal_domain_finalize): moved into mono_domain_finalize. No need
28449         to create another thread because the finalizers will be run in the
28450         finalizer thread.
28451         
28452         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
28453         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
28454         to be run (MS does this too).
28455
28456 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
28457
28458         * object.c (mono_class_compute_gc_descriptor): Update comment.
28459
28460         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
28461
28462         * image.h: Add synchronized wrapper cache.
28463
28464         * image.c (do_mono_image_open): Initialize cache.
28465
28466         * reflection.c (create_dynamic_mono_image): Initialize cache.
28467
28468 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28469
28470         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
28471         ves_icall_System_Buffer_ByteLengthInternal.
28472
28473 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
28474
28475         * reflection.c: setup klass->nested_in earlier. Allow
28476         a dash in the assembly name.
28477
28478 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
28479
28480         * metadata.c (mono_type_to_unmanaged): dont access
28481         type->data.klass for MONO_TYPE_OBJECT
28482         (mono_type_to_unmanaged): consider System.Delegate class
28483
28484 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
28485
28486         * class.c: just setup supertypes in the proper place instead of
28487         initializing the full element class for arrays.
28488
28489 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
28490
28491         * class.c: ensure the element class of arrays is initialized.
28492         Setup the supertype info for array classes, too.
28493
28494 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
28495
28496         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
28497
28498 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28499
28500         * Makefile.am: re-added -m option when running cygpath. This way,
28501         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
28502         separator.
28503         * mono-config.c: same codepath for locating mono config file for WIN32
28504         and the rest.
28505         * assembly.c: if mono_assembly_setrootdir is called, don't override
28506         the value set.
28507
28508 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28509
28510         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
28511         MONO_ASSEMBLIES variable.
28512
28513 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
28514
28515         * icall.c: added Assembly::GetNamespaces() icall.
28516
28517 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28518
28519         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
28520
28521 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
28522
28523         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
28524         * object.c: fixed bug in the construction of vtable for proxies
28525
28526 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
28527
28528         * object.c (mono_array_new): Mark mono_array_new as an icall.
28529
28530 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28531
28532         * class.c: fixed test for public method when overriding interfaces.
28533         Closes bug #40970.
28534
28535 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
28536
28537         * appdomain.h, domain.c: added mono_domain_foreach() to
28538         be able to access the currently loaded appdomains.
28539         * object.c: make string interning work across sppdomains.
28540         Mark some functions for use as icalls.
28541
28542 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
28543
28544         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
28545
28546         * reflection.h reflection.c: Allocate long living data using 
28547         GC_MALLOC_ATOMIC so the collector does not need to scan it.
28548
28549         * reflection.c: Double the allocation size in streams instead of
28550         increasing it, to prevent unneccesary copying on large assemblies.
28551         
28552         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
28553         creation if the assembly does not have the Run flag set.
28554
28555 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
28556
28557         * class.h: avoid the C++ keywords in header files (Jerome Laban
28558         spotted and fixed this).
28559
28560 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28561
28562         * object.c:
28563         (mono_unhandled_exception): fill in the arguments for the
28564         UnhandledException event. Only trigger that event for the default
28565         domain (as MS does).
28566
28567 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
28568
28569         * object.c: Improve typed allocation stuff based on suggestions from
28570         Paolo. Also turn it on if the GC library supports it.
28571
28572 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
28573
28574         * object.c object.h class.h: Added experimental typed allocation
28575         facility using the interfaces in gc_gcj.h.
28576
28577         * os/gc_wrapper.h: Added new include files.
28578         
28579 2003-04-03  Martin Baulig  <martin@ximian.com>
28580
28581         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
28582         which is not yet enabled by default.
28583
28584         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
28585         functions.
28586         (mono_gc_lock, mono_gc_unlock): New static functions.
28587
28588         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
28589         functions; stop/start the world for the garbage collector.  This
28590         is using the windows API; we need to complete the SuspendThread()/
28591         ResumeThread() implementation in the io-layer to make this work on Unix.
28592         (mono_gc_push_all_stacks): New public function; tells the garbage
28593         collector about the stack pointers from all managed threads.
28594
28595 2003-04-03  Martin Baulig  <martin@ximian.com>
28596
28597         * object.h (MonoThread): Added `gpointer stack_ptr'.
28598
28599         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
28600
28601 2003-04-03  Martin Baulig  <martin@ximian.com>
28602
28603         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
28604
28605 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
28606
28607         * reflection.c (typebuilder_setup_fields): Initialize field.first and
28608         field.last.
28609
28610 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
28611
28612         * loader.c (mono_lookup_internal_call): Report the corlib that is
28613         out of sync.
28614
28615 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
28616
28617         * icall.c (ves_icall_type_GetTypeCode): fixed check for
28618         System.DBNull (it's class not valuetype).
28619
28620 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
28621
28622         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
28623         if the array method was already assigned a token (fixes bug#40646).
28624
28625 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
28626
28627         * reflection.c (mono_reflection_get_type): Attempt type resolve even
28628         if no assembly is given.
28629
28630 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
28631
28632         * metadata.h: Added the new tables.
28633
28634         * row-indexes.h: Added definitions for new tables.
28635
28636         * metadata.c: Add schemas for new tables, and add support for
28637         computing the sizes of them.
28638
28639         * class.c: Update for handling the new type cases.
28640
28641 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
28642
28643         * metadata.h (MONO_TYPE_IS_VOID): new macro
28644
28645 2003-03-31  Martin Baulig  <martin@ximian.com>
28646
28647         * threads.h (MonoThreadCallbacks): Added `thread_created'.
28648
28649         * threads.c (mono_thread_new_init): Call `thread_created' in the
28650         mono_thread_callbacks.
28651
28652 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
28653
28654         * loader.h: added marshalbyrefobject_class to mono_defaults
28655         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
28656         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
28657           generation of output parameters.
28658           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
28659         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
28660           contextbound and the target object belongs to the context of the caller.
28661         * object.h: added context and unwrapped_server variables in MonoRealProxy.
28662         * object.c: Implemented support for interfaces and abstract classes
28663           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
28664           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
28665
28666 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
28667
28668         * class.h class.c (mono_class_is_subclass_of): New function.
28669         
28670         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
28671         routines for most common case (calls from ArrayList::ToArray).
28672
28673         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
28674         routine so programs which call Environment::Exit() can be profiled.
28675
28676         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
28677         Added MONO_ARCH_SAVE_REGS.
28678
28679         * icall.c (ves_icall_type_is_subtype_of): Use new function.
28680
28681 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
28682
28683         * blob.h: Add a couple of new MonoType types definitions.
28684
28685         * tabledefs.h: Add a couple of new call convs.
28686
28687 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
28688
28689         * reflection.h (MonoReflectionDynamicAssembly): track changes in
28690         the layout of the class.
28691
28692         * reflection.c (alloc_table): double the size on overflow to avoid
28693         unnecessary copying.
28694
28695         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
28696         avoid filling out metadata tables and blobs. Also set mb->ilgen to
28697         null so it can be garbage collected.
28698         
28699 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
28700
28701         * reflection.c (mono_reflection_get_type): Return the resolved type
28702         only if it is in the assembly we searched.
28703
28704         * reflection.c (ensure_runtime_vtable): Initialize method slots.
28705
28706         * class.c (mono_class_setup_vtable): Set the slot of the overriding
28707         method.
28708
28709 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28710
28711         * appdomain.c:
28712         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
28713         the right one is 'file:///blah', but MS allows it.
28714         * assembly.c:
28715         (mono_assembly_open): allow 'file://blah'
28716
28717         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
28718
28719 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
28720
28721         * socket-io.c: fixes bug #40310.
28722
28723 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
28724
28725         * reflection.c (mono_reflection_parse_type): handle deeply nested
28726         types correctly.
28727
28728         * reflection.c (mono_image_create_token): Use unique token values
28729         since they will be put into a hash table.
28730
28731         * class.c (mono_class_setup_vtable): If a method occurs in more than
28732         one place in the vtable, and it gets overriden, then change the
28733         other occurances too.
28734
28735         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
28736         object as return type.
28737
28738 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
28739
28740         * icall.c: Deleted "ToString" implementation for double and float
28741         because they are full implemented in managed code.
28742
28743 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
28744
28745         * reflection.c, reflection.h: implemented and exported functions
28746         to retrieve info about custom attributes.
28747
28748 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28749
28750         * appdomain.c: moved Uri handling to assembly.c
28751         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
28752         work when using a file Uri in *nix and windows.
28753
28754         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
28755         GetReferencedAssemblies.
28756
28757 2003-03-18  Dick Porter  <dick@ximian.com>
28758
28759         * icall.c: Rename a couple of internal calls
28760
28761         * threads.c: Set the thread state to Stopped when a thread exits.
28762         Fixes bug 39377.
28763
28764 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
28765
28766         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
28767         New icall.
28768
28769         * object.c (mono_class_vtable): fix warning.
28770
28771 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
28772
28773         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
28774
28775         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
28776         memory.
28777         (method_encode_clauses): Create exception info structures in the right
28778         order.
28779         (mono_reflection_setup_internal_class): Initialize supertypes field.
28780
28781         * class.c object.c: Handle interfaces which implement other interfaces 
28782         correctly.
28783
28784         * class.h class.c: Move the supertypes array initialization code into 
28785         a separate function so it can be used for dynamic types too. Also call
28786         it earlier, in mono_class_init(), since it can be used before the
28787         type is initialized.
28788
28789 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28790
28791         * Makefile.am:
28792         * assembly.c:
28793         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
28794
28795         * appdomain.c:
28796         * appdomain.h:
28797         * marshal.c:
28798         * object.c: remove warnings.
28799
28800 2003-03-13  Martin Baulig  <martin@ximian.com>
28801
28802         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
28803         (MonoDebugLexicalBlockEntry): New types.
28804
28805         * debug-mono-symfile.c
28806         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
28807
28808 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28809
28810         * process.c: ret can be any non-zero value accroding to MS doc.
28811
28812 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
28813
28814         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
28815         fixing a warning for a miss-used prototype, would have cause
28816         random memory corruption.
28817
28818 2003-03-07  Martin Baulig  <martin@ximian.com>
28819
28820         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
28821         getting really annoying ....
28822
28823 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
28824
28825         * reflection.c (fixup_method): added support for array methods.
28826
28827 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
28828
28829         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
28830         (pointed out by Michael Adams).
28831
28832 2003-03-04  Dick Porter  <dick@ximian.com>
28833
28834         * icall.c: Temporarily reverted the Double and Single ToString()
28835         change, because it broke nunit.
28836
28837 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
28838
28839         * object.h, threads.h: make include files compatible with C++
28840         (patch by Jerome Laban <jlaban@wanadoo.fr>).
28841
28842 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
28843
28844         * icall.c: Erased ToString helper functions for Double and Single.
28845         Now, that implementations ar all in managed code (Double and Single
28846         Formatters).
28847
28848 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
28849
28850         * appdomain.c: Added method for initializing the default context of
28851         a domain. Added internal call for getting the default context.
28852         * appdomain.h: Added context variable in MonoDomain struct.
28853         * domain.c: mono_domain_set also sets the default context of the domain
28854         * icall.c: Mapped internal method InternalGetDefaultContext.
28855         * object.c: mono_object_get_virtual_method returns always a remoting
28856         wrapper if the object is a transparent proxy.
28857         mono_runtime_invoke_array: when creating an object by calling the
28858         constructor, if the created object is a proxy, then the constructor should
28859         be called using the a remoting wrapper.
28860
28861 2003-03-03  Dick Porter  <dick@ximian.com>
28862
28863         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
28864         variable so it compiles on solaris.  Problem spotted by
28865         Christopher Taylor <ct@cs.clemson.edu>
28866
28867 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28868
28869         * appdomain.c:
28870         (get_info_from_assembly_name): don't leak value.
28871
28872         * icall.c:
28873         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
28874         result.
28875
28876 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
28877
28878         * assembly.c: export mono_image_load_references ().
28879         * class.c: handle function pointers. mono_class_from_name() now
28880         supports nested type names directly.
28881
28882 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
28883
28884         * reflection.h reflection.c: Encode already created dynamic methods 
28885         and fields correctly as a DEF instead of a REF.
28886
28887         * reflection.c: Get rid of the force_ref argument to 
28888         mono_image_typedef_or_ref since it was wrong in the first place.
28889
28890         * string-icalls.c: add error checking to string constructors according
28891         to the MSDN docs.
28892
28893         * reflection.c: Emit types in the order their TypeBuilders were 
28894         created. Previously, a new table index was assigned to each type before
28895         the tables were emitted. This was wrong because the signature blob
28896         might already refer to a type by its original table index.
28897
28898 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
28899
28900         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
28901         change.
28902         
28903 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28904
28905         * Makefile.am: make assemblies dir have \ instead of / on windows.
28906
28907 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
28908
28909         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
28910         iterate over the NESTEDCLASS table using a linear search since the
28911         table is not guaranteed to be sorted by the secondary key.
28912
28913         * class.c (mono_class_create_from_typedef): fixed up call to
28914         mono_metadata_nesting_typedef.
28915         
28916 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
28917
28918         * marshal.c (mono_string_to_byvalstr): clear the memory as
28919         suggested by Jerome Laban <jlaban@wanadoo.fr>
28920
28921 2003-02-26  Dick Porter  <dick@ximian.com>
28922
28923         * process.c: Cope with padding in .rsrc blocks
28924
28925 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
28926
28927         * metadata.h: reverted the filter_len change, it breaks reflection
28928         
28929 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
28930
28931         * metadata.h: added a new field to store the filter_len
28932         
28933
28934 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
28935
28936         * reflection.c: handle custom attributes for types and members
28937         created with Reflection.Emit (bug#38422).
28938
28939 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
28940
28941         * reflection.c: define RTSpecialName automatically for constructors for
28942         compatibility with MS.NET.
28943
28944         * reflection.c (mono_reflection_create_runtime_class): initialize
28945         nested_in field of dynamically created classes.
28946
28947 2003-02-22  Martin Baulig  <martin@ximian.com>
28948
28949         * debug-mono-symfile.h: Incremented version number.
28950
28951 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
28952
28953         * object.h icall.c process.c: fix warnings.
28954
28955 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
28956
28957         * appdomain.h appdomain.c:
28958         (mono_domain_try_type_resolve): split the 
28959         name_or_tb argument into a name and a tb argument.
28960         (mono_domain_has_type_resolve): new function to check whenever the
28961         application has registered a TypeResolve event handler.
28962         
28963         * icall.c reflection.h reflection.c: move the type resolve logic into
28964         mono_reflection_get_type () so it will be invoked when 
28965         Assembly::GetType () is called.
28966
28967         * reflection.c:
28968         (mono_reflection_get_type): renamed to get_type_internal.
28969         (mono_reflection_get_type): fixed type name generation so it works 
28970         for nested types too.
28971         (mono_reflection_get_type): call has_type_resolve () to avoid the 
28972         costly type name generation if there is no resolve event handler.
28973
28974 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
28975
28976         * class.c, image.c: load exported types from file references.
28977
28978 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
28979
28980         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
28981           used to cache the managed methods used to create proxies and make 
28982           remote invocation of methods.
28983         * class.h: Added in MonoVTable a flag to indicate that a class needs 
28984           to be remotely created.
28985         * object.c: Modified the method mono_class_vtable(). It now initializes 
28986           the remote flag of the vtable. Modified mono_object_new_specific(), 
28987           so now it checks the remote flag.
28988         * icall.c: Added a couple of internal methods, one for enabling instance 
28989           creation interception for a type, and one for creating objects bypassing
28990           the remote check.
28991
28992 2003-02-18  Martin Baulig  <martin@ximian.com>
28993
28994         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
28995         New interncall to get a method's metadata token.
28996
28997         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
28998         New interncall for the debugger.
28999
29000 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
29001
29002         * class.c (mono_class_setup_vtable): allocate supertype array
29003
29004 2003-02-18  Martin Baulig  <martin@ximian.com>
29005
29006         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
29007
29008 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29009
29010         * reflection.c:
29011         (assembly_name_to_aname): jump over unknown properties (i've found
29012         something like: 'type, assembly, version=xxx, custom=null, public...',
29013         so now will ignore custom=null and still get the rest of the values).
29014
29015 2003-02-17  Dick Porter  <dick@ximian.com>
29016
29017         * threads.c: Have Thread.Start() wait for a semaphore to signal
29018         that the thread has set up all its local data.  This fixes bug
29019         34323, where Abort() raced the new thread's TLS data.
29020
29021         Also removes the handle_store() call from start_wrapper, because
29022         threads are now always created suspended and there is no longer a
29023         race between the parent and child threads to store the info.
29024
29025 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
29026
29027         * image.c: explain the #- heap issue in a message, hopefully
29028         avoiding FAQs on mono-list.
29029
29030 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29031
29032         * icall.c:
29033         (GetEntryAssembly): if the domain has not invoked
29034         AppDomain.ExecuteAssembly yet, return the assembly of the default
29035         AppDomain.
29036
29037 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
29038
29039         * class.c (mono_ldtoken): make it work in dynamic assemblies.
29040
29041 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
29042
29043         * metadata.c, reflection.c: simple speedup to type hash
29044         and equals code.
29045
29046 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
29047
29048         * image.c, image.h, class.c, assembly.c: move module loading
29049         to MonoImage. When loading metadata, consider alignemnet from
29050         the start of metadata, not from the metadata address in memory.
29051
29052 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
29053
29054         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
29055         AssemblyBuilder objects. Factored out custom attribute creation into
29056         a separate function.
29057         (create_custom_attr): new function to create custom attributes.
29058
29059 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
29060
29061         * Makefile.am: Got tired of typing the full pathname to pedump.
29062         Until there is another option, am installing this.
29063
29064 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
29065
29066         * class.c (class_compute_field_layout): always set field->parent 
29067         (mono_ldtoken): use mono_defaults.fieldhandle_class;
29068
29069 2003-02-11  Dick Porter  <dick@ximian.com>
29070
29071         * threads-types.h:
29072         * monitor.c: Rewrote Monitor, making lock much faster and
29073         Pulse/Wait work as specified.  Also uses much fewer handles, and only
29074         creates them as needed.
29075
29076         * exception.c: Added SynchronizationLockException
29077
29078         * threads.c: Deleted old Monitor implementation.  The new one is
29079         in a new file.
29080
29081 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
29082
29083         * class.c: handled TypedReference type code. Set the correct size for
29084         class data. Setup interface_offsets for interface classes, too.
29085
29086 2003-02-09  Martin Baulig  <martin@ximian.com>
29087
29088         * debug-mono-symfile.h: Reflect latest symbol writer changes.
29089
29090 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
29091
29092         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
29093         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
29094         * object.c: fixed mono_object_get_virtual_method () for interfaces.
29095         * verify.c: check for code that runs after the end of the method.
29096
29097 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
29098
29099         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
29100         "System.Math::Round2".
29101         * sysmath.h: Added Floor, Round and Round2 definitions.
29102         * sysmath.c: Modified certain functions that were not 100% compliant
29103         with MS.NET (math precision) and added the implementation of Floor,
29104         Round and Round2.
29105
29106 2003-02-07  Martin Baulig  <martin@ximian.com>
29107
29108         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
29109
29110 2003-02-07  Martin Baulig  <martin@ximian.com>
29111
29112         * debug-mono-symfile.c: Reflected latest symwriter changes.
29113         (mono_debug_create_mono_symbol_file): Removed.
29114         (mono_debug_open_mono_symbol_file): Take an argument which
29115         specifies whether to create a dynamic symbol file.
29116
29117 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
29118
29119         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
29120
29121 2003-02-05  Martin Baulig  <martin@ximian.com>
29122
29123         * reflection.c (mono_image_build_metadata): Make this public,
29124         protect it against being called multiple times, don't create
29125         resources and don't build the compressed metadata here.
29126         (mono_image_create_pefile): Do this here.
29127
29128         * icall.c
29129         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
29130
29131 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29132
29133         * socket-io.c: fixed bug #36322.
29134
29135 2003-02-06  Piers Haken <piersh@friskit.com>
29136
29137         * appdomain.[ch]:
29138         * class.h:
29139         * debug-mono-symfile.c:
29140         * icall.c:
29141         * loader.c:
29142         * mono-config.c:
29143         * monosn.c:
29144         * reflection.c:
29145         * socket-io.c: warning cleanups
29146
29147 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
29148
29149         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
29150         function. works like remoting invoke, but does a check for the Proxy first.
29151
29152 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
29153
29154         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
29155
29156 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
29157
29158         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
29159         array of pointers.
29160         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
29161         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
29162
29163         * object.c (mono_store_remote_field_new): used by the new jit
29164         instead of mono_store_remote_field
29165         (mono_load_remote_field_new): used by the new jit
29166         instead of mono_load_remote_field
29167
29168 2003-02-05  Patrik Torstensson
29169
29170         * appdomain.c: changed unload to take the domain id instead
29171         of domain
29172         
29173         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
29174
29175
29176 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29177
29178         * appdomain.c: don't look for assemblies in ApplicationBase if
29179         PrivateBinPathProbe is set.
29180
29181 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29182
29183         * object.c: make the first argument in main_args contain the absolute
29184         path to the assembly. Fixes bug #37511.
29185
29186 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29187
29188         * icall.c: get correct UTC offset for countries not using daylight
29189         time saving. Fixes bug #30030.
29190
29191 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29192
29193         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
29194         and 1 are the family).
29195
29196 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
29197
29198         * icall.c (ves_icall_InternalExecute): removed wrong assertion
29199
29200         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
29201
29202 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
29203
29204         * reflection.c: added support for SignatureHelper tokens, which is
29205         needed by the Calli opcode.
29206
29207         * reflection.h: track changes to SignatureHelper class.
29208
29209         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
29210
29211 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29212
29213         * appdomain.c: fixed loading assemblies from PrivateBinPath.
29214
29215 2003-02-03  Patrik Torstensson
29216         * appdomain.[c|h], domain.c : 
29217          - Added support for getting a domain via domain id
29218          - Support for setting and getting domain from System.AppDomain 
29219            (used in cross appdomain channel)
29220          - Added support for get/set for a MonoAppContext on a thread 
29221            (Context class in System.Runtime.Remoting.Contexts),
29222          - Removed hack in Get/SetData and ExecuteAssembly.
29223         
29224         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
29225         the managed world to get control when a proxy is created.
29226
29227         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
29228         
29229 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
29230
29231         * icall.c
29232         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
29233         Populate the codebase field as well.
29234
29235 2003-02-02  Martin Baulig  <martin@ximian.com>
29236
29237         * debug-mono-symfile.c
29238         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
29239         (mono_debug_symfile_add_method): Allow interncalls.
29240
29241 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29242
29243         * icall.c: throw parse exception if strtod fails or the string is empty.
29244
29245 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
29246
29247         * marshal.c: handle object type separately from defined
29248         class types.
29249
29250 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
29251
29252         * marshal.c: handle NATIVE_LPSTR for strings when it's
29253         explicitly specified.
29254
29255 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
29256
29257         * reflection.c, reflection.h, icall.c: setup the reflection
29258         handle cache for ModuleBuilders and AssemblyBuilders.
29259
29260 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
29261
29262         * reflection.c (reflection_methodbuilder_to_mono_method): set
29263         pinvoke flag
29264
29265 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29266
29267         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
29268
29269 2003-01-29  Dick Porter  <dick@ximian.com>
29270
29271         * threads.c: No need for the fake_thread kludge now that Thread
29272         doesn't run a class constructor
29273         
29274 2003-01-29  Dick Porter  <dick@ximian.com>
29275
29276         * threads.c: Use g_direct_hash instead of the rather bogus
29277         g_int_hash
29278
29279 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
29280
29281         * marshal.c (mono_marshal_get_native_wrapper): add check for null
29282         (fix pinvoke12.exe)
29283         (mono_marshal_get_struct_to_ptr): generate valid IL code
29284         (mono_marshal_get_ptr_to_struct): generate valid IL code
29285         (*): correctly set sig->pinvoke, we need to memdup the signature
29286         to do that
29287
29288 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
29289
29290         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
29291         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
29292
29293 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
29294
29295         * profiler.c: provide more callers information.
29296
29297 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
29298
29299         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
29300
29301         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
29302
29303         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
29304
29305 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
29306
29307         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
29308         exception instead of going into an infinite loop on dates which it 
29309         can't yet handle.
29310
29311         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
29312         out-of-range exception if needed.
29313
29314         * class.c (mono_class_setup_vtable): allow a virtual method to provide
29315         an implementation for an interface method and to override an inherited
29316         method at the same time. 
29317         Imagine a scenario when a virtual method is used to override a
29318         virtual abstract method in a parent class, and this same method 
29319         provides an implementation for an method inherited from an interface. 
29320         In this case, the interface resolution code will set im->slot, which 
29321         means that the virtual method override pass will skip this method 
29322         which means a pointer to the abstract method inherited from the parent
29323         will remain in the vtable of this non-abstract class.
29324
29325         * class.c: (mono_class_setup_vtable): continue search for a real 
29326         method if only an abstract method is found.     
29327
29328 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
29329
29330         * reflection.c: add size to encoding for ByValStr and ByValArray
29331         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
29332
29333 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
29334
29335         * class.c (mono_class_setup_vtable): pass the override info as an
29336         argument.
29337
29338         * class.c (mono_class_setup_vtable): set the slot of overriding methods
29339         correctly.
29340         
29341         * reflection.c (ensure_runtime_vtable); add support for method 
29342         overrides.
29343         
29344 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
29345
29346         * reflection.c (resolution_scope_from_image): Hack to work to work with
29347         dynamic assemblies.
29348
29349         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
29350         added a 'force_ref' argument to force this function to allways return 
29351         a TypeRef. This is needed by mono_image_get_memberref_token ().
29352         
29353 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
29354
29355         * reflection.c (mono_image_get_type_info): interfaces really don't have
29356         a parent.
29357
29358         * reflection.c (mono_image_basic_init): fill out missing fields of
29359         image structure.
29360
29361         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
29362         dynamic assemblies. This is required so dynamic assemblies show up in
29363         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
29364         Type::GetType() etc. This is consistent with MS behaviour.
29365
29366         * image.c image.h reflection.c: add newly created classes to the name 
29367         cache so mono_class_get () will find them.      
29368
29369 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
29370
29371         First part of changes to get IKVM.NET running under mono.
29372         
29373         * appdomain.h, appdomain.c: added new function 
29374         mono_domain_try_type_resolve() which will emit TypeResolve events. 
29375         This function will call AppDomain::DoTypeResolve to do the actual work.
29376
29377         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
29378         moved existing code dealing with dynamic tokens to a new function 
29379         called mono_reflection_lookup_dynamic_token (). This function will 
29380         raise TypeResolve events when appropriate. Since reflection.c is not 
29381         part of libmetadata, a new hook function called 
29382         mono_lookup_dynamic_token() is added to class.c which will call this.
29383
29384         * assembly.h assembly.c: make the invoke_load_hook function public,
29385         so it can be called for dynamic assemblies.
29386
29387         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
29388
29389         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
29390         type isn't found.
29391
29392         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
29393         MonoGHashTable, since it contains pointers to objects which the GC 
29394         needs to track.
29395
29396         * assembly.c (search_loaded): remove unused variable.
29397         
29398 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
29399
29400         * object.c: fixed issue exposed by gcc-generated IL programs
29401         that use RVA data for pointers.
29402
29403 2003-01-25  Martin Baulig  <martin@ximian.com>
29404
29405         * threads.c (start_wrapper): Moved the initialization of
29406         `start_func' above the mono_new_thread_init() call to which we
29407         pass it as argument.
29408
29409 2003-01-24  Martin Baulig  <martin@ximian.com>
29410
29411         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
29412         the MonoThread pointer.
29413
29414 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
29415
29416         * icall.c: Rename `PowImpl' to Pow.
29417
29418 2003-01-23  Dick Porter  <dick@ximian.com>
29419
29420         * threads.c (start_wrapper): Create a Thread object if needed, so
29421         the Main() thread can do the class initialisation in a subthread
29422         that has been set up to allow managed code execution.
29423
29424         Pass the thread ID instead of the MonoThread pointer to the thread
29425         start and attach callbacks.  This change is required, because the
29426         jit thread start callback must be called _before_ the Thread
29427         object can be created.
29428         
29429         (mono_thread_init): Removed much object creation code that is no
29430         longer needed.  No managed code is called from here now.
29431
29432         * object.c (mono_runtime_exec_managed_code): Create a subthread
29433         for Main, and call back to the runtime to use it.
29434         Set the exit code when Main exits.
29435
29436         * gc.c: Make sure domain finalisation happens in a subthread.
29437         Re-enable threaded GC, fixing bug 31333 (again).
29438
29439         * environment.c: System.Environment internall calls (so far just
29440         ExitCode is here, the others are still in icall.c)
29441
29442         * appdomain.c (mono_runtime_cleanup): All threads running managed
29443         code should have finished before mono_runtime_cleanup() is
29444         reached, so no need to clean up threads.
29445
29446 2003-01-22  Martin Baulig  <martin@ximian.com>
29447
29448         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
29449         `gpointer func' arguments.      
29450         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
29451         but added `MonoThread *thread' argument.
29452         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
29453
29454         * threads.c (mono_new_thread_init): Added `gpointer func' argument
29455         and pass it to the mono_thread_start_cb callback.
29456         (mono_install_thread_callbacks): New public function to install a
29457         set of callbacks which are set by the debugger.
29458         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
29459
29460 2003-01-22  Martin Baulig  <martin@ximian.com>
29461
29462         * Makefile.am: Install debug-mono-symfile.h.
29463
29464 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
29465
29466         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
29467
29468 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
29469
29470         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
29471         * class.c (mono_ptr_class_get): correctly set access levels of pointers
29472         (mono_array_class_get): correctly set access levels of arrays
29473
29474 2003-01-20      Patrik Torstensson
29475         * image.h (MonoAssemblyName): changed major, minor, build, revision
29476         from signed to unsigned.
29477
29478 2003-01-20  sean kasun <skasun@azstarnet.com>
29479
29480         * reflection.c (load_cattr_value): Now this handles
29481         MONO_TYPE_SZARRAY.  Fixes bug #35629
29482
29483 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
29484
29485         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
29486         integer value
29487
29488 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29489
29490         * decimal.c: fixed bug #26056.
29491
29492 2003-01-17  Martin Baulig  <martin@ximian.com>
29493
29494         * gc.c: Raise an ExecutionEngineException instead of using g_error().
29495
29496 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29497
29498         * exception.[ch]:
29499         (mono_get_exception_type_initialization): new function.
29500
29501         * object.c: throw a TypeInitializationException when an exception is
29502         thrown invoking the class constructor.
29503
29504 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29505
29506         * reflection.c: fixed attribute reading.
29507
29508 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29509
29510         * icall.c:
29511         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
29512         provided, look for the type in the calling assembly and then in
29513         mscorlib; if the assembly name is provided, only try that one.
29514
29515 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
29516
29517         * object.c: register the vtable before there is a chance it's
29518         queried again recursively.
29519
29520 2003-01-13  Duncan Mak  <duncan@ximian.com>
29521
29522         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
29523         gc-internal.h. 
29524         
29525 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
29526
29527         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
29528
29529 2003-01-11  Martin Baulig  <martin@ximian.com>
29530
29531         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
29532         this to 20 for the release.
29533
29534 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
29535
29536         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
29537
29538         * loader.c (mono_method_get_marshal_info): bug fix
29539
29540         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
29541         structures with explicit layout
29542
29543 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
29544
29545         * profiler.c: made the output more readable (and sorted). 
29546         Added caller information for the allocation profiler.
29547
29548 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
29549
29550         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
29551
29552 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29553
29554         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
29555         to get value types.
29556         
29557 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
29558
29559         * object.c, profiler.h, profiler.c, profiler-private.h:
29560         Added object allocation profiler.
29561
29562 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
29563
29564         * reflection.h, reflection.c: handle global methods.
29565         Compress blob entries.
29566
29567 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
29568
29569         * marshal.c: fix compilation.
29570
29571 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
29572
29573         * loader.c (mono_method_get_marshal_info): impl.
29574
29575         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
29576
29577 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29578
29579         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
29580         for reference types.
29581
29582 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
29583
29584         * loader.c: fixed off by one error in loaded parameter names.
29585
29586 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
29587
29588         * marshal.c (mono_marshal_get_icall_wrapper): like
29589         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
29590         instead of a MonoMethod.
29591
29592 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29593
29594         * decimal.c: fixed bug #36537.
29595
29596 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
29597
29598         * marshal.c: throw a missing method exception if a
29599         P/Invoke method is not found.
29600
29601 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
29602
29603         * icall.c: allow a null this for constructors.
29604
29605 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
29606
29607         * icall.c: raise the proper exceptions if the arguments to the
29608         internal Invoke are incorrect.
29609
29610 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
29611
29612         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
29613
29614 2003-01-03  Martin Baulig  <martin@ximian.com>
29615
29616         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
29617
29618 2002-12-31  Martin Baulig  <martin@ximian.com>
29619
29620         * debug-mono-symfile.c: Completely rewrote the type section.
29621         Instead of using individual malloc()ed fields, we use one big
29622         continuous memory area and offsets into this area.
29623         See the comments in the source code for details.
29624
29625 2002-12-30  Martin Baulig  <martin@ximian.com>
29626
29627         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
29628
29629 2002-12-30  Martin Baulig  <martin@ximian.com>
29630
29631         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
29632         line number table in this data blob instead of using an external
29633         pointer.
29634
29635 2002-12-28  Martin Baulig  <martin@ximian.com>
29636
29637         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
29638
29639 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
29640
29641         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
29642         as a boxed return type.
29643
29644 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
29645
29646         * appdomain.c
29647         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
29648         g_build_filename to properly get separators on the filename created.
29649
29650         * object.h: Small change, introduce MonoMarshalByRefObject to
29651         track the layout of that structure in the C# universe as we make
29652         changes there.
29653
29654 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
29655
29656         * object.c: removed assert to allow static fields on interfaces.
29657         * loader.c: a TypeSpec may be used for any type, not just arrays.
29658
29659 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
29660
29661         * class.c, class.h: added mono_class_array_element_size ().
29662         Ignore static methods in interfaces.
29663
29664 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29665
29666         * threads.c: fixed the build under cygwin.
29667
29668 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
29669
29670         * reflection.c: handle nullref constants. Allocate keys for
29671         reflection handles with the GC.
29672
29673 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
29674
29675         * threads.c, threads.h: added mono_thread_get_abort_signal()
29676         to get a suitable signal for thread abort.
29677
29678 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
29679
29680         * metadata.c: fix handling of ExportedType table.
29681
29682 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29683
29684         * icall.c: added WriteWindowsDebugString internal call.
29685
29686 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29687
29688         * reflection.h: added fields to match C# implementation.
29689
29690 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29691
29692         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
29693
29694 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
29695
29696         * gc.h, gc-internal.h: Rename header for GC internal calls to
29697         gc-internal.h from gc.h as to not clash with Boehm GC having its
29698         header installed as <gc.h> in outside include paths.
29699         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
29700         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
29701
29702 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29703
29704         * icall.c: assign minor, build and revision in FillName.
29705
29706 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
29707
29708         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
29709         Added support for running code generated by Reflection.Emit.
29710
29711 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29712
29713         * appdomain.c: check for NULL argument in LoadFrom.
29714
29715 2002-12-10  Dick Porter  <dick@ximian.com>
29716
29717         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
29718
29719 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29720
29721         * appdomain.c: fix buglet when building exe file name.  Handle full
29722         assembly name (needed after latest changes to AssemblyName).
29723         * image.c:
29724         (mono_image_close): free some hashtables.
29725
29726 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
29727
29728         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
29729         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
29730         on some systems (redhat 7.3) 
29731
29732 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
29733
29734         * threads.c: delete the critical section of a sync block,
29735         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
29736
29737 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
29738
29739         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
29740
29741 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29742
29743         * appdomain.[ch]: handle the assembly preload event to try loading the
29744         assemblies using the paths we have in the current domain.
29745
29746         * assembly.[ch]: created an assembly preload hook that is called to try
29747         loading the assembly by other means that the ones provided here.
29748
29749         * domain.c: initialize the domain search path.
29750
29751         From now on, assemblies (TODO: except corlib and System) are loaded
29752         according to these rules when using mono_assembly_load ():
29753
29754                 1. It tries to load the assembly from the ApplicationBase
29755                 of the current domain appending .dll and .exe (TODO: have to
29756                 try loading from name/name.dll and name/name.exe).
29757
29758                 2. It tries the search path specified in PrivateBinPath for the
29759                 current domain (if any).
29760
29761                 3. Previous behavior.
29762
29763 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
29764
29765         * icall.c: implemented GetInterfaceMap() related icall.
29766         * domain.c, loader.h: load MethodInfo in mono_defaults.
29767
29768 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
29769
29770         * gc.c: disable the finalizer thread for now, untill all the issues
29771         with it are resolved.
29772
29773 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
29774
29775         * string-icalls.c: handle embedded nulls in string ctor when the
29776         length is specified.
29777
29778 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
29779
29780         * class.c: look for explicit interface implementation in parent
29781         classes, too.
29782
29783 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
29784
29785         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
29786
29787 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
29788
29789         * gc.c: protect handles with a critical section.
29790
29791 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29792
29793         * icall.c:
29794         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
29795         parameters. If no assembly specified, try getting the type from all
29796         the assemblies in the current domain, else, load the assembly and get
29797         the type from it.
29798
29799 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29800
29801         * marshal.c: applied patch from Aleksey Demakov that fixes
29802         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
29803
29804 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29805
29806         * icall.c: fixed get_location.
29807
29808 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
29809
29810         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
29811         declarations to make it work with older gcc. 
29812
29813         * loader.c (mono_get_method): set signature->pinvoke for native calls
29814
29815 2002-11-20  Dick Porter  <dick@ximian.com>
29816
29817         * threads.c (mono_thread_init): Set the main thread's handle
29818
29819 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
29820
29821         * gc.c: allow compilation without GC support. Changed to match the
29822         mono coding style.
29823
29824 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
29825
29826         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
29827
29828 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
29829
29830         * reflection.c: set a public key token on the core assemblies.
29831
29832 2002-11-18  Dick Porter  <dick@ximian.com>
29833
29834         * threads.c: Split out some thread initialisation so that other
29835         files can set the start callback function.
29836
29837         * gc.c: Run finalisers in a separate thread, to avoid stack
29838         overflow.  Fixes bug 31333.
29839
29840         * appdomain.c: Set up GC finalisation thread.
29841
29842         * reflection.c: 
29843         * object.c: 
29844         * domain.c: Use gc.h macros for GC_malloc
29845         
29846 2002-11-15  Dick Porter  <dick@ximian.com>
29847
29848         * threadpool.c: 
29849         * threads.c:
29850         * appdomain.c: Removed mono_runtime_init_with_attach(),
29851         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
29852         merging the extra parameter with the existing function.  Removed
29853         unneeded code in mono_thread_attach().
29854
29855 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
29856
29857         * image.c (mono_image_loaded_by_guid): a method to get loaded
29858         images by guid. 
29859         (load_metadata_ptrs): we store the guid as string.
29860
29861 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
29862
29863         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
29864
29865         * metadata.c (mono_guid_to_string): imported method form Zoltan
29866         Varga (slightly modified)
29867
29868         * assembly.c (mono_assembly_open): load precompiled code
29869
29870         * loader.h (MonoMethod): we store the method token for use in the
29871         aot compiler. 
29872
29873 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29874
29875         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
29876         the hook function called when an assembly is loaded.
29877         
29878         * domain.c: Modified file.
29879         (mono_domain_assembly_load): removed hash table insertion of assemblies.
29880
29881         Fixes bug #33196.
29882
29883 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
29884
29885         * reflection.c: Map PEFileKind to the value expected by the WinNT
29886         image loader. 
29887
29888 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29889
29890         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
29891         Read until the buffer is filled completely.
29892
29893 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29894
29895         * icall.c: implemented MonoType.InternalGetEvent ().
29896
29897 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29898
29899         * appdomain.c: implemented InitAppDomainSetup. Delayed
29900         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
29901         the entry_assembly.
29902
29903         * assembly.c: base_dir is now an absolute path ending with
29904         G_DIR_SEPARATOR.
29905
29906         * icall.c: modified get_location according to the above changes.
29907
29908         * object.c: init AppDomain.SetupInformation for the default domain after
29909         we have the entry assembly.
29910
29911         * domain.c: when unloading a domain, setup = NULL.
29912
29913 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
29914
29915         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
29916
29917 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
29918
29919         * object.h, object.c: introduced mono_object_get_virtual_method ()
29920         to lookup the method invoked on an object when a callvirt is done on
29921         a method.
29922         * icall.c: make MethodInfo::Invoke() always do a virtual call.
29923
29924 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29925
29926         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
29927         current domain when loaded an assembly and failed to load it.
29928
29929         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
29930
29931 2002-10-31  Dick Porter  <dick@ximian.com>
29932
29933         * icall.c: 
29934         * file-io.h: 
29935         * file-io.c: Return the error status in a parameter, as the
29936         GetLastError() value has long since been blown away if we try and
29937         look it up in a subsequent internal call invocation.  Delete the
29938         GetLastError() internal call, because it's useless.
29939
29940 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
29941
29942         * class.[ch]: added cast_class to fix bug 29517
29943
29944 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
29945
29946         * marshal.c: create valid IL code in the filter clause:
29947         the new JIT is less forgiving:-)
29948
29949 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29950
29951         * icall.c: removed get_property internal call.
29952
29953 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
29954
29955         * appdomain.h domain.c: Added an ID to appdomains.
29956         
29957         * threads.c threads.h icall.c: Implement icall
29958         Thread:GetDomainID(), and remove unused icall 
29959         CurrentThreadDomain_internal.
29960
29961 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29962
29963         * icall.c: Don't recurse through the base types in GetConstructor.
29964         Fixes bug #32063. 
29965
29966 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
29967
29968         * mempool.h, mempool.c: added mono_mempool_empty() and
29969         mono_mempool_stats().
29970
29971 2002-10-23  Dick Porter  <dick@ximian.com>
29972
29973         * file-io.c: 
29974         * file-io.h: 
29975         * icall.c: Added MonoIO.GetFileType internal call
29976
29977 2002-10-17  Dick Porter  <dick@ximian.com>
29978
29979         * appdomain.c (mono_runtime_cleanup): Don't signal the async
29980         delegate semaphore before waiting for all threads to finish,
29981         because new threads can also call async delegates.  Fixes bug
29982         32004.
29983
29984         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
29985         of 3 seconds, in case another async job is queued.  (This part is
29986         needed because the bug fix reintroduced the 3s exit lag.)  This
29987         makes the mono_runtime_shutdown flag superfluous.
29988
29989 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
29990
29991         * reflection.c: include ehader size in method section headers.
29992         Really check for suplicated modules entries.
29993
29994 2002-10-17  Martin Baulig  <martin@gnome.org>
29995
29996         * debug-mono-symfile.c: Added back support for locals.
29997
29998 2002-10-14  Martin Baulig  <martin@gnome.org>
29999
30000         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
30001         MONO_TYPE_VOID.
30002
30003 2002-10-14  Martin Baulig  <martin@gnome.org>
30004
30005         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
30006         mono_class_get() instead of looking in the class cache. 
30007
30008 2002-10-13  Martin Baulig  <martin@gnome.org>
30009
30010         * debug-mono-symfile.c: Set version number to 28, include the
30011         signature in method names.
30012
30013 2002-10-13  Martin Baulig  <martin@gnome.org>
30014
30015         * debug-mono-symfile.h: Set version number to 27.
30016
30017 2002-10-11  Martin Baulig  <martin@gnome.org>
30018
30019         * gc.c: Don't register/unregister NULL pointers as disappearing links.
30020
30021 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
30022
30023         * metadata.c, metadata.h: added helper function to allocate signatures.
30024
30025 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30026
30027         * icall.c: added internal call to get the location of machine.config.
30028
30029 2002-10-08  Martin Baulig  <martin@gnome.org>
30030
30031         * debug-mono-symfile.c: Ignore classes with a pending init for the
30032         moment.
30033
30034 2002-10-03  Dick Porter  <dick@ximian.com>
30035
30036         * threads.c: Freebsd pthread_t is a pointer
30037
30038 2002-10-03  Dick Porter  <dick@ximian.com>
30039
30040         * socket-io.c: Implemented GetHostName_internal
30041
30042 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30043
30044         * mono-config.c:
30045         (mono_config_parse_file): don't leak the text.
30046
30047 2002-10-02  Martin Baulig  <martin@gnome.org>
30048
30049         * debug-mono-symfile.c: Added support for methods.
30050
30051 2002-10-01  Martin Baulig  <martin@gnome.org>
30052
30053         * debug-mono-symfile.c: Don't emit methods and line numbers for
30054         the dynamic symbol file, just write the type table.  We can easily
30055         have an external helper program which creates a symbol file for an
30056         IL file.        
30057
30058 2002-10-01  Dick Porter  <dick@ximian.com>
30059
30060         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
30061         Only add the handle to the cleanup array when we're about to
30062         launch the thread.  Bug 31425 deadlocked when the test was run on
30063         mono under w32.
30064
30065 2002-10-01  Martin Baulig  <martin@gnome.org>
30066
30067         * debug-mono-symfile.c: Added support for properties.
30068
30069 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
30070
30071         * reflection.c: unaligned store fix from Mark Crichton
30072         <crichton@gimp.org>.
30073
30074 2002-09-27  Martin Baulig  <martin@gnome.org>
30075
30076         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
30077         New interncall.
30078
30079 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
30080
30081         * assembly.h, assembly.c: use a sane API to hook into the assembly
30082         loading process instead of a useless special-purpouse hack
30083         (ngen needs a hook, too, for example).
30084
30085 2002-09-27  Dick Porter  <dick@ximian.com>
30086
30087         * threads.c (mono_thread_init): Call GetCurrentProcess() so
30088         io-layer can set up some process handle info.  Not needed on w32,
30089         but doesn't hurt either.
30090
30091         * process.c: Pass the program name in the second parameter to
30092         CreateProcess, so the path is searched.  Include the working
30093         directory. Implemented process name, process enumeration, and some
30094         process detail internal calls.
30095         
30096         * icall.c: Added internal calls for process lookup, and some
30097         process details
30098
30099 2002-09-26  Martin Baulig  <martin@gnome.org>
30100
30101         * assembly.c (mono_install_open_assembly_hook): New global
30102         function to install a function to be invoked each time a new
30103         assembly is loaded.
30104         (mono_assembly_open): Run this callback function if set.
30105
30106         * debug-mono-symfile.c: Put back line numbers for the dynamic
30107         symbol file and also record the .il file as source file.  This
30108         allows us to install the temporary symbol file as `file.dbg' just
30109         like a compiler-generated one.
30110
30111 2002-09-26  Nick Zigarovich <nick@chemlab.org>
30112
30113         * Corrected typo in gc.c (BOHEM vs BOEHM).
30114
30115 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30116
30117         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
30118         GetProperties. Also avoid calling g_slist_length in GetProperties and
30119         GetMethods.
30120
30121 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
30122
30123         * reflection.c: avoid unaligned stores (bug spotted by
30124         Mark Crichton  <crichton@gimp.org>).
30125
30126 2002-09-25  Martin Baulig  <martin@gnome.org>
30127
30128         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
30129         instead of guint64 for addresses and added prologue/epilogue info.
30130
30131 2002-09-25  Martin Baulig  <martin@gnome.org>
30132
30133         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
30134         store line number info.  For the dynamic symbol file, we only need
30135         to provide the JIT generated dynamic line number info for the dynamic
30136         symbol file.
30137
30138 2002-09-25  Martin Baulig  <martin@gnome.org>
30139
30140         * debug-mono-symfile.h: Incremented version number.
30141
30142 2002-09-24  Martin Baulig  <martin@gnome.org>
30143
30144         * class.c (mono_debugger_class_init_func): New global function
30145         pointer variable.
30146         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
30147         call it.
30148
30149         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
30150         function.  This is called via the mono_debugger_class_init_func
30151         hook to add all types to the dynamic type table.
30152         (ves_icall_MonoDebugger_GetType): New interncall to get a class
30153         from its metadata token.
30154
30155         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
30156         New interncall for the debugger.
30157
30158 2002-09-24  Nick Drochak <ndrochak@gol.com>
30159
30160         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
30161         before using it in case it is null.
30162         
30163 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
30164
30165         * metadata.c: allow custom modifiers in local var signatures
30166         (bug spotted by Zoltan Varga).
30167
30168 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
30169
30170         * class.c: deal with the <Module> class that may have a NULL vtable.
30171         Eliminate warnings.
30172
30173 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
30174
30175         * image.c, image.h: more strong name helpers.
30176         * monosn.c: more work: convert pem keys to cryptoapi format.
30177
30178 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
30179
30180         * string-icalls.c: speedup IndexOf.
30181
30182 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
30183
30184         * icall.c: updates from Zoltan.2.Varga@nokia.com.
30185
30186 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
30187
30188         * icall.c: cleanup: use mono_object_domain ().
30189
30190 2002-09-23  Martin Baulig  <martin@gnome.org>
30191
30192         * debug-mono-symfile.c: Improved type support.
30193
30194 2002-09-22  Martin Baulig  <martin@gnome.org>
30195
30196         * debug-mono-symfile.c: Added support for reference types and strings.
30197
30198 2002-09-22  Martin Baulig  <martin@gnome.org>
30199
30200         * debug-mono-symfile.c: Started to work on the type table.
30201
30202 2002-09-21  Martin Baulig  <martin@gnome.org>
30203
30204         * debug-mono-symfile.c: Largely reworked the symbol table format.
30205         The symbol table is now incrementally updated each time a new
30206         method is added.  We're now also using our own magic and version
30207         so that you don't need to recompile all your classes if the
30208         dynamic table changes.
30209         (mono_debug_update_mono_symbol_file): Removed.
30210         (mono_debug_symfile_add_method): New function to add a method.
30211
30212 2002-09-21  Martin Baulig  <martin@gnome.org>
30213
30214         * icall.c
30215         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
30216         New interncall.
30217
30218         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
30219         New interncall to get a method from its metadata token.
30220
30221 2002-09-21  Martin Baulig  <martin@gnome.org>
30222
30223         * debug-mono-symfile.c: Create type table.
30224
30225 2002-09-20  Martin Baulig  <martin@gnome.org>
30226
30227         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
30228
30229 2002-09-20  Martin Baulig  <martin@gnome.org>
30230
30231         * debug-mono-symfile.c: Provide information about params and locals.
30232
30233 2002-09-20  Martin Baulig  <martin@gnome.org>
30234
30235         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
30236         New interncall.
30237
30238         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
30239         interncall to get a method from its metadata token.
30240
30241 2002-09-20  Martin Baulig  <martin@gnome.org>
30242
30243         * debug-mono-symfile.c: Added a few checks for method->header
30244         being non-NULL.  This should never happen, but for the moment
30245         let's use a g_warning() rather than a g_assert().
30246
30247 2002-09-19  Mark Crichton  <crichton@gimp.org>
30248
30249         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
30250         even if support for it isn't present.  Added an #ifdef to fix this.
30251
30252         * socket-io.c: Added checks back for Solaris support.
30253
30254 2002-09-19  Martin Baulig  <martin@gnome.org>
30255
30256         * debug-mono-symfile.c (read_string, write_string): Reflect latest
30257         changes in the symbol file format.
30258
30259 2002-09-18  Martin Baulig  <martin@gnome.org>
30260
30261         * debug-mono-symfile.c: Set version number to 21.
30262
30263 2002-09-18  Dick Porter  <dick@ximian.com>
30264
30265         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
30266         on netbsd.  Fixes bug 30051.
30267
30268 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30269
30270         * reflection.c:
30271         (set_version_from_string): little fix.
30272
30273 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
30274
30275         * monosn.c, Makefile.am: added strong name utility.
30276         * reflection.h, reflection.c: implemented delayed signing,
30277         locale, version and hash id assembly attributes.
30278
30279 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
30280
30281         * loader.c, metadata.c: load param attributes in signatures.
30282
30283 2002-09-16  Martin Baulig  <martin@gnome.org>
30284
30285         * debug-mono-symfile.c: Added string table with all method names.
30286
30287 2002-09-14  Martin Baulig  <martin@gnome.org>
30288
30289         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
30290         fast method lookup.
30291
30292 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
30293
30294         * reflection.c: record the public key token of referenced assemblies.
30295
30296 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
30297
30298         * image.c, image.h: added functions to get the strong name and the
30299         public key of an assembly.
30300         * pedump.c: use them.
30301
30302 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
30303
30304         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
30305
30306 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
30307
30308         * marshal.c (mono_marshal_get_managed_wrapper): Added
30309         MONO_TYPE_BOOLEAN 
30310
30311 2002-09-11  Martin Baulig  <martin@gnome.org>
30312
30313         * gc.c: Call GC_unregister_disappearing_link() on all links when
30314         finalizing them, this is necessary to aviod a crash in boehm's
30315         finalize handler.
30316
30317 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
30318
30319         * gc.c: handle GetTarget for finalized objects spotted and fixed by
30320         nick@chemlab.org.
30321
30322 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
30323
30324         * icall.c: implemented MonoType::Module.
30325         * reflection.c, reflection.h: mono_module_get_object () from
30326         Tomi Pakarinen <tomi.pakarinen@welho.com>.
30327
30328 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
30329
30330         * icall.c: ignore overridden methods in GetMethods ().
30331         Fix for FieldInfo::SetValue().
30332         * object.c: handle float/double in runtime invoke.
30333
30334 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
30335
30336         * object.c: allow a constructor to be called again on an object.
30337
30338 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
30339
30340         * class.h, class.c: move field layout code to it's own function and
30341         export it. Get an interface id earlier. Move fields in MonoClass
30342         so they are more cache friendly and align the bitfields.
30343         * loader.c: temporary handle get_param_names() for a runtime method.
30344         * reflection.c, reflection.h: more code to handle runtime creation of
30345         types.
30346
30347 2002-09-09  Martin Baulig  <martin@gnome.org>
30348
30349         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
30350         signature with the pinvoke field being set for the actual call.
30351
30352 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
30353
30354         * icall.c: removed some unused icalls. Start of map of glib charsets
30355         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
30356
30357 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
30358
30359         * debug-helpers.c: break infinite loop (found and fixed by
30360         Holger Arnold <harnold@gmx.de>).
30361
30362 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
30363
30364         * icall.c: target may be null in create_delegate.
30365
30366 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
30367
30368         * marshal.c: handle a boolean return type.
30369
30370 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
30371
30372         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
30373
30374 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
30375
30376         * gc.c: fix weakreferences.
30377
30378 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
30379
30380         * icall.c: added icall to get default codepage.
30381
30382 2002-09-03  Dick Porter  <dick@ximian.com>
30383
30384         * threads.h: 
30385         * threads.c: Use MonoThread instead of MonoObject where
30386         apropriate.
30387
30388         Store running thread objects in a hash table, so that we have all
30389         the info to hand when waiting for them to finish
30390         (means we don't need OpenThread() any more, so mingw builds should
30391         be fully functional again.)
30392
30393         * verify.c:
30394         * object.h: Added thread ID to MonoThread
30395
30396 2002-09-03  Martin Baulig  <martin@gnome.org>
30397
30398         * icall.c (System.Reflection.Assembly::get_location): New interncall.
30399
30400 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30401
30402         * icall.c: fixed leak in get_temp_path. Thanks lupus.
30403
30404 2002-09-03  Martin Baulig  <martin@gnome.org>
30405
30406         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
30407         argument to store the end address of the disassembled instruction.
30408
30409         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
30410         here from debug-symfile.h.
30411         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
30412         JIT into this struct.
30413         (MonoSymbolFile): Added `char *image_file' field.
30414         (MonoDebugGetMethodFunc): Removed.
30415         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
30416         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
30417         (mono_debug_find_method): New method.
30418
30419         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
30420         create a full symbol file.
30421         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
30422         and static symbol files.
30423         (mono_debug_find_method): The symbol file keeps an internal method hash,
30424         call this to get a MonoDebugMethodInfo from a MonoMethod.
30425
30426         * debug-symfile.[ch]: Removed.
30427
30428 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
30429
30430         * image.c (do_mono_image_open): Remove linker version check.
30431
30432 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
30433
30434         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
30435         wrappers for instance methods.
30436         
30437 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30438
30439         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
30440
30441 2002-08-28  Dick Porter  <dick@ximian.com>
30442
30443         * Makefile.am: Export HOST_CC for w32 builds
30444
30445 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
30446
30447         * file-io.c process.c: MonoString are null terminated, no
30448         need for mono_string_to_utf16() anymore.
30449
30450 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
30451
30452         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
30453
30454 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
30455
30456         * icall.c, reflection.h: speedup System.MonoType.
30457
30458 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
30459
30460         * reflection.c: allow null as the value of a string argument in
30461         custom attributes constructors.
30462
30463 2002-08-27  Martin Baulig  <martin@gnome.org>
30464
30465         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
30466         `trampoline_address' field.
30467
30468 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
30469
30470         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
30471         check (fixes bug #29486) 
30472
30473 2002-08-27  Martin Baulig  <martin@gnome.org>
30474
30475         * debug-mono-symfile.c: Changed the file format in a way that allows us
30476         open it read-only and to use a specially malloced area for all the
30477         dynamic data.  We can now also generate a symbol file on-the-fly if we're
30478         debugging IL code and there is no MCS generated symbol file for it.
30479
30480 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
30481
30482         * object.c: added a define for a good string and array
30483         creation speedup (not enabled by default because we need to deal with
30484         the synch stuff).
30485
30486 2002-08-26  Martin Baulig  <martin@gnome.org>
30487
30488         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
30489         function to create a dynamic symbol file.  This is used by the
30490         debugger to create a symbol file for IL code on-the-fly.
30491
30492 2002-08-26  Martin Baulig  <martin@gnome.org>
30493
30494         * loader.c (mono_lookup_pinvoke_call): Include the error message
30495         from g_module_error() in the error message.
30496
30497 2002-08-24  Martin Baulig  <martin@gnome.org>
30498
30499         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
30500         function to update the symbol file.  The symbol file is mmap()ed
30501         writable, but private.  This allows us to install the symbol file
30502         together with the assembly.
30503
30504 2002-08-24  Martin Baulig  <martin@gnome.org>
30505
30506         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
30507         but they can read the new symbol file format which mcs is now creating.
30508
30509         * debug-symfile.c (mono_debug_find_source_location): Moved to
30510         debug-mono-symfile.c; this is now operating on the new symbol file.
30511
30512 2002-08-23  Martin Baulig  <martin@gnome.org>
30513
30514         * debug-helpers.c (mono_method_desc_from_method): New function to get
30515         a MonoMethodDesc from a MonoMethod.
30516
30517 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
30518
30519         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
30520         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
30521
30522 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
30523
30524         * string-icalls.[ch]: make helper methods static.
30525
30526 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30527
30528         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
30529         types to it and to SetValueInternal.
30530
30531         * object.c: Moved handle_enum label to its proper place. This was the
30532         f... bug! ;-)
30533
30534         This time i compiled mcs and gtk-sharp and they both work.
30535
30536 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30537
30538         * icall.c: reverted partially my previous patch until 
30539         object.c:set_value handles enums correcly.
30540
30541 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30542
30543         * icall.c:
30544         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
30545         (ves_icall_System_Environment_get_MachineName): removed warning when
30546         compiling under cygwin.
30547
30548 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
30549
30550         * object.c: fixed field_get_value() for reference types.
30551
30552 2002-08-22  Dick Porter  <dick@ximian.com>
30553
30554         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
30555         Don't free a buffer while it's still needed.  Patch from Jonathan
30556         Liger <Jonathan.liger@wanadoo.fr>
30557
30558 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
30559
30560         * icall.c (ves_icall_System_Environment_get_Platform): Add new
30561         internal call.
30562
30563 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
30564
30565         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
30566         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
30567
30568         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
30569         we call unmanaged code which throws exceptions.
30570
30571 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
30572
30573         * appdomain.h: added per-domain entry_assembly.
30574         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
30575         arguments.
30576         * icall.c: Assembly::GetEntryAssembly icall.
30577         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
30578         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
30579
30580 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
30581
30582         * appdomain.h, gc.c: added mono_domain_finalize ().
30583
30584 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30585
30586         * object.c:
30587         (mono_print_unhandled_exception): changed g_warning by g_printerr
30588         because g_log has a 1024 characters limit (yeah, i got a big stack
30589         trace). Don't print exception name, that should be in ToString 
30590         returned string.
30591
30592 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30593
30594         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
30595         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
30596
30597 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30598
30599         * object.c:
30600         (mono_print_unhandled_exception): after previous commit, i realized
30601         that MS calls ToString on the exception. I changed this function to
30602         do that. This way we get stack_trace for free.
30603
30604 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30605
30606         * object.c:
30607         (mono_print_unhandled_exception): invoke Message property instead of
30608         getting 'message' field from Exception. Don't allocate memory for
30609         'trace' and 'message' if not needed.
30610
30611 2002-08-18  Dick Porter  <dick@ximian.com>
30612
30613         * unicode.c: Fix asserts to match Encoder.cs checks
30614
30615 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
30616
30617         * marshal.c: fix unaligned store issue and a few wrong
30618         opcode argument types.
30619
30620 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30621
30622         * icall.c: added GetUninitializedObjectInternal internal call.
30623
30624 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
30625
30626         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
30627         to the right domain.
30628
30629 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
30630
30631         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
30632
30633         * class.c (class_compute_field_layout): set blittable to false for Strings
30634
30635         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
30636
30637 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
30638
30639         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
30640         first chunk of code to create types at runtime. Code to
30641         handle ReflectedType/DeclaringType. Make reflection handles
30642         domain specific.
30643
30644 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
30645
30646         * class.c: set correct name in arrays.
30647
30648 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
30649
30650         * appdomain.c (mono_domain_transfer_object): make it work with
30651         valuetypes. bug fixes.
30652
30653 2002-08-12  Dick Porter  <dick@ximian.com>
30654
30655         * object.h: Rename some parameters to avoid c++ keywords (Patch
30656         from Joseph Wenninger <kde@jowenn.at>)
30657
30658 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
30659
30660         * icall.c: added icall to implement Assembly.GetFile*.
30661
30662 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
30663
30664         * reflection.h, reflection.c: code to embed managed resources.
30665
30666 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
30667
30668         * class.c: move all the type size stuff into
30669         class_compute_field_layout().
30670
30671 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
30672
30673         * class.c: ensure enums have always the correct instance size.
30674         * unicode.c: remove wrong assert.
30675
30676 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
30677
30678         * assembly.c: fix mem corruption issue.
30679         * image.h, image.c: added mono_image_get_resource () to access
30680         managed resources.
30681         * icall.c: implemented Assembly.EntryPoint property and some
30682         Managed Resources related internalcalls.
30683
30684
30685 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
30686
30687         * image.c, image.h: impemented mono_image_get_entry_point ().
30688         * appdomain.c: use mono_image_get_entry_point.
30689
30690 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
30691
30692         * reflection.c: support the object type argument when loading
30693         custom attributes.
30694
30695 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
30696
30697         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
30698         String as return type.
30699
30700 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
30701
30702         * reflection.c: fix encoding of named args for custom attrs to match
30703         the ms implementation. Read them back when instantiating custom
30704         attributes.
30705
30706 2002-08-02  Radek Doulik  <rodo@ximian.com>
30707
30708         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
30709         by Dietmar as quick fix
30710         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
30711         16 as stack size, used on more places as quick fix before Dietmar
30712         will fix it properly
30713
30714 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
30715
30716         * object.h, object.c: added accessors for fields and properties.
30717
30718 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
30719
30720         * class.c, class.h: made mono_class_get_field_from_name ()
30721         loop on parent types.
30722         Added mono_class_get_property_from_name ().
30723
30724 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
30725
30726         * class.c, class.h: move the code to setup the type vtable in its own
30727         function so that it can be reused also for types created at runtime.
30728         Eliminate the "class" identifier from the header file.
30729         * reflection.c: setup the vtable for enums so that we can create
30730         objects for use in SetConstant ().
30731
30732 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
30733
30734         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
30735         instead of the delegate itself as this pointer (bug #28383)
30736
30737 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
30738
30739         * marshal.c (mono_marshal_get_managed_wrapper): added return type
30740         conversions.
30741
30742 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
30743
30744         * loader.c: don't set the pinvoke bit on icalls.
30745
30746 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
30747
30748         * debug-helpers.c (mono_method_full_name): only print a number to
30749         indicate wrapper type (so that the output is more readable in traces).
30750
30751 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
30752
30753         * class.c (mono_class_init): include method override patch from Paolo
30754
30755 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
30756
30757         * icall.c: fixed GetTypeCode().
30758
30759 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
30760
30761         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
30762         use real delegate invoke function to make it work with multicast
30763         delegates (fix bug# 28291).
30764
30765 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
30766
30767         * object.c: load constant strings.
30768
30769 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
30770
30771         * reflection.c: no magic numbers.
30772         * tabledefs.h: security action enum.
30773
30774 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
30775
30776         * assembly.c: fix possible memory corruption.
30777
30778 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
30779
30780         * reflection.h, reflection.c: added support for linking resources.
30781         * verify.c: check we have an updated corlib.
30782
30783 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
30784
30785         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
30786         string arrays.
30787         (mono_marshal_string_array): null terminate unmanaged string arrays.
30788         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
30789
30790 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
30791
30792         * icall.c: Type.GetType () can now return also types from the
30793         calling assembly.
30794
30795 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
30796
30797         * loader.h, loader.c: stack walking support.
30798         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
30799         GetCallingAssembly.
30800
30801 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
30802
30803         * marshal.c: added optimisations for blittable types 
30804
30805         * class.c (mono_array_class_get): do not set blittable attribute on arrays
30806         (mono_class_setup_mono_type): set blittable attribute for single
30807         and double.
30808
30809         * marshal.c (mono_string_utf8_to_builder): impl.
30810         (mono_string_builder_to_utf8): impl.
30811         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
30812
30813 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
30814
30815         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
30816         (mono_marshal_get_managed_wrapper): impl. byref types
30817
30818 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30819
30820         * icall.c:
30821         (search_method): don't display debug message. 
30822
30823 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
30824
30825         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
30826
30827 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
30828
30829         * appdomain.c: set the missing filename when throwing exception.
30830
30831 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
30832
30833         * metadata.c (mono_type_size): code cleanup
30834         (mono_type_stack_size): removed some test code
30835
30836 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
30837
30838         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
30839         mono_get_exception_file_not_found now.
30840
30841         * exception.c (mono_exception_from_name_two_strings): New version
30842         that will call a constructor with two string arguments. 
30843         (mono_get_exception_file_not_found): New helper routine, used to
30844         report file-not-found errors.
30845
30846 2002-07-20  Dick Porter  <dick@ximian.com>
30847
30848         * process.h:
30849         * process.c: Pass file handles to CreateProcess
30850         
30851         * icall.c:
30852         * file-io.h:
30853         * file-io.c: Implemented CreatePipe
30854
30855 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
30856
30857         * metadata.c (mono_get_param_info): set alignment for value types
30858
30859 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
30860
30861         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
30862         Constify mono_domain_assembly_open().
30863         * loader.c: handle null namespace in icalls.
30864
30865 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
30866
30867         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
30868         (emit_str_to_ptr_conv): marshal object as structs
30869
30870         * metadata.c (mono_type_to_unmanaged): marshal object as structs
30871
30872         * marshal.c (mono_marshal_get_runtime_invoke): support value types
30873
30874 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
30875
30876         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
30877         (mono_marshal_get_native_wrapper): we an now return value types
30878
30879 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
30880
30881         * verify.c: more checks implemented.
30882
30883 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
30884
30885         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
30886         (fix bug #27695)
30887         (mono_marshal_get_native_wrapper): allow byref arguments
30888         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
30889         impl. PtrToStringXXX methods
30890         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
30891         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
30892         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
30893         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
30894         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
30895
30896 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
30897
30898         * reflection.c: fix buglet in parsing an assembly name.
30899
30900 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
30901
30902         * marshal.c (emit_ptr_to_str_conv): first impl.
30903
30904 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
30905
30906         * object.c, class.h: cache the vtable in the class as suggested by
30907         vargaz@freemail.hu (Zoltan Varga).
30908
30909 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
30910
30911         * class.h, loader.c: added mono_field_from_token().
30912         * verify.c: first cut of type checking code.
30913
30914 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
30915
30916         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
30917
30918 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
30919
30920         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
30921         (fix bug #27782)
30922         (mono_marshal_get_remoting_invoke): impl.
30923         (mono_delegate_begin_invoke): impl.
30924         (mono_mb_emit_save_args): impl.
30925         (mono_delegate_end_invoke): impl.
30926         (mono_marshal_get_delegate_begin_invoke):
30927         (mono_marshal_get_delegate_end_invoke):
30928         (mono_marshal_get_delegate_invoke): generate a special name for
30929         those methods (including the signature) and associate them whith
30930         the delegate class. 
30931
30932 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
30933
30934         * reflection.[ch]: 
30935         (mono_reflection_type_from_name): now it has a MonoImage parameter
30936         which is used as the default image to search the type in. If the image
30937         is NULL or getting the type from it fails, it defaults to corlib.
30938
30939         * icall.c: changed 1 call to mono_reflection_type_from_name to match
30940         new parameter.
30941
30942 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
30943
30944         * reflection.c: update the parameter table index.
30945
30946 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
30947
30948         * domain.c: don't include the mark byte in the string hash.
30949
30950 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
30951
30952         * icall.cs: icall for Type.GetTypeCode ().
30953         * verify: a couple of fixes and disabled local initialization checks.
30954
30955 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
30956
30957         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
30958
30959         * debug-helpers.c (mono_method_full_name): print the type of the
30960         runtime wrapper
30961
30962         * metadata.c (mono_signature_hash): a hash function for signatures
30963         (mono_signature_hash): better hash algorithm
30964
30965         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
30966
30967         * debug-helpers.c (mono_method_full_name): this can now generate
30968         method names with signatures
30969
30970         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
30971         method dont have this pointers.
30972
30973 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
30974
30975         * reflection.c: fixup typebuilder tokens.
30976         * image.c: fix buglet.
30977         * marshal.h: remove whitespace.
30978         * metadata.h, metadata.c: reinstate code that was removed.
30979         * verify.c: handle catch directives and fix another couple of bugs.
30980
30981 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
30982
30983         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
30984         (mono_marshal_get_native_wrapper): make it comp. with the old code
30985         (mono_marshal_get_native_wrapper): support boolean
30986         (mono_marshal_get_managed_wrapper): support more types
30987
30988 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
30989
30990         * class.c (class_compute_field_layout): compute class->blittable attribute.
30991
30992 2002-07-09  Dick Porter  <dick@ximian.com>
30993
30994         * threads.c: Make the thread cleaning up cope with threads that
30995         call ExitThread()
30996
30997 2002-07-08  Radek Doulik  <rodo@ximian.com>
30998
30999         * reflection.c (method_encode_code): use non-translated values to
31000         compute finally_start, this fixes exception handling on ppc, yay!
31001
31002         * decimal.h (struct signscale): fix endianess
31003
31004 2002-07-07  Radek Doulik  <rodo@ximian.com>
31005
31006         * reflection.c: swap box_val and not val
31007
31008 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
31009
31010         * reflection.c, reflection.h: handle full assembly info in type name.
31011         Handle Type arguments when loading custom attributes.
31012         * icall.c: updated to use new mono_reflection_type_from_name () method.
31013
31014 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31015
31016         * loader.c:
31017         (method_from_memberref): also print assembly name when method not found.
31018
31019 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31020
31021         * icall.c:
31022         (ves_icall_TypeGetProperties): fixed bug #27473. 
31023
31024 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31025
31026         * reflection.c: display image name and token when cannot find the
31027         .ctor for an attribute.
31028
31029 2002-07-05  Martin Baulig  <martin@gnome.org>
31030
31031         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
31032
31033 2002-07-04  Dick Porter  <dick@ximian.com>
31034
31035         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
31036         compile on mingw.  This will cause mingw builds to not wait for
31037         subthreads to terminate after the main thread does.  I've lodged a
31038         bug with the mingw developers for them to wrap OpenThread().
31039
31040 2002-07-03  Dick Porter  <dick@ximian.com>
31041
31042         * threads.c: Store thread IDs instead of handles, because
31043         GetCurrentThread() returns a pseudohandle and therefore stores
31044         useless values.  mono_thread_cleanup() continues checking the
31045         array of threads until it is empty, to cope with subthreads
31046         spawning new threads after the main thread has finished.
31047
31048         * profiler.h:
31049         * profiler.c:
31050         * profiler-private.h: Pass the thread ID to thread profiler
31051         functions, instead of a handle
31052
31053 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
31054
31055         * verify.c: fixes to make it more usable.
31056         * pedump.c: added --verify code to verify IL code in an assembly.
31057
31058 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31059
31060         * reflection.c: turn errors into warnings to allow compiling corlib.
31061
31062 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
31063
31064         * reflection.c: add special cases to compile corlib.
31065
31066 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31067
31068         * reflection.c: handle properties with only a set method.
31069
31070 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
31071
31072         * opcodes.h: add enum with opcodes in opval order.
31073
31074 2002-07-01  Dick Porter  <dick@ximian.com>
31075         
31076         * object.h:
31077         * object.c (mono_runtime_run_main): Removed unneeded argument
31078
31079 2002-06-28  Martin Baulig  <martin@gnome.org>
31080
31081         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
31082
31083 2002-06-27  Dick Porter  <dick@ximian.com>
31084
31085         * threads.c: Store the handle in both the parent thread and in the
31086         subthread, to minimise the time between starting a new thread and
31087         storing its ID.
31088
31089 2002-06-26  Dick Porter  <dick@ximian.com>
31090
31091         * appdomain.c (mono_runtime_cleanup): Close the socket library
31092         after all the threads have finished, not before
31093
31094 2002-06-26  Martin Baulig  <martin@gnome.org>
31095
31096         * debug-symfile.c (mono_debug_find_source_location): Added
31097         `guint32 *line_number' argument.  If it's not NULL, store the line number
31098         there and return the file name without the line number.
31099
31100 2002-06-25  Dick Porter  <dick@ximian.com>
31101
31102         * icall.c:
31103         * process.h:
31104         * process.c: Process forking and other support functions
31105
31106 2002-06-25  Dick Porter  <dick@ximian.com>
31107
31108         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
31109         things dont happen when the image is closed.
31110         (mono_image_lookup_resource): Walk the resource section looking
31111         for a particular entry
31112
31113         * cil-coff.h: PE resource section decoding
31114
31115 2002-06-25  Dick Porter  <dick@ximian.com>
31116         
31117         * assembly.h:
31118         * assembly.c: 
31119         (mono_assembly_foreach): Accessor functions to walk the list of
31120         loaded assemblies
31121         (mono_assembly_set_main):
31122         (mono_assembly_get_main): Process methods need to know which
31123         assembly is the "main" one
31124
31125         * object.c (mono_runtime_run_main): Record the main assembly
31126
31127         * debug-helpers.c: Fix typo
31128
31129 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
31130
31131         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
31132         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
31133
31134 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
31135
31136         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
31137
31138 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
31139
31140         * image.c (do_mono_image_open): Initialize reference count,
31141         otherwise we leak the MonoImage.
31142
31143 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
31144
31145         * reflection.c: small tweak to handle self-hosting.
31146
31147 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31148
31149         * reflection.c: fix type name parse code.
31150
31151 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
31152
31153         * reflection.c: break out of the loop.
31154         * image.c: special case corlib.
31155
31156 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
31157
31158         * reflection.c: add all the custom attrs at the end to ensure the
31159         ctors have been properly initialized when the attributes are defined
31160         in the current assembly.
31161
31162 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31163
31164         * reflection.c: handle correctly multiple-nested types.
31165
31166 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
31167
31168         * row-indexes.h: fix typos.
31169         * reflection.c: adjust for typos and fix method_def_or_ref
31170         encoding in MethodImpl table.
31171
31172 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
31173
31174         * reflection.c: fix entry point patching (thanks Serge!).
31175
31176 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
31177
31178         * verify.c: add check for System.Exception
31179
31180 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
31181
31182         * image.c, class.c: minifix for code just c&p'ed.
31183         * reflection.c: warning fix.
31184         * object.h, loader.h, domain.c: load also StringBuilder.
31185
31186 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31187
31188         * marshal.h, marshal.c: some support code to handle complex marshaling.
31189
31190 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31191
31192         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
31193         Better signatures with vtable error dump.
31194
31195 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
31196
31197         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
31198
31199 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
31200
31201         * icall.c (ves_icall_Type_GetField): impl.
31202
31203 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31204
31205         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
31206         to retrieve a marshal description blob for a field or param.
31207
31208 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
31209
31210         * reflection.h, reflection.c: change order of nested type emission
31211         to avoid table corruption. The NestedTypes table is sorted.
31212         * icall.c: change order of GetConstructor results to workaround mcs bug.
31213
31214 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
31215
31216         * reflection.h, reflection.c: handle field and param marshal
31217         information.
31218
31219 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
31220
31221         * icall.c, marshal.c marshal.h: more Marshal class implementation.
31222
31223 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
31224
31225         * reflection.c: fix call convention.
31226
31227 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
31228
31229         * reflection.h, reflection.c: mono_image_get_memberref_token()
31230         takes a type instead of a class, now. Added
31231         mono_image_get_array_token() to create tokens for the special
31232         multi-dim array methods.
31233
31234 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31235
31236         * assembly.c: handle modules (no assembly table). Split
31237         loading references in its own function.
31238         * class.c: handle moduleref resolution scope.
31239         * image.c, image.h: cache module name in image.
31240
31241 2002-06-07  Martin Baulig  <martin@gnome.org>
31242
31243         * reflection.c (mono_image_get_type_info): Only add a class layout entry
31244         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
31245
31246 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
31247
31248         * icall.c: more signature fixes that used uint instead of int.
31249
31250 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31251
31252         * reflection.c: fixed signature of field refs.
31253
31254 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
31255
31256         * class.c, reflection.c: handle typerefs of nested types
31257         (both on read and when writing files).
31258
31259 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
31260
31261         * icall.c: fix method signatures that tried to workaround the previous
31262         typo, d'oh!
31263
31264 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
31265
31266         * debug-helpers.c: fix typo.
31267
31268 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
31269
31270         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
31271         rewrote the PE/COFF writing code (our programs are understood by the
31272         ms runtime, now).
31273
31274 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
31275
31276         * gc.c, gc.h, icall.c: weakreference support.
31277
31278 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
31279
31280         * Makefile.am, mono-config.c: use $(sysconfdir).
31281
31282 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
31283
31284         * icall.c: changed default precision of Double.ToString() to 15.
31285         Fixed memory leak. Unified with Single.ToString.
31286
31287 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
31288
31289         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
31290
31291 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31292
31293         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
31294         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
31295         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
31296         and myself.
31297
31298 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
31299
31300         * debug-symfile.c, sysmath.c: yet more compilation fixes.
31301
31302 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31303
31304         * reflection.c, socket-io.c: more compilation fixes.
31305
31306 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
31307
31308         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
31309         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
31310         unicode.c: warning and compiler compatibility fixes.
31311
31312 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
31313
31314         * class.h, metadata.c: fixed warnings/compilation errors.
31315
31316 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
31317
31318         * Makefile.am, mono-config.c, mono-config.h: configuration file
31319         support routines.
31320         * loader.c, loader.h: make Dll mapping configurable at runtime in the
31321         config file. Export methods to insert and lookup mappings.
31322
31323 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
31324
31325         * reflection.c: handle types and boxed objects in custom attr
31326         constructors.
31327
31328 2002-05-30  Martin Baulig  <martin@gnome.org>
31329
31330         * debug-symfile.c
31331         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
31332
31333 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
31334
31335         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
31336         to lookup the implmap row for a P/Invoke method.
31337         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
31338         P/Invoke method from the runtime on an as needed basis.
31339
31340 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
31341
31342         * metadata.c (mono_metadata_parse_signature): impl.
31343
31344 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
31345
31346         * class.c: handle .pack directive.
31347
31348 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31349
31350         * object.c: initialize static fields with RVA data.
31351
31352 2002-05-25  Martin Baulig  <martin@gnome.org>
31353
31354         * debug-symfile.c
31355         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
31356
31357 2002-05-24  Martin Baulig  <martin@gnome.org>
31358
31359         * debug-symfile.c
31360         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
31361         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
31362         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
31363
31364 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
31365
31366         * object.c: special case string ctros in invoke.
31367         * gc.c: silly whitespace changes.
31368
31369 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
31370
31371         * threadpool.[ch]: impl. a threadpool that can
31372         be used by mint and mono.
31373
31374 2002-05-22  Martin Baulig  <martin@gnome.org>
31375
31376         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
31377         The first argument is now a `MonoReflectionModuleBuilder *', the return
31378         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
31379         `methods' field to get the method builder.  The `token' argument is the
31380         unfixed token.
31381
31382         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
31383         invalid characters instead of g_assert_not_reached()ing.  This seems
31384         to be the behaviour of mscorlib.
31385
31386 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
31387
31388         * object.c (mono_runtime_invoke_array): applied patch from Rachel
31389         Hestilow to fix bug #25104
31390
31391 2002-05-21  Martin Baulig  <martin@gnome.org>
31392
31393         * debug-symfile.c (mono_debug_find_source_location): New function.
31394         Looks up an IL offset in the line number table and returns the source
31395         location as a string.
31396
31397 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31398
31399         * icall.c:
31400         (mono_double_ToStringImpl): changed %f by %g until we have something
31401         better.
31402
31403 2002-05-21  Nick Drochak  <ndrochak@gol.com>
31404
31405         * icall.c : Use different name for Math.Pow's icall.  Needed to check
31406         parameters first in C#.
31407
31408 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
31409
31410         * icall.c, reflection.h: added icall to get info about an event.
31411
31412 2002-05-20  Radek Doulik  <rodo@ximian.com>
31413
31414         * object.c (mono_value_box): don't use memcpy for boxing on BIG
31415         endian
31416         (mono_value_box): don't use memcpy for small sizes on
31417         architectures with unaligned access
31418
31419 2002-05-20  Martin Baulig  <martin@gnome.org>
31420
31421         * reflection.c (mono_reflection_setup_internal_class): Don't crash
31422         if `tb->parent == NULL'.
31423         (mono_reflection_create_internal_class): New function.  This is
31424         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
31425         for enum types.
31426
31427         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
31428         New interncall.
31429
31430 2002-05-19  Martin Baulig  <martin@gnome.org>
31431
31432         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
31433         argument to get the length, don't default to the array length.
31434
31435 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
31436
31437         * assembly.c (mono_assembly_setrootdir): New function used to
31438         override the MONO_ASSEMBLIES directory.
31439
31440 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
31441
31442         * icall.c: ValueType_GetHashCode() initialize local var.
31443
31444 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
31445
31446         * reflection.c: sort custom attributes table.
31447
31448 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
31449
31450         * reflection.c: support named args in custom attributes (write support).
31451
31452 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
31453
31454         * reflection.c: fix finally position calculation.
31455
31456 2002-05-15  Radek Doulik  <rodo@ximian.com>
31457
31458         * reflection.c: fixed endianess at many places
31459
31460         * icall.c (ves_icall_InitializeArray): comment out debug msg
31461
31462 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
31463
31464         * object.c (mono_unhandled_exception): new function to handle
31465         unhandled exceptions.
31466         (mono_unhandled_exception): call the UnhandledException event.
31467         (mono_runtime_delegate_invoke): impl.
31468
31469 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
31470
31471         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
31472         returns the RVA, not the direct pointer to the data. Handle the case
31473         when the class size is fixed.
31474
31475 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
31476
31477         * reflection.c: fix some endianess issues.
31478
31479 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
31480
31481         * object.c (mono_runtime_invoke): is now able to catch exceptions.
31482
31483         * threads.c (mono_thread_init): added a callback which is invoked
31484         at thread start.
31485
31486 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
31487         
31488         * icall.c: make GetHashCode return non-negative values.
31489
31490 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
31491
31492         * object.c, icall.c, gc.c: revert to address-based hashcode.
31493
31494 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
31495
31496         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
31497
31498 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
31499
31500         * icall.c, class.c: special case <Module>.
31501
31502 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
31503
31504         * icall.c: fix bug in GetNow().
31505
31506 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
31507
31508         * object.c (mono_runtime_class_init): make sure that we call all
31509         static class constructors.
31510
31511 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31512
31513         * reflection.c: sort methodsemantics table.
31514
31515 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31516
31517         * reflection.h, reflection.c: honour init locals setting.
31518
31519 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
31520
31521         * icall.c: copied Double ToStringImpl for Single ToStringImpl
31522
31523 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
31524
31525         * reflection.c: support ContructorBuilders in attribute blob creation.
31526
31527 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
31528
31529         * reflection.c: some changes to build a binary that can be run
31530         directly in windows.
31531
31532 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
31533
31534         * loader.c: print a big message when an icall can't be found.
31535
31536 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31537
31538         * string-icalls.c: fix bug 24248.
31539
31540 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
31541
31542         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
31543         icall.c, reflection.h: separate assembly loading by pathname and by
31544         assembly name. Use the MONO_PATH env var to search for assemblies.
31545
31546 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
31547
31548         * assembly.c, image.h: add some support for assemblies
31549         with multiple modules.
31550         * class.c, class.h: export mono_class_from_typeref().
31551         * loader.c: remove duplicated code and use mono_class_from_typeref(),
31552         instead.
31553
31554 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
31555
31556         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
31557         documentation says (the ECMA one is correct).
31558
31559 2002-05-02  Dick Porter  <dick@ximian.com>
31560
31561         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
31562         Don't name the synchronisation mutex.
31563
31564 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
31565
31566         * rand.c
31567         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
31568         Make the prototypes match.
31569         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
31570         Same.
31571
31572         * icall.c
31573         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
31574         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
31575         all systems have tm.tm_zone, so use strftime() with %Z to print
31576         the timezone abreviation into a temp string.
31577
31578         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
31579         rather than mono_array_addr() on a MonoString on Big Endian
31580         machines.
31581
31582 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
31583
31584         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
31585         fix bug 24041
31586
31587 2002-04-30  Dick Porter  <dick@ximian.com>
31588
31589         * socket-io.c: Cope with SOCKET being an integer rather than a
31590         pointer now.
31591
31592         * threads.c: Added Thread_free_internal, to deal with thread
31593         handle cleanup.  Moved calls to handle_store() and handle_remove()
31594         to start_wrapper(), so each can only be called once.  Allocate
31595         synchronisation blocks with GC_malloc(), and use GC finalisation
31596         to close the handles.
31597
31598         * icall.c: added System.Threading.Thread::Thread_free_internal
31599
31600 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
31601
31602         * icall.c: support Environment.Exit, CommandLineArgs().
31603
31604 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
31605
31606         * object.c, object.h: added mono_runtime_run_main () and
31607         mono_runtime_get_main_args () for use in System.Environment.
31608
31609 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
31610
31611         * gc.c: fix thinko, enable actual finalization since the jit is now
31612         fixed.
31613
31614 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
31615
31616         * gc.c, object.c: take into account that an object may be offset wrt the address
31617         returned by GC_malloc().
31618
31619 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
31620
31621         * image.c: handle files without entries in the assembly table (modules).
31622
31623 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
31624
31625         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
31626         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
31627         allowed to be null when it's System.Object class setup.
31628
31629 2002-04-27  Martin Baulig  <martin@gnome.org>
31630
31631         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
31632         if `tb->parent == NULL' rather than crashing.
31633
31634 2002-04-28  Nick Drochak  <ndrochak@gol.com>
31635
31636         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
31637         calling acos() where asin() should have been called.
31638
31639 2002-04-26  Martin Baulig  <martin@gnome.org>
31640
31641         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
31642         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
31643         there's a subdirectory called `System', but we don't want to read that
31644         subdirectory as an assembly.
31645
31646 2002-04-25  Martin Baulig  <martin@gnome.org>
31647
31648         * debug-symfile.c: Reflect latest MonoString changes.
31649
31650 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
31651
31652         * rand.c, rand.h: instance method icalls need to have an explicit
31653         this pointer as first argument in the C implementation.
31654
31655 2002-04-25  Nick Drochak <ndrochak@gol.com>
31656
31657         * icall.c: Fix typo in map for GetNonZeroBytes
31658
31659 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
31660
31661         * string-icalls.c : String does now passes unit tests without any 
31662         errors, the following changes has been made:
31663         
31664         Implemented replace methods.
31665         Renaming of methods to (try) follow the standard.
31666         Fixed compare ordinal
31667         Made all memory allocated directly to function instead of via icall function.
31668         Small performance fix in is_in_array function
31669                         
31670  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
31671
31672         c (mono_string_Internal_ctor_charp_int_int):
31673         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
31674         sindex < 0, throw ArgumentOutOfRangeException instead of
31675         ArgumentNullException.
31676
31677         Added new check for length == 0, however
31678         I need to make it return String.Empty from the C code.
31679         
31680         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
31681         that calculate the length for us here.
31682         
31683         (mono_string_Internal_ctor_sbytep_int_int): Replaced
31684         mono_string_new_utf16 with mono_string_new, since value is utf8.
31685
31686 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
31687
31688         * object.c: register the object for finalization if needed.
31689         Allocate one more char in the string for the terminating 0 char.
31690
31691 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
31692
31693         * class.c, class.h, image.c: check if a type implemenst a destructor.
31694         Use the proper key for array class lookups.
31695         * icall.c: register the icalls in the System.GC class.
31696         * gc.c, gc.h: GC-related functions and icalls.
31697
31698 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31699
31700         * icall.c:
31701         * socket-io.c:
31702         * unicode.c: free some strings gotten from mono_string_to_utf8 and
31703         changed a couple of free () by g_free ().
31704
31705         * decimal.c: one-liner in the comments for decimal2string ().
31706
31707 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
31708
31709         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
31710
31711 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
31712
31713         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
31714         * object.c (mono_runtime_invoke_array) : handle null in params
31715
31716 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
31717
31718         * string-icalls.c: fixed bug in split (one off bug)
31719
31720 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
31721
31722         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
31723         * icalls.c: added String::Equals as internal method
31724
31725 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
31726
31727         * threads.c: fixed bug in the double interlocked functions
31728
31729 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
31730
31731         * threads.c: implemented all of the new interlocked icalls.
31732         * string-icalls.c: fix a bug in insert.
31733         * icalls.c: added the icalls for interlocked, removed old string functions.
31734         
31735 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
31736
31737         * loader.c: fix off-by-one error when reading argument names.
31738
31739 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
31740
31741         * profiler.c: win32 counter implementation (untested).
31742         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
31743         (the latter needs testing and more complete impl. from win32 folks).
31744
31745 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
31746
31747         * object.c: mono_array_new_full workaround mono_array_class_get
31748         problem.
31749
31750 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
31751
31752         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
31753         * object.h (mono_string_chars): Changed casting type.
31754
31755 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
31756
31757         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
31758                            method signatures to use gunichar2 instead of gint16.
31759
31760 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
31761
31762         * object.h, object.c: domain-specific versions of mono_object_new and
31763         mono_array_new.
31764
31765 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
31766
31767         * object.c: changed String layout
31768
31769         * string-icalls.c (mono_string_Internal_ctor_chara): added
31770         internal string constructors.
31771
31772 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
31773
31774         * threads.c: pass 'this' to the thread start routine.
31775
31776 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31777
31778         * string-icalls.c: fix IndexOf and LastIndexOf. Now
31779         InternalCompareStr don't call twice mono_string_cmp_char for the last
31780         character. Improved performance in mono_string_cmp_char.
31781
31782 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
31783
31784         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
31785         code into its own library: libmonoruntime.
31786
31787 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
31788
31789         * object.h, object.c: changed array format so that szarrays do not
31790         require a bounds structure.
31791         * icall.c, appdomain.c: support for new szarray format.
31792
31793 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
31794
31795         * metadata.c: compare also the retuns type when comparing signatures:
31796         we didn't do this as an optimization since really overloaded methods
31797         must differ also in the arguments, but this doesn't work with
31798         low-level IL code (or when using explicit conversion operators: see
31799         bug#23498 for an example).
31800
31801 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
31802
31803         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
31804
31805 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
31806
31807         * icall.c: make MonoType::GetElementType its own icall.
31808
31809 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
31810
31811         * icall.c: remove MonoMethod_get_Name().
31812         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
31813         object.
31814
31815 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
31816
31817         * string-icalls.c: optimized a few methods.
31818
31819 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
31820
31821         * icall.c: added all new string internal calls
31822         * string-icalls.c: added, new string internal call implementation.
31823         * object.c: added mono_string_new_size for allocating a string a size
31824
31825 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
31826
31827         * object.c (mono_object_isinst): use the same code as in the
31828         optimized x86 version.
31829
31830 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
31831
31832         * profiler.c: TSC-based timer code (faster and more accurate).
31833         Not hooked up in configure, yet (set USE_X86TSC to 1).
31834
31835 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
31836
31837         * profiler.c, profiler.h: track time spent compiling methods.
31838         * threads.c: track thread creation/destruction.
31839
31840 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
31841
31842         * profiler.c, profiler.h, profiler-private.h: profiling interface
31843         and sample implementation. Moved here so that it can be used also by
31844         the jit.
31845
31846 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
31847
31848         * reflection.c, reflection.h: keep types and other handles separate in
31849         the hash tables for referred tokens. Add guid for modules.
31850
31851 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
31852
31853         * assembly.c: fix bugs found with valgrind.
31854         * metadata.h, metadata.c: added mono_metadata_guid_heap().
31855
31856 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
31857
31858         * threads: added icall support for getting current domain for
31859                    the thread.
31860  
31861 2002-04-13  Martin Baulig  <martin@gnome.org>
31862
31863         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
31864         (MonoDebugVarInfo): Added `index' field for register based addresses.
31865         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
31866         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
31867         `MonoDebugVarInfo *params' and `guint32 this_offset' with
31868         `MonoDebugVarInfo *this_var'.
31869
31870         * debug-symfile.c (relocate_variable): New static function to write
31871         a location description for a local variable or method parameter.
31872
31873 2002-04-12  Martin Baulig  <martin@gnome.org>
31874
31875         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
31876         stack offset and begin/end scope address of a local variable.
31877         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
31878         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
31879         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
31880
31881         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
31882         Added new relocation types for start/end scope of a local variable.
31883
31884 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
31885
31886         * object.h: add mono_object_domain() macro.
31887         * reflection.c: handle typespecs.
31888         * icall.c: MonoMethod::get_Name() implementation.
31889
31890 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
31891
31892         * icall.c: String::GetHashCode() icall implementation.
31893
31894 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31895
31896         * icall.c: String::IndexOfAny icall.
31897         * object.c, object.h: make array->max_length more useful.
31898         Intrduced mono_object_class() and mono_string_length() macros.
31899
31900 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31901
31902         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
31903         instead of g_unichar_isdigit.
31904
31905 2002-04-11  Nick Drochak  <ndrochak@gol.com>
31906
31907         * icall.c: Implement a simple Double.ToString().
31908
31909 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
31910
31911         * appdomain.h: only io-layer.h is supposed to be included.
31912         * icall.c: explicitly import environ. Fix warning.
31913
31914 2002-04-10  Nick Drochak  <ndrochak@gol.com>
31915
31916         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
31917                 return true even if it's not Daylight Savings time.
31918                 Only return false for the case where the function isn't
31919                 implemented for a plaform (read Windows).
31920
31921 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31922
31923         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
31924         data with a mutex.
31925
31926 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
31927
31928         * mempool.c (mono_mempool_alloc): only use g_malloc when
31929         absolutely necessary.
31930
31931 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
31932
31933         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
31934
31935         * class.c (mono_class_vtable): use domain mempool to allocate vtable
31936         (mono_class_proxy_vtable): use domain mempool
31937
31938 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
31939
31940         * appdomain.h, appdomain.c: split initialization that requires the
31941         execution engine support into mono_runtime_init().
31942
31943 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
31944
31945         * class.c (mono_class_init): don't include vtable inside MonoClass
31946         to save some memory, gather some statistics.
31947         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
31948
31949 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
31950
31951         * icall.c: internalcall implementation for ValueType.Equals().
31952
31953 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
31954
31955         * object.c (mono_message_init): moved 
31956         (mono_runtime_exec_main): new arch. independent impl.
31957         (mono_runtime_invoke_array): new method - like
31958         mono_runtime_invoke, but you can pass an array of objects.
31959         (mono_remoting_invoke): new arch. independent impl.
31960         (mono_message_invoke): new arch. independent impl.
31961         (mono_runtime_class_init): new arch. independent impl.
31962         (mono_runtime_object_init): new arch. independent impl.
31963
31964 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
31965
31966         * metadata.c, object.c, reflection.c: documented the exported
31967         functions.
31968
31969 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
31970
31971         * icall.c: simpler code to pass the assembly builder data to corlib.
31972         Implement GetNestedTypes() internalcall.
31973
31974 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
31975
31976         * class.c: warn if a type can't be loaded.
31977
31978 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
31979
31980         * image.h: typedef MonoImageOpenStatus
31981         * types.h: removed unused file
31982         
31983 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
31984
31985         * icall.c: Enum_ToObject accepts enum value arguments.
31986
31987 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
31988
31989         * class.c: move initialization of properties, events and nested
31990         classes, so that they happen for interfaces, too.
31991
31992 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
31993
31994         * icall.c: cleanup some ugly casts in Array_SetValue*.
31995
31996 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
31997
31998         * icall.c: the values array fro enums is of the correct type, now.
31999         Implement (correctly) getFullName instead of assQualifiedName for
32000         MonoType.
32001         * reflection.h, reflection.c: added mono_type_get_name ().
32002
32003 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32004
32005         * assembly.c, image.h: for each MonoImage, record from wich assembly
32006         it was loaded.
32007         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
32008         Make Type.Assembly work.
32009
32010 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
32011
32012         * debug-symfile.h: use char* instead of gpointer to avoid
32013         unnecessary casts.
32014
32015         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
32016
32017         * icall.c (ves_icall_InternalExecute): impl. FielSetter
32018         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
32019
32020 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
32021
32022         * icall.c (mono_message_init): impl. (code cleanup)
32023         (ves_icall_InternalExecute): impl. FieldGetter
32024
32025         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
32026         defined we call all (non-static)methods through the vtable. 
32027
32028 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
32029
32030         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
32031         finalizer even though the memory is still referenced (and the chunk of
32032         memory is not freed).
32033
32034 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
32035
32036         * assembly.c: fix brokeness.
32037
32038 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
32039
32040         * class.c: kill some warnings. Check explicit interface method
32041         implementation also without considering the namespace.
32042         Load also literal strings in static class data.
32043
32044 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
32045
32046         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
32047         (default_assembly_name_resolver): Make the resolver take the
32048         "base" directory where the assembly was originally defined, so we
32049         can load DLLs that are in the same directory as the assembly that
32050         is being referenced.
32051
32052 2002-03-28  Dick Porter  <dick@ximian.com>
32053
32054         * file-io.h: 
32055         * file-io.c:
32056         * socket-io.c: 
32057         * unicode.h: 
32058         * unicode.c: Warning cleanups
32059
32060 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
32061
32062         * object.h, reflection.h: use the correct type instead of MonoObject.
32063
32064 2002-03-28  Martin Baulig  <martin@gnome.org>
32065
32066         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
32067         (mono_debug_update_symbol_file): Initialize classes if necessary.
32068
32069 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
32070
32071         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
32072         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
32073
32074 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
32075
32076         * assembly.h: fix function prototype.
32077         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
32078         * mono-endian.h: use const cast.
32079
32080 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
32081
32082         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
32083
32084 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
32085
32086         * loader.c: don't assert when a typeref can't be loaded, give
32087         a chance to the runtime to trow an exception instead.
32088         * loader.h: fix warning.
32089
32090 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
32091
32092         * class.c (mono_class_proxy_vtable): added proxy support
32093
32094 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
32095
32096         * icall.c: removed last of PAL calls, added System.Environment
32097         * file-io.h, file-io.c: MonoIO implementation
32098         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
32099
32100 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
32101
32102         * appdomain.c: do not use the byte marker in ldstr table lookup.
32103         * debug-helpers.c: allow two ':' to separate class and method name.
32104         * object.c: allocate arrays bounds with the GC, too.
32105         * verify: add a few more checks.
32106
32107 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
32108
32109         * reflection.c: output also literal strings. Allocate parameter data
32110         with GC_malloc() (thanks, Martin, for catching this!).
32111
32112 2002-03-26  Martin Baulig  <martin@gnome.org>
32113
32114         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
32115         include the `this' offset in the `param_offsets'.
32116
32117 2002-03-25  Martin Baulig  <martin@gnome.org>
32118
32119         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
32120         mono_debug_get_class() function to get the classes. Added new
32121         relocation types for arrays and strings.
32122         (mono_debug_get_class): New static function to search in all
32123         referenced assemblies for a metadata token.
32124
32125         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
32126
32127 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
32128
32129         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
32130         hold gc-allocated objects. Make the string heap a stream like the
32131         others. Removed duplicated code when writing stream info.
32132         Added asserts to catch possible buffer overflows. Set the sorted map
32133         for tables that need sorting. Added some documentation.
32134
32135 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
32136
32137         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
32138         for interned strings and vtables.
32139
32140 2002-03-24  Martin Baulig  <martin@gnome.org>
32141
32142         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
32143         it in the array since it was created with g_slist_prepend().
32144
32145 2002-03-24  Martin Baulig  <martin@gnome.org>
32146
32147         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
32148         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
32149         (mono_debug_method_from_token): Renamed to
32150         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
32151         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
32152
32153         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
32154         relocation types.
32155
32156         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
32157
32158 2002-03-24  Martin Baulig  <martin@gnome.org>
32159
32160         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
32161         (mono_debug_method_from_token): New func.
32162
32163         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
32164         New interncall, calls mono_debug_local_type_from_signature().
32165         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
32166         calls mono_debug_method_from_token().
32167
32168 2002-03-23  Martin Baulig  <martin@gnome.org>
32169
32170         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
32171         specifies the number of bytes to be converted, not the array size.
32172         Return the number of chars, not the number of bytes.
32173         (ves_icall_iconv_get_chars): The `byteCount' argument
32174         specifies the number of bytes to be converted, not the array size.
32175
32176 2002-03-23  Martin Baulig  <martin@gnome.org>
32177
32178         * reflection.h (MonoReflectionSigHelper): New type.
32179
32180         * reflection.c (mono_reflection_sighelper_get_signature_local),
32181         (mono_reflection_sighelper_get_signature_local): New functions.
32182
32183         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
32184         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
32185         interncalls.
32186
32187 2002-03-23  Martin Baulig  <martin@gnome.org>
32188
32189         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
32190         is_writeable is set.
32191         (mono_raw_buffer_update): New function to write the modified map
32192         back to disk.
32193
32194         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
32195
32196         * debug-symfile.c (mono_debug_update_symbol_file): Call
32197         mono_raw_buffer_update() when done writing.
32198
32199 2002-03-23  Martin Baulig  <martin@gnome.org>
32200
32201         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
32202
32203         * debug-symfile.c: Added support for arguments and local variables.
32204
32205 2002-03-23  Dick Porter  <dick@ximian.com>
32206
32207         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
32208         protected by ifdefs, hence breaking the w32 build.
32209
32210 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
32211
32212         * object.c: implement is_interned() the right way.
32213
32214 2002-03-21  Martin Baulig  <martin@gnome.org>
32215
32216         * debug-symfile.[ch]: New files to handle debugging information
32217         files. There's also support to dynamically update these symbol
32218         files to include machine dependent information.
32219
32220 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
32221
32222         * threads.c (mono_thread_create): new function to create thread
32223         from C
32224
32225 2002-03-20  Martin Baulig  <martin@gnome.org>
32226
32227         * icall.c (ves_icall_InternalInvoke): Create a new object if the
32228         method is a constructor.
32229         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
32230         points to ves_icall_InternalInvoke().
32231
32232 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
32233
32234         * file-io.c: Flush shouldn't throw exceptions.
32235
32236 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
32237
32238         * file-io.c: FileStream flush support; FileSetLength now
32239         restores file pointer.
32240
32241 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
32242
32243         * class.c: set image for pointer classes.
32244
32245 2002/03/19  Nick Drochak <ndrochak@gol.com>
32246
32247         * sysmath.c: Forgot one.
32248
32249 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
32250
32251         * sysmath.c: Avoid redefining existing names.
32252
32253 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
32254
32255         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
32256         handled by runtime as icall rather than dllimport from libm.so
32257         * file-io.c, file-io.h: fixed handle argument type.
32258
32259 2002-03-18  Dick Porter  <dick@ximian.com>
32260
32261         * reflection.c (mono_image_get_type_info): rename interface to
32262         iface, because of "#define interface struct" on windows.
32263
32264 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
32265
32266         * class.c, class.h: rename and export mono_ptr_class_get().
32267         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
32268         * reflection.c, reflection.h, icall.c: better/saner type name
32269         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
32270         method signatures.
32271
32272 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
32273
32274         * class.c (mono_class_init): removed hardcoded GHC_SLOT
32275
32276         * icall.c (ves_icall_InternalInvoke): impl.
32277
32278 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
32279
32280         * reflection.c: output the interface map table, too.
32281
32282 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
32283
32284         * class.c (class_compute_field_layout): separate computation of 
32285         static field layout
32286
32287 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
32288
32289         * icall.c: added System.Buffer support.
32290         * file-io.c: moved file icalls from PAL to FileStream.
32291
32292 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
32293
32294         * icall.c (ves_icall_System_Object_GetHashCode): impl.
32295
32296 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
32297
32298         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
32299
32300 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
32301
32302         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
32303
32304 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
32305
32306         * debug-helpers.{c,h}: moved here from monograph some useful functions
32307         to locate a method by name/signature in a class or image. Included
32308         also a small and flexible IL disassembler.
32309
32310 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
32311
32312         * reflection.c: fixup tokens in methods with small header size, too.
32313
32314 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
32315
32316         * object.c (mono_string_to_utf8): remove assert(!error), instead
32317         print a warning. 
32318
32319 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
32320
32321         * icall.c: update to the new mono_Array_class_get interface.
32322
32323 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
32324
32325         * appdomain.c, object.c: Boehm-GC enable.
32326         * icall.c: make get_data_chunk() support split data requests.
32327         Ensure a class is initialized in more cases. Return only the first
32328         property found in GetProperties() or the compiler gets confused. 
32329         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
32330         * reflection.h, reflection.c: add fixup mechanism for field and method
32331         tokens. Initialize assembly->typeref in a single place. Output
32332         properties after events. Support custom attributes for events, too.
32333         Typo fix for paramter custom attrs.
32334
32335 2002-03-07  Martin Baulig  <martin@gnome.org>
32336
32337         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
32338
32339 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
32340
32341         * class.c (mono_array_class_get): fix. for multi. dim. arrays
32342
32343 2002-03-06  Martin Baulig  <martin@gnome.org>
32344
32345         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
32346         non-zero lower bounds. See testcases #F10-#F13.
32347
32348 2002-03-05  Martin Baulig  <martin@gnome.org>
32349
32350         * exception.c (mono_get_exception_argument_out_of_range): New exception.
32351
32352         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
32353         ves_icall_System_Array_GetValue(), only calculate the absolute array position
32354         here.
32355         (ves_icall_System_Array_SetValue): Likewise.
32356         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
32357         as argument and does the actual work. This function is used when copying a
32358         multi-dimensional array.
32359         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
32360         now do all the widening conversions of value types.
32361         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
32362
32363 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
32364
32365         * class.c: remove some magic numbers and use the smbolic names,
32366         instead. Added init_events() to load event info at class init time.
32367         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
32368         and mono_metadata_methods_from_event().
32369         * reflection.h, reflection.c: added support for writing out the evnets
32370         related information.
32371
32372 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
32373
32374         * reflection.h, icall.c: use a different method (GetInterfaces)
32375         to gather interface info and add isbyref, isprimitive and
32376         ispointer to the ves_icall_get_type_info() return value.
32377
32378 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
32379
32380         * class.h: stared adding support for events.
32381         * icall.c: split find_members implementation. Added debug icall to get
32382         the address of an object.
32383         * reflection.c: handle TypeBuilders in mono_type_get_object().
32384
32385 2002-03-01  Martin Baulig  <martin@gnome.org>
32386
32387         * icall.c (ves_icall_System_Array_GetLength): This must throw an
32388         ArgumentOutOfRangeException(), not an ArgumentException().
32389         (ves_icall_System_Array_GetLowerBound): Likewise.
32390         (ves_icall_System_Array_GetValue): Improved argument checking.
32391         (ves_icall_System_Array_SetValue): Improved argument checking.
32392
32393 2002-03-01  Martin Baulig  <martin@gnome.org>
32394
32395         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
32396         called with invalid arguments rather than just dying with g_assert().
32397         (ves_icall_System_Array_SetValue): Likewise.
32398         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
32399         raise a NotImplementedException instead.
32400         (ves_icall_System_Array_GetLength): Added argument checking.
32401         (ves_icall_System_Array_GetLowerBound): Added argument checking.
32402
32403 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
32404
32405         * object.h (mono_assert): new macros mono_assert and
32406         mono_assert_not_reached
32407
32408 2002-02-28  Martin Baulig  <martin@gnome.org>
32409
32410         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
32411         and "System::String::IsInterned" to "System::String::_IsInterned".
32412
32413 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
32414
32415         * icall.c: remove hacks for typebuilder. Added icall to create a
32416         modified type from a tybebuilder.
32417         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
32418         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
32419         to create a backing MonoClass for a TypeBuilder.
32420
32421 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
32422
32423         * class.c, class.h: more refactoring of class init.
32424         Export mono_class_setup_mono_type() and mono_class_setup_parent().
32425
32426 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
32427
32428         * marshal.c, marshal.h: start of marshaling interface.
32429
32430 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
32431
32432         * icall.c: fix order in assembly qualified name icall.
32433
32434 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
32435
32436         * class.c: do not free str, since we store it in the hash table.
32437         * reflection.h: add label field to MonoILExceptionInfo.
32438         * reflection.c: handle references to more than one assembly. Handle
32439         case when there isn't a module created in the assembly.
32440
32441 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
32442
32443         * class.c: Fix typo. Start refactoring of class init code.
32444
32445 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
32446
32447         * appdomain.c: exit with 1 on error.
32448         * class.c: we already have the name in MonoClassField.
32449         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
32450         MonoStreamHeader instead of an offset of image->raw_metadata.
32451
32452 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
32453
32454         * appdomain.c (mono_init): Be even more descriptive about the error.
32455
32456 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
32457
32458         * appdomain.c: give the user an informative message when corlib can't
32459         be loaded.
32460
32461 2002-02-26  Martin Baulig  <martin@gnome.org>
32462
32463         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
32464         New icall to get the time zone data.
32465
32466 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
32467
32468         * reflection.c: set virtual and raw size of section correctly.
32469         * threads.c: transfer domain information to newly created threads.
32470
32471 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
32472
32473         * class.c: when instancing a class in a domain, load the default
32474         vaules for static fields from the constant table. Fix System.Enum to
32475         not be an enum.
32476         * icall.c: implement Object::GetType() internalcall. Implemented
32477         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
32478         Fixed checking of binding flags in find_members().
32479         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
32480         * reflection.c: handle enumerations when writing to the constant
32481         table. Use a different object cache for types.
32482
32483
32484 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
32485
32486         * object.c (mono_object_isinst): fix for arrays
32487
32488         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
32489
32490 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
32491
32492         * object.c: don't use mprotect ()  and fix intern pool hash table
32493         lookup for big endian systems.
32494
32495 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
32496
32497         * icall.c: change type_is_subtype_of () signature.
32498
32499 2002-02-21  Mark Crichton  <crichton@gimp.org>
32500
32501         * rand.c, rand.h: Added random number generator for
32502         System.Security.Cryptography classes.
32503
32504         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
32505
32506         * icall.c: Added System.Security.Cryptography calls.
32507
32508 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
32509
32510         * class.c, icall.c, metadata.c: better support for pointer types.
32511         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
32512         * reflection.c: Add support for getting custom attrs for properties
32513         and simplify some code.
32514
32515 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
32516
32517         * icall.c: change getToken () and add custom attribute GetBlob()helper
32518         method.
32519         * reflection.h: add custom attrs array to the reflection builder structures.
32520         * reflection.c: encode and emit custom attributes for all the relevant
32521         reflection objects. Cache fieldref and methodref tokens. Change
32522         mono_image_create_token() interface to take a MonoDynamicAssembly.
32523         More complete custom attributes decoder. Load custom attributes for
32524         Assembly, Field, Method and Constructor objects, too. Make the
32525         returned array an Attribute[] one, not object[]. Added
32526         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
32527         custom attribute constructor.
32528
32529 2002-02-20  Dick Porter  <dick@ximian.com>
32530
32531         * icall.c:
32532         * rawbuffer.c:
32533         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
32534         problem code out for now).
32535
32536 2002-02-19  Radek Doulik  <rodo@ximian.com>
32537
32538         * object.c (mono_ldstr): use hash table to avoid multiple swapping
32539
32540 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
32541
32542         * icall.c: register the GetCustomAttributes method.
32543         * object.c, object.h: add mono_string_new_len ().
32544         * reflection.h, reflection.c: added mono_runtime_invoke(),
32545         mono_install_runtime_invoke(). Added
32546         mono_reflection_get_custom_attrs () to load custom attributes and
32547         create the attribute objects.
32548
32549 2002-02-19  Dick Porter  <dick@ximian.com>
32550         * threads-dummy-types.c:
32551         * threads-dummy-types.h:
32552         * threads-dummy.c:
32553         * threads-dummy.h:
32554         * threads-pthread-types.c:
32555         * threads-pthread-types.h:
32556         * threads-pthread.c:
32557         * threads-pthread.h:  Deleted obsolete files
32558
32559 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
32560
32561         * class.c (mono_class_vtable): runtime init the class when we
32562         allocate static class data.
32563
32564         * icall.c (ves_icall_System_Array_SetValue): check for null values.
32565
32566         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
32567         and String - but we will need generic marshalling support in the
32568         future. 
32569         (mono_init): set the domain name in a ms compatible way
32570
32571         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
32572         String[].
32573
32574 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
32575
32576         * object.c (mono_array_clone): use alloca() instead of g_malloc  
32577         for sizes
32578
32579         * appdomain.c (mono_domain_unload): impl.
32580
32581 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
32582
32583         * appdomain.c, object.c: fix intern pool implementation.
32584         * class.c: fix alignment code.
32585
32586 2002-02-16  Radek Doulik  <rodo@ximian.com>
32587
32588         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
32589         and s2 > s1, just copy lower bytes to be compatible with little
32590         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
32591         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
32592
32593         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
32594         force big_endian to be 1 for big endian machines 
32595         (ves_icall_iconv_new_decoder): ditto
32596
32597 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
32598
32599         * socket-io.c (convert_sockopt_level_and_name): If the system
32600         doesn't define SOL_IP or SOL_TCP, get them by hand using
32601         getprotobyname() and caching the values (because this could be a
32602         slow operation).
32603         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
32604         Use the appropriate struct when the system does support it. Ie,
32605         not all systems have struct ip_mreqn so use struct ip_mreq when
32606         appropriate.
32607
32608 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
32609
32610         * reflection.c: handle finally clauses.
32611
32612 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
32613
32614         * socket-io.c: use g_snprintf() instead of snprintf.
32615
32616 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
32617
32618         * reflection.c (mono_param_get_objects): Cast second argument to
32619         mono_method_get_param_names to a const char** to silence the
32620         compiler warning.
32621
32622         * appdomain.c (mono_domain_assembly_open): Put parens around the
32623         truth statement in the for-loop.
32624
32625         * unicode.c (iconv_convert): Got rid of a compiler warning about
32626         int i being unused when the system has a new iconv.
32627         (iconv_get_length): Same.
32628
32629         * image.c (load_class_names): Cast the second argument to
32630         g_hash_table_insert() to char* to hush compiler warnings about the
32631         arg being a const.
32632         (mono_image_open): Same here.
32633
32634         * socket-io.c: Don't conditionally include sys/filio.h or
32635         sys/sockio.h here anymore since we now get them from
32636         io-layer/io-layer.h
32637         (inet_pton): If the system doesn't support inet_aton, implement
32638         using inet_addr and also #define INADDR_NONE if it isn't defined
32639         by the system.
32640
32641 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
32642
32643         * metadata.c, metadata.h: added function to get packing and size info
32644         of a typedef.
32645         * reflection.h, reflection.c: handle field RVA data. Save info about
32646         the table layout if needed. Assign typedef indexes to all the types
32647         before dumping the info about them to avoid forward reference problems.
32648
32649 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
32650
32651         * socket-io.c (convert_sockopt_level_and_name): ifdef
32652         SO_ACCEPTCONN because it is not defined on my system (old debian)
32653
32654 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
32655
32656         * opcode.c: use stddef.h to get NULL.
32657
32658 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
32659
32660         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
32661         for FIONBIO, FIONREAD and SIOCATMARK.
32662         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
32663         define INADDR_NONE and besides, inet_addr() is deprecated and
32664         should not be used. Use inet_pton() instead - it also has the
32665         added bonus that it can easily handle IPv6 addresses as well.
32666         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
32667
32668 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
32669
32670         * decimal.c: remove _MSC_VER conditional.
32671
32672 2002-02-13  Dick Porter  <dick@ximian.com>
32673
32674         * socket-io.c: 
32675         * icall.c: Internal calls for Blocking, Select, Shutdown,
32676         GetSocketOption and SetSocketOption
32677
32678 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
32679
32680         * assembly.cs: better resolver: use it instead of some kludgy
32681         code.
32682
32683 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
32684
32685         * reflection.c: the best way to speed-up the compiler is to avoid
32686         infinite loops.
32687
32688 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
32689
32690         * class.c (mono_class_vtable): changed the object layout
32691         (obj->vtable->class). 
32692         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
32693
32694 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
32695
32696         * assembly.c: look for assemblies in the assembly dir, too.
32697
32698 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
32699
32700         * class.c: fix thinko in mono_class_from_type().
32701
32702 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
32703
32704         * exception.h, exception.c: added TypeLoadException.
32705         * object.h, object.c: added mono_array_clone ().
32706         * icall.c: handle throwOnError in AssemblyGetType().
32707         Added Array.Clone().
32708         * opcode.h, opcode.c: use a single value for the opcode val.
32709         Compile fix for non-gcc compilers.
32710
32711 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
32712
32713         * opcodes.c, opcodes.h: export interesting info about opcodes.
32714
32715 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
32716
32717         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
32718         icalls. 
32719
32720         * class.c (class_compute_field_layout): set element_class for enums
32721         (mono_class_create_from_typedef): set element_class for normal classes
32722
32723         * icall.c (ves_icall_System_Enum_get_value): impl.
32724
32725         * class.c (mono_class_create_from_typedef): do not set valuetype
32726         flag for System.ValueType and System.Enum
32727
32728 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
32729
32730         * unicode.c (iconv_convert): fix big endian problem.
32731
32732 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
32733
32734         * class.c: add asserts if we are ever going to scribble over memory.
32735         * socket-io.c: not all systems have AF_IRDA defined.
32736
32737 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
32738
32739         * class.c (class_compute_field_layout): do not consider static
32740         fields to compute alignment
32741
32742 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
32743
32744         * appdomain.c (mono_appdomain_get): impl.
32745         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
32746
32747 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
32748
32749         * icall.c: ignore "file://" prefix when loading an assembly.
32750
32751 2002-01-23  Dick Porter  <dick@ximian.com>
32752
32753         * socket-io.c:
32754         * icall.c:
32755         * Makefile.am: Added socket support
32756
32757 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
32758
32759         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
32760         code back.  This should return the assemblies that are loaded by
32761         the runtime on behalf of an application domain. 
32762
32763         The current implementation is still broken, it just returns every
32764         assembly loaded, but until we get real applications domain this
32765         will do.
32766
32767 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
32768
32769         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
32770         AppDomain object.
32771
32772 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
32773
32774         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
32775         the mono_class_from_name lookup.
32776         (ves_icall_get_parameter_info): ditto.
32777         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
32778         method.
32779         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
32780
32781 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
32782
32783         * class.c: load also nested classes on class init.
32784         System.ValueType instance methods gets passed boxed
32785         values, unless methods in derived classed that get a pointer to the
32786         data.
32787         * icall.c: use better name parsing code in GetType().
32788         * image.c, image.h: add mono_image_loaded ().
32789         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
32790         * reflection.c, reflection.h: added mono_reflection_parse_type().
32791
32792 2002-01-22  Veronica De Santis <veron78@interfree.it>
32793
32794         * icall.c : Added mapping of internal calls for Manual and Auto reset events
32795         * threads.c : Added the implementation of internal calls for events
32796         * threads.h : Added prototypes of internal calls for events
32797         
32798 2002-01-21  Radek Doulik  <rodo@ximian.com>
32799
32800         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
32801
32802 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
32803
32804         * class.c (mono_class_init): set min_align to 1 (instead of 0)
32805         (mono_class_value_size): use min_align
32806
32807 2002-01-20  Dick Porter  <dick@ximian.com>
32808
32809         * threads.h:
32810         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
32811         so it compiles on w32.
32812
32813 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
32814
32815         * metadata.c (mono_type_stack_size): impl.
32816
32817         * class.c (mono_class_get_field): impl. memberref token
32818
32819 2002-01-16 Veronica De Santis <veron78@@interfree.it>
32820
32821         * icall.h : Added the internal calls mapping for CreateMutex_internal
32822                     and ReleaseMutex_internal.
32823         * threads.h : Added the prototype of mutexes internal calls.
32824         * threads.c : Added the implementations of mutexes internal calls.
32825
32826 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
32827
32828         * metaparse.h: removed unused file.
32829         * reflection.c, reflection.h: added stream_data_align () function 
32830         to align data in streams and keep stream aligned. Add support for
32831         exception support in method headers.
32832
32833 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
32834
32835         * unicode.c: make iconv_convert () return the number of bytess written
32836         in the output buffer.
32837
32838 2002-01-15  Dick Porter  <dick@ximian.com>
32839         * threads.c: Make the runtime's idea of infinite timeouts coincide
32840         with the class library's
32841
32842         Fix a particularly egregious bug in mono_thread_cleanup(). That
32843         code was so utterly bogus it must have been written on a Monday.
32844
32845 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
32846
32847         * reflection.h: add subtypes field to TypeBuilder.
32848         * reflection.c: encode constants for literal fields.
32849         Handle subtypes. Fix user string token (and add a zero byte)
32850         at the end.
32851         
32852 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
32853
32854         * class.c (mono_class_init): bug fix: assign slot numbers for
32855         abstract methods.
32856
32857 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
32858
32859         * reflection.c: don't try to output a code RVA for abstract methods.
32860         Small fixes for method header format. Output parameter info to the
32861         ParamDef table. Save method overriding info to MethodImpl table.
32862         Fix property support. Allow typedef.extends to be a type in the
32863         building assembly.
32864         * verify.c: fix off-by-one error.
32865
32866 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
32867
32868         * class.c: fix mono_class_from_mono_type () for szarray types.
32869         Remove unused cache check in mono_class_from_type_spec().
32870         * icall.c: *type_from_name () functions handle simple arrays and byref.
32871         * reflection.c: handle byref and szarray types. Handle methods without
32872         body (gets P/Invoke compilation working). Handle types and fields in
32873         get_token ().
32874         * reflection.h: add rank to MonoTypeInfo.
32875
32876 2002-01-10  Dick Porter  <dick@ximian.com>
32877
32878         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
32879         internal calls
32880
32881 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
32882
32883         * icall.c: initialize class in type_from_handle ().
32884         Loop also in parent classes for get_method ().
32885         * reflection.c: properly encode class and valuetype types.
32886         Start on encoding TypeBuilder types. Handle fieldrefs.
32887         Use correct length when registering a user string.
32888         Handle ConstructorBuilder and MonoMethod in get_token ().
32889         Make mono_type_get_object () aware of cached types.
32890         * object.c: back out change to mono_string_new ().
32891
32892 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
32893         * object.c: mono_string_new should return a NULL when the string 
32894         passed in is NULL -- not try to deference it.
32895         
32896 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
32897
32898         * icall.c: hack to make IsSubType work for TypeBuilders.
32899         * reflection.c: emit constructors before methods.
32900         Retrieve param names in mono_param_get_objects().
32901
32902 2002/01/05  Nick Drochak  <ndrochak@gol.com>
32903
32904         * Makefile.am: fix list of headers and sources so automake 1.5
32905         doesn't complain. Removed \# at end of list.
32906
32907 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
32908
32909         * reflection.c: get token for a method ref. Set return type of
32910         constructor to void.
32911         * loader.c: debug message.
32912         * class.c: typo fix.
32913
32914 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
32915
32916         * icall.c: fix array init with rank > 1. FindMembers
32917         loops in parent class as well.
32918         * image.c: do not insert nested types in name cache.
32919         * reflection.c: warning fix.
32920         * reflection.h: add override method (for interface impl).
32921
32922 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
32923
32924         * metadata.c: fix customattr decoding.
32925
32926 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
32927
32928         * rawbuffer.cs: Added native Win32 implementation, avoids using
32929         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
32930
32931 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
32932
32933         * class.c: make the low-level routines handle the cache.
32934
32935 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
32936
32937         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
32938
32939 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
32940
32941         * class.c: fix mono_array_element_size() for objects.
32942         * class.h, class.c: add properties to MonoClass and load them
32943         at init time.
32944         * icall.c: check with isinst() when assigning a value to an array
32945         instead of requiring the classes to match exactly.
32946         Implemented icall for System.Type::GetType().
32947         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
32948         enums. Handle bindingflags when looking for methods and fields.
32949         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
32950         and mono_metadata_methods_from_property().
32951         * reflection.h, reflection.c: added structures for propreties,
32952         parameters and enums. Implemented mono_property_get_object() and
32953         mono_param_get_objects().
32954
32955 2001-12-18  Dick Porter  <dick@ximian.com>
32956
32957         * file-io.c: Use mono_string_to_utf16() instead of
32958         mono_string_chars()
32959
32960         * object.c: Added mono_string_to_utf16(), which copies the non
32961         NULL-terminated MonoString into a new double-null-terminated
32962         buffer.
32963
32964 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
32965
32966         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
32967
32968 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
32969
32970         * file-io.c: raise exceptions if handle is invalid.
32971
32972 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
32973
32974         * assembly.c: yet another check for mscorlib.
32975         * class.c, class.h: load nesting info for classes.
32976         * icall.c: many new functions to support the Reflection classes.
32977         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
32978         * reflection.h, reflection.c: mono_image_create_token(),
32979         mono_assembly_get_object(), mono_type_get_object(),
32980         mono_method_get_object(), mono_field_get_object(): methods to return
32981         objects that parallel the C representation of assemblies, types,
32982         methods, fields.
32983
32984 2001-12-11  Dick Porter  <dick@ximian.com>
32985
32986         * icall.c:
32987         * file-io.c: Internal calls for file IO.
32988
32989 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
32990
32991         * tabledefs.h: missing FileAttributes.
32992         * verify.h, verify.c: use is_valid_string () to simplify and check for
32993         valid strings more correctly. Fix warnings and speeling.
32994         Check more tables: Filed, File, ModuleRef, StandAloneSig.
32995         Check code: branches, maxstack, method calls.
32996
32997 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
32998
32999         * object.c (mono_object_allocate): removed static, so that the jit
33000         can allocate value types.
33001
33002         * icall.c (ves_icall_System_DateTime_GetNow): impl.
33003
33004 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
33005
33006         * class.c: init enum types right away and register the
33007         token->MonoClass map in mono_class_create_from_typedef ().
33008         * verify.h, verify.c: first cut of the verifier.
33009         * pedump.c: add --verify switch to verify metadata tables.
33010         * tabledefs.h: add some missing enums.
33011
33012 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
33013
33014         * class.c (mono_install_runtime_class_init): impl.
33015         (mono_class_init): renamed mono_class_metadata_init to
33016         mono_class_init, also removed the metadata_inited flag
33017
33018         * object.c (mono_object_isinst): use faster algorithm
33019
33020 2001-11-30  Radek Doulik  <rodo@ximian.com>
33021
33022         * mono-endian.h: reverted last change
33023         added function prototypes
33024
33025         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
33026         add mono-endian.c back
33027
33028         * mono-endian.c: returned back, as Paolo pointed out, it's needed
33029         for unaligned access, I've mistaked it with endianess. I am
33030         sorry.
33031         (mono_read16): fix reverted endianess
33032         (mono_read64): ditto
33033         (mono_read32): ditto
33034
33035 2001-11-30  Dick Porter  <dick@ximian.com>
33036
33037         * exception.c: Implement mono_exception_from_name()
33038
33039 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
33040
33041         * metadata.h, metadata.c: remove params_size and locals_size and their
33042         calculation from the metadata code: they are only usefult to the
33043         interp.
33044
33045 2001-11-29  Radek Doulik  <rodo@ximian.com>
33046
33047         * object.c (mono_ldstr): swap bytes here, it's probably not the
33048         best place, but works for me now, I'll redo it once I know mono
33049         better, also note that I add PROT_WRITE and don't reset back, also
33050         note that it's only affects big endians, so x86 should be OK
33051
33052         * mono-endian.h (read16): use just glib macros for both endians
33053
33054         * mono-endian.c: removed as glib macros are used in in
33055         mono-endian.h so we don't need to care about endianess for read
33056         macros as glib does that for us already
33057
33058 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
33059
33060         * class.h, class.h: take minimum alignment into consideration so
33061         that the fields of a class remain aligned also when in an array.
33062
33063 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
33064
33065         * loader.h, loader.c: add mono_method_get_param_names().
33066         * class.c: 0-init class fields.
33067
33068 2001-11-26  Dick Porter  <dick@ximian.com>
33069
33070         * icall.c:
33071         * threads-types.h:
33072         * threads.c: New file that handles System.Threading on all platforms
33073
33074         * object.c: 
33075         * object.h: Remove the synchronisation struct from MonoObject,
33076         replace it with a pointer that gets initialised on demand
33077
33078         * Makefile.am: Replace all the system-specific threading code with
33079         a single file that uses the new wrapper library
33080
33081 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
33082
33083         * class.c, class.h: add mono_install_trampoline() so that the runtime
33084         can register a function to create a trampoline: removes the ugly
33085         requirement that a runtime needed to export arch_create_jit_trampoline.
33086         * object.h, object.c: added mono_install_handler() so that the runtime
33087         can install an handler for exceptions generated in C code (with
33088         mono_raise_exception()). Added C struct for System.Delegate.
33089         * pedump.c: removed arch_create_jit_trampoline.
33090         * reflection.c: some cleanups to allow registering user strings and
33091         later getting a token for methodrefs and fieldrefs before the assembly
33092         is built.
33093         * row-indexes.h: updates and fixes from the new ECMA specs.
33094
33095 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
33096
33097         * class.h, class.c: add enum_basetype field to MonoClass.
33098         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
33099         to get index in the constant table reated to a field, param or
33100         property.
33101         * reflection.h, reflection.c: handle constructors. Set public-key and
33102         version number of the built assembly to 0.
33103         * row-indexes.h: update from new ECMA spec.
33104
33105 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
33106
33107         * class.h, class.c: add a max_interface_id to MonoClass.
33108         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
33109         since it's used to do that. Added mono_type_type_from_obj().
33110         Make GetType() return NULL instead of segfaulting if the type was not
33111         found. Handle simple arrays in assQualifiedName.
33112         * object.h: add a struct to represent an Exception.
33113         * reflection.c: output call convention in method signature.
33114         Add code to support P/Invoke methods and fixed offsets for fields.
33115
33116 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
33117
33118         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
33119         the value.
33120         * icall.c: use mono_array_addr instead of array->vector: fixes the
33121         reflection image writing.
33122         * reflection.c: init call convention byte to 0 in method signature.
33123         Encode the property signature. Don't output property-related methods
33124         twice. Really process the properties for a type (don't cast a field to
33125         a property, my mom always told me that).
33126         Fix 64 bit issues in pointer alignment in a different and more
33127         readable way.
33128
33129 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
33130
33131         * loader.h: Removed type class from MonoDefaults, added monotype
33132
33133         * loader.c: Loaded MonoType, removed loading of Type
33134
33135         * icall.c (my_mono_new_object): Now returns a System.MonoType,
33136         and fills in System.Type._impl with a RuntimeTypeHandle rather
33137         than the actual MonoClass *
33138
33139         (ves_icall_type_from_handle): change from type_class to
33140         monotype_class
33141
33142         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
33143         implemented
33144
33145         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
33146         implemented
33147
33148         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
33149
33150         (ves_icall_System_Reflection_Assembly_GetType): implemented
33151
33152         (ves_icall_System_MonoType_assQualifiedName): implemented
33153
33154         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
33155
33156 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
33157
33158         * assembly.c (mono_assembly_open): Implement a cache for the
33159         assemblies. 
33160
33161         (mono_assembly_close): only destroy the assembly when the last
33162         reference is gone.
33163         
33164 2001-11-09  Dick Porter  <dick@ximian.com>
33165
33166         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
33167
33168 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
33169
33170         * class.c (mono_class_metadata_init): bug fix: compute the right slot
33171
33172 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
33173
33174         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
33175         from Martin Weindel.
33176         * object.h: add mono_string_chars ().
33177
33178 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
33179
33180         * reflection.c (build_compressed_metadata): Eliminates warnings
33181         and uses 64-bit clean code.
33182
33183         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
33184         (mono_type_equal): Change signature to eliminate warnings.
33185
33186 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
33187
33188         * icall.c, loader.c: remove the internalcall array constructors.
33189         Changes to match the new MonoArray structure.
33190         * object.h, object.c: an array object doesn't allocate an extra
33191         vector. Add mono_array_new_full () to create jagged arrays easily.
33192
33193 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
33194
33195         * metadata.h, metadata.c: add mono_metadata_field_info () to
33196         retreive all the info about a field from vairous tables.
33197         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
33198         * class.h, class.c: augment MonoClassField with more info.
33199         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
33200         policy and load a field's RVA if needed.
33201
33202 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
33203
33204         * class.c (mono_class_metadata_init): create a trampoline for all
33205         virtual functions instead of actually compiling them.
33206
33207 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
33208
33209         * class.h, class.c: include name in MonoClassField.
33210         * class.c: fix fundamental type of System.Object and System.String.
33211         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
33212         tokens in ldtoken.
33213         * icall.c: remove internalcalls for the Reflection stuff that is now
33214         done in C# code.
33215         * loader.c: mono_field_from_memberref () implementation.
33216         * mono-endian.c: thinko (s/struct/union/g).
33217         * object.c, object.h: make the mono_string_* prototypes actually use
33218         MonoString instead of MonoObject.
33219         * reflection.c, reflection.h: updates for changes in the reflection
33220         code in corlib: we use C structures that map to the actual C# classes.
33221         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
33222         fat method header if needed and use the info from the ILGenerator for
33223         methods. Handle fields in types. Misc fixes.
33224
33225 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
33226
33227         * class.c (mono_class_metadata_init): bug fix: always allocate
33228         space for static class data
33229
33230 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
33231
33232         * class.c (mono_compute_relative_numbering): use relative
33233         numbering to support fast runtime type checks.
33234
33235 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
33236
33237         * class.c (mono_class_create_from_typeref): added debugging output
33238         to print class name when MonoDummy is returned instead of real class
33239
33240 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
33241
33242         * class.c (mono_class_metadata_init): interface offset table now
33243         contains pointers into the vtable - this is more efficient for the jit
33244
33245 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
33246
33247         * class.c (mono_class_metadata_init): use a temporary vtable (the
33248         old algorithm only worked for the interpreter, but not for the jit)
33249
33250 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
33251
33252         * loader.c (method_from_memberref): use mono_class_get to get the
33253         class of an array instead of using System.Array directly.
33254         (mono_get_method): also add MEMBERREF methods to the method cache
33255         which usefull for arrays.
33256
33257 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
33258
33259         * pedump.c (arch_compile_method): added to compute vtable entry
33260
33261         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
33262         number of interfaces.
33263         
33264         * class.h: merged MonoArrayClass into MonoClass
33265
33266         * class.c (mono_class_create_from_typedef): compute the vtable size and
33267         allocate space to include the vtable inside MonoClass
33268         (mono_class_metadata_init): initialize the vtable
33269
33270 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
33271
33272         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
33273         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
33274         * image.c: endian fixes by Laurent Rioux.
33275         * object.h, object.c: rename MonoStringObject to MonoString and
33276         MonoArrayObject to MonoArray. Change some function names to conform to
33277         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
33278         guint16* as first argument, so don't use char*.
33279         Provide macros to do the interesting things on arrays in a portable way.
33280         * threads-pthread.c: updates for the API changes and #include <sched.h>
33281         (required for sched_yield()).
33282         * icall.c: updates for the API changes above.
33283         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
33284         platforms that need them.
33285
33286 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
33287
33288         * class.c: set the correct type for all the fundamental
33289         type when loading the class.
33290
33291 2001-10-05  Dick Porter  <dick@ximian.com>
33292
33293         * threads-pthread.c (pthread_mutex_timedlock): Simple
33294         compatibility version for C libraries that lack this call.
33295
33296 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
33297
33298         * class.c: MonoTypes stored in MonoClass are stored as
33299         fundamental MonoTypes when the class represents a
33300         fundamental type (System.Int32, ...).
33301         The TypeHandle return by ldtoken is a MonoType*.
33302         * icall.c: ves_icall_get_data_chunk () write out all the
33303         PE/COFF stuff. Implement ves_icall_define_method (),
33304         ves_icall_set_method_body (), ves_icall_type_from_handle ().
33305         * image.c: properly skip unknown streams.
33306         * loader.h, loader.c: add type_class to mono_defaults.
33307         * metadata.c, metadata.h: export compute_size () as
33308         mono_metadata_compute_size () with a better interface.
33309         Typo and C&P fixes.
33310         * pedump.c: don't try to print the entry point RVA if there is no entry point.
33311         * reflection.c, reflection.h: many cleanups, fixes, output method
33312         signatures and headers, typedef and typeref info, compress the metadata
33313         tables, output all the heap streams, cli header etc.
33314         * row-indexes.h: typo fixes.
33315
33316 2001-10-04  Dick Porter  <dick@ximian.com>
33317
33318         * object.h: Add a synchronisation mutex struct to MonoObject
33319
33320         * object.c (mono_new_object): Initialise the object
33321         synchronisation mutexes
33322
33323         * icall.c: System.Threading.Monitor internal calls
33324         
33325         * threads-pthread.h:
33326         * threads-pthread.c: System.Threading.Monitor internal calls
33327
33328         * threads-types.h: New file, includes the system-specific thread
33329         structures
33330         
33331         * threads-pthread-types.h:
33332         * threads-pthread-types.c: New files, handle pthread-specific
33333         synchronisation types
33334
33335         * threads-dummy-types.h: 
33336         * threads-dummy-types.c: New files of dummy support for
33337         thread-specific types
33338
33339         * metadata.c:
33340         * image.c:
33341         * pedump.c: include mono-endian.h not endian.h
33342         
33343         * Makefile.am: More threads files.
33344         Name mono-endian.h not endian.h
33345
33346 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
33347
33348         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
33349         stuff and implement a few more bits.
33350         * icall.c: a field needs to be dereferenced twice. Do not use the same
33351         name for two variables in the same scope.
33352         * image.c, image.h: cleanups.
33353
33354 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
33355
33356         * class.c (mono_class_metadata_init): bug fix: compute the right size
33357
33358 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
33359
33360         * icall.c: implemented some of the Reflection internalcalls.
33361         * image.c, image.h: start writing out the PE/COFF image.
33362         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
33363         that does the reverse than decode_blob_size ().
33364         * object.c: use mono_metadata_encode_value (). Move here
33365         temporary implementation of mono_string_to_utf8 ().
33366         * rawbuffer.c: make malloc_map static.
33367
33368 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
33369
33370         * metadata.c: fix type comparison for arrays.
33371         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
33372         Added a couple of new classes to monodefaults.
33373         * icall.c: added a couple of Reflection-related internalcalls.
33374         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
33375         Added a byval_arg MonoType to MonoClass.
33376
33377 2001-09-28  Dick Porter  <dick@ximian.com>
33378
33379         * icall.c:
33380         * threads-pthread.h: 
33381         * threads-pthread.c: Implemented internal calls for
33382         LocalDataStoreSlot operations.  Applied mutexes around all shared
33383         data.  Reworked the thread creation and Start() operations to
33384         avoid a race condition.
33385         
33386         * threads-dummy.h:
33387         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
33388
33389 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
33390
33391         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
33392
33393 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
33394
33395         * class.c, loader.c: warn and return NULL instead of erroring out.
33396         * icall.c: added System.AppDomain::getCurDomain().
33397         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
33398
33399 2001-09-25  Dick Porter  <dick@ximian.com>
33400
33401         * threads-pthread.h:
33402         * threads-pthread.c: Implemented timed thread joining and added
33403         System.Threading.Thread::Join_internal internal call
33404
33405         * icall.c: Added System.Threading.Thread::Join_internal internal call
33406
33407         * threads-dummy.h:
33408         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
33409
33410 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
33411
33412         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
33413         mono_string_intern () to implement the semantics of the ldstr opcode
33414         and the interning of System.Strings.
33415         * icall.c: provide hooks to make String::IsIntern and String::Intern
33416         internalcalls.
33417
33418 2001-09-23  Dick Porter  <dick@ximian.com>
33419
33420         * threads-dummy.c: 
33421         * threads-dummy.h: New files of dummy threading routines
33422
33423         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
33424         support code based on system specifics
33425
33426         Rename PTHREAD_LIBS to THREAD_LIBS
33427         
33428 2001-09-23  Dick Porter  <dick@ximian.com>
33429
33430         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
33431         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
33432         internal calls.
33433         (mono_thread_init): Set up a Thread object instance to return when
33434         the main thread calls Thread.CurrentThread
33435         (mono_thread_cleanup): Wait for all subthreads to exit
33436
33437         * icall.c: New internal calls for System.Threading.Thread::Sleep
33438         (including Schedule) and CurrentThread
33439
33440         * threads.h: New file, to insulate thread-specific stuff from the
33441         rest of the code
33442
33443 2001-09-21  Dick Porter  <dick@ximian.com>
33444
33445         * threads-pthread.h: 
33446         * threads-pthread.c: New file, for handling pthreads-style
33447         threading support.  Start() now starts a new thread and executes
33448         the ThreadStart delegate instance.
33449
33450         * icall.c: Added the internalcall for
33451         System.Threading.Thread::Start_internal
33452
33453         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
33454
33455 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
33456
33457         * loader.c: work around the different signatures for delegates
33458         constructors csc generates in compiled code vs the ones compiled in mscorlib.
33459
33460 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
33461
33462         * class.h, class.c: add mono_class_get_field_from_name ().
33463         * *: Fix C comments and other ANSI C issues.
33464
33465 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
33466
33467         * endian.h, assembly.c: fix some endianness issues.
33468
33469 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
33470
33471         * loader.h, load.c: add delegate_class to mono_defaults.
33472         Handle runtime provided methods in mono_get_method ().
33473
33474 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
33475
33476         * loader.c (mono_get_method): use pinvoke for internal call
33477
33478         * icall.c: use pinvoke for internal call
33479
33480         * loader.c (method_from_memberref): set the method name
33481
33482 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
33483
33484         * metadata.c: help the compiler generate better code for
33485         mono_class_from_mono_type ().
33486
33487 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
33488
33489         * class.c (mono_class_metadata_init): delayed computing of the
33490         class size to mono_class_metadata_init ()
33491
33492 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
33493
33494         * class.c, class.h: add an interfaces member to MonoClass.
33495         * image.c, image.h: add assembly_name field to MonoImage
33496         from the assembly table.
33497         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
33498
33499 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
33500
33501         * class.c: Handle Array in mono_class_from_mono_type ().
33502         * metadata.c, pedump.c: some endian fixes.
33503
33504 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
33505
33506         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
33507         * metadata.c: fix small problem introduced with the latest commit.
33508
33509 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
33510
33511         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
33512         We don't need a MonoMetadata pointer anymore to compare signatures in
33513         mono_metadata_signature_equal (), update callers.
33514         Reduced memory usage an number of allocations for MonoMethodHeader and
33515         MonoMethodSignature.
33516
33517 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
33518
33519         * metadata.c: added compare for szarray.
33520
33521 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
33522
33523         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
33524         and add a couple more types to it and mono_defaults. Give an hint on
33525         classes that need implementing in our corlib and are referenced
33526         in mscorlib.
33527
33528 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
33529
33530         * class.h, class.c: keep track if a class is also an Enum.
33531         * loader.c: Implement a couple more types for use in libffi
33532         marshalling. Gives better diagnostics when failing to dlopen
33533         a library. Set method->klass for P/Invoke methods, too.
33534
33535 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
33536
33537         * class.c, class.h: add a MonoType this_arg to MonoClass that
33538         represents a pointer to an object of the class' type that
33539         can be used by the interpreter and later the type cache.
33540         Add best guess alignment info for valuetype objects.
33541
33542 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
33543
33544         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
33545         into MonoType: one less level of indirection and allocation and
33546         simplifies quite a bit of code. Added cache for MonoTypes that are
33547         used frequently, so that we don't need to allocate them all the time.
33548
33549 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
33550
33551         * class.c (mono_class_create_from_typedef): System.Enum is also a
33552         value type, although it does not derive from System.ValueType
33553         (maybe a bug in the ms compiler?)
33554
33555         * metadata.c (mono_type_size): return the right size for value types
33556
33557         * loader.c (mono_get_method): only initialize method header if not abstract
33558
33559         * class.c (mono_class_from_mono_type): use mono_default values. 
33560
33561 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
33562
33563         * *: use MonoClass pointers instead of <type_tokens>
33564         
33565         * class.h: new flag: metadata_inited.
33566
33567         * class.c (mono_class_metadata_init): impl.
33568         (mono_class_instance_size): impl.
33569         (mono_class_data_size): impl.
33570
33571 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
33572
33573         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
33574         MonoClass now has the name and name_space fields. 
33575         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
33576         mono_get_method () takes and optional MonoClass as argument.
33577         Removed mono_typedef_from_name() and added mono_class_token_from_name()
33578         instead that takes advantage of a map from class names to typedef
33579         tokens in MonoImage.
33580
33581 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
33582
33583         * metadata.c: zero is not a valid alignment boundary.
33584         Merge MONO_TYPE_VOID in default decoding code.
33585
33586 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
33587
33588         * image.h: merged MonoMetadata into MonoImage
33589
33590         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
33591         identify the type of elements.
33592
33593 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
33594
33595         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
33596         * cil-coff.h: split MonoMSDOSHeader and add size info.
33597         * image.c: add some consistency checks.
33598         * metadata.c: fix row size computation: one programmer
33599         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
33600         add explanation for the locator routine.
33601         Fix decoding of size in method header.
33602         
33603 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
33604
33605         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
33606         (g_concat_dir_and_file): Bring g_concat_dir_and_file
33607         function from gnome-libs.  This uses the right path separator
33608         based on the OS, and also works around a bug in some systems where
33609         a double slash is not allowed. 
33610         (default_assembly_name_resolver): Use g_concat_dir_and_file
33611         (mono_assembly_open): ditto.
33612
33613 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
33614
33615         * metadata.c (mono_metadata_signature_equal): impl.
33616
33617         * *: void is now a realy MonoType (instead of using NULL)
33618         
33619         * metadata.c (do_mono_metadata_parse_type): use
33620         mono_metadata_parse_type to parse void value.
33621
33622 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
33623
33624         * metadata.c, metadata.h: in the signature and method header store
33625         only the space required for holding the loca vars and incoming arguments.
33626
33627 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
33628
33629         * metadata.c (do_mono_metadata_parse_type): treat void like any
33630         other type (instead of assigning NULL);
33631
33632 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
33633
33634         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
33635
33636 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
33637
33638         * image.c (do_mono_image_open): added a cache for arrays.
33639
33640 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
33641
33642         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
33643         decode a single column from a row in a metadata table and changes
33644         to take advantage of it in the typedef locator (gives a nice speed up).
33645         Store offset info for function params.
33646
33647 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
33648
33649         * image.h (MONO_IMAGE_IS_CORLIB): removed 
33650
33651 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
33652
33653         * assembly.c: how could mono_assembly_close () had ever worked?
33654         * metadata.c, metadata.h: provide offset info for local vars.
33655         Implement mono_type_size () to take care of alignment as well
33656         as size (it was mono_field_type_size in cli/class.c before).
33657
33658 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
33659
33660         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
33661
33662         * assembly.h (CORLIB_NAME): set to corlib.dll
33663
33664         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
33665
33666 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
33667
33668         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
33669         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
33670         tokentype.h: massive namespace cleanup.
33671
33672 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
33673
33674         * metadata.h, metadata.c: decode exception clauses when parsing method header.
33675
33676 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
33677
33678         * metadata.c (mono_metadata_free_type): added check for type !=
33679         NULL (void) before calling mono_metadata_free_type()
33680
33681 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
33682
33683         * metadata.h, row_indexes.h: added header with enumerations to use
33684         to index in the columns from tables in metadata and to decode coded
33685         tokens: we should start using this instead of embedding magic numbers
33686         all over the code.
33687
33688 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
33689
33690         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
33691         Move metadata_t info from cli_image_info_t to MonoImage, where
33692         it's easily accessible. Changed all the uses accordingly.
33693         Added the method and class caches to MonoImage.
33694         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
33695         and mono_metadata_decode_value () signature to be more consistent
33696         with the other parse functions (and simplify code). Taken advantage
33697         of zero-length array allocation with GCC. Removed reduntant (and
33698         wrong) MonoFieldType struct and use MonoParam instead. Changed
33699         mono_metadata_parse_field_type () to use common code for parsing.
33700         Added mono_metadata_typedef_from_field () and
33701         mono_metadata_typedef_from_method () to lookup a typedef index from a
33702         field or method token.
33703         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
33704
33705 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
33706
33707         * metadata.c (mono_metadata_parse_field_type): Implement. 
33708         (do_mono_metadata_parse_type): Split engine from
33709         mono_metadata_parse_type, so that we can create smaller structures
33710         for things that just have one pointer to the MonoType (look at
33711         the MonoFieldType)
33712
33713 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
33714
33715         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
33716         as Jan Gray found out, it is incorrect. 
33717
33718 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
33719
33720         * assembly.c: Implement asssembly loading.  This loads an image
33721         and loads all the referenced assemblies.  Come to think of it, we
33722         could always do lazy loading of the assemblies. 
33723
33724         * image.c (mono_image_open): Keep loaded images in a hashtable.
33725
33726         * image.h (MonoImage): Add reference count.
33727
33728 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
33729
33730         * assembly.c (mono_assembly_open): Keep track of the file name in
33731         case the assembly has no ASSEMBLY table.
33732
33733         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
33734         from get.c here.
33735
33736 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
33737
33738         * metadata.c, metadata.h: decode local vars in method header
33739         parse function. Change callers accordingly.
33740
33741 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
33742
33743         * metadata.h, cil-coff.h: protect against multiple inclusion.
33744         Added some new structures to hold information decoded from metadata:
33745         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
33746         and relevant decoding/free functions.
33747         * metadata.c: implement decoding functions. Add warning for out of bounds
33748         index in mono_metadata_locate(). Implement mono_get_method () to retreive
33749         all the info about a method signature and invocation. Remove check on
33750         uninitialized local var in parse_mh() and fix memory leak.
33751
33752 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
33753
33754         * metadata.h: More macros.
33755
33756         * tokentype.h: New file.
33757
33758 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
33759
33760         * assembly.c: added a consistency check and initialize
33761         some structures with g_new0().
33762         * metadata.c: fixed a couple more bugs in table size computation
33763         and add other checks for out-of bound access to metadata.
33764
33765 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
33766
33767         * metatada.c: fix bugs computing table sizes. Spew a
33768         warning when index in string heap is out of bounds.
33769
33770 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
33771
33772         * metadata.h: Add a couple of macros to manipulate tokens. 
33773
33774 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
33775
33776         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
33777         cli_section_tables).
33778
33779 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
33780
33781         * metadata.c (mono_metadata_user_string): New function, provides
33782         access to the UserString heap. 
33783
33784 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
33785
33786         * metadata.c: Add inline documentation.
33787
33788 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
33789
33790         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
33791         files. 
33792
33793 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
33794
33795         * typeattr.h: New file, TypeAttribute flags. 
33796
33797 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
33798
33799         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
33800         mono_assembly_ensure_section): Section loading code.
33801         (load_section_tables): Load the sections.
33802
33803         * mono/metadata/metadata.c (mono_metadata_locate_token,
33804         mono_metadata_locate): Functions to locate the information
33805         definition given a token or a table and an index.
33806         (mono_metadata_compute_table_bases): New.
33807         (compute_size): New function to compute the sizes of the various
33808         tables.
33809
33810         * mono/metadata/metadata.h: Finish listing the different index
33811         types. 
33812
33813         * mono/metadata/pedump.c: Improve to dump new information.
33814
33815 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
33816
33817         * mono/metadata/metadata.c: Entered all the tables matching
33818         Beta2. 
33819
33820         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
33821
33822
33823
33824