2010-05-12 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / ChangeLog
1 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
2
3         * icall.c (ves_icall_Type_GetInterfaces): Rewrite this
4         method to avoid initializing the class.
5
6         Fixes #605115.
7
8 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
9
10         * icall.c (ves_icall_System_MonoType_getFullName): It
11         doesn't require to init the class.
12
13 2010-05-11  Miguel de Icaza  <miguel@novell.com>
14
15         * console-unix.c: Signal handlers now save and restore errno.   We
16         have never had a bug report about this, ioctl does change errno. 
17
18         Hide the unused method.   
19
20         Remove internal declarations from public headers.
21
22         Document what the signal handler is doing
23
24 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
25
26         * sgen-gc.c (clear_unreachable_ephemerons): Clear
27         unreachable keys with a tombstone.
28
29         * sgen-gc.c (mark_ephemerons_in_range): Ignore
30         tombstone keys.
31
32 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
33
34         * icall-def.h:
35         * gc-internals.h:
36         * gc.c: New GC:get_ephemeron_tombstone.
37
38 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
39
40         * appdomain.c (create_exceptions): Rename to
41         create_domain_objects. Create the ephemeron tombstone object.
42
43         * domains-internals.h (MonoDomain): Add new field for the
44         ephemeron tombstone.
45
46         * domain.c (mono_domain_free): Set ephemeron_tombstone to
47         NULL.
48
49 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
50
51         * sgen-gc.c (mono_gc_clear_domain): Both ephemerons
52         and dislinks must be processed before LOS since they
53         could end up with pointers to memory returned to the
54         OS.
55
56 2010-05-11  Zoltan Varga  <vargaz@gmail.com>
57
58         * class.c (mono_class_alloc): New helper function to centralize memory allocation
59         for classes, allocates either from the image mempool or from the heap.
60
61         * class.c: Use mono_class_alloc to allocate memory owned by classes.
62
63         * metadata.c (free_generic_class_dependents): Free more items belonging to
64         generic classes.
65
66 2010-05-10  Zoltan Varga  <vargaz@gmail.com>
67
68         * reflection.c (mono_reflection_method_get_handle): Handle MonoGenericMethod
69         as well. Fixes #604054.
70
71 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
72
73         * metadata-verify.c: MS doesn't mind duplicates in the
74         typeref table. Move it to full verification.
75
76         Fixes #600508.
77
78 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
79
80         * image.c (do_mono_image_load): Report verification
81         errors when loading an image fails.
82
83 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
84
85         * reflection.c (mono_type_get_object): Remove chunk of code
86         no longer in use.
87
88 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
89
90         * icall-def.h
91         * icall.c: Delete some unused icalls.
92
93 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
94
95         * appdomain.c (mono_domain_has_type_resolve): Check for
96         NULL domain objects to make pedump happy.
97
98         * object.c (mono_field_get_value): Assert on NULL object.
99         It's the caller resposibility to check for this.
100
101         * object.c (mono_field_get_value_object): Ditto.
102
103         Fixes #601384.
104
105 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
106
107         * icall.c (ves_icall_type_is_subtype_of): Non iface subtype
108         checks can avoid doing a mono_class_init.
109
110         * icall.c: Remove mono_class_init from a bunch of icalls that
111         don't need it.
112
113         Hopefully we're now lazy enough to fix most victims of #601431.
114
115 2010-05-07  Mark Probst  <mark.probst@gmail.com>
116
117         * sgen-gc.c: Remove REMSET_ROOT_LOCATION.
118
119 2010-05-07  Mark Probst  <mark.probst@gmail.com>
120
121         * sgen-gc.c: Remove unnecessary checks in domain clearing code.
122
123 2010-05-07  Marek Habersack  <mhabersack@novell.com>
124
125         * culture-info-tables.h: updated to include en-TT culture. Fixes
126         bug #594035
127
128 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
129
130         Move mono_class_init from mono_type_get_object to icalls.
131         This causes massive memory savings for Assembly::GetTypes () and
132         make it fail a lot less due to missing dependencies.
133
134         This is a conservative, naive change as it doesn't remove some
135         mono_class_init from places that might not need them. Carefull
136         review of those should follow.
137
138         * reflection.c (mono_type_get_object): Don't mono_class_init the
139         returning type.
140
141         * reflection.c:
142         * cominterop.c:
143         * icall.c:
144         * marshal.c: Call mono_class_init in functions receiving a MonoType
145         object.
146
147         First step into fixing #601431.
148
149 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
150
151         * gc-internal.h: Add new functions required for ephemeron support.
152
153         * gc.c: Implement ves_icall_System_GC_register_ephemeron_array.
154
155         * icall-def.h: Add GC::register_ephemeron_array.
156
157         * object.c (compute_class_bitmap): sys.rt.cs.Ephemeronis an opaque type
158         under sgen. Its fields must not be marked.
159
160         * sgen-gc.c (mono_gc_clear_domain): Call cleanup function for ephemerons.
161
162         * sgen-gc.c (finish_gray_stack): Mark all reachable ephemerons before
163         handling finalizable objects. Clean dead ones after all finalizable
164         handling.
165
166         * sgen-gc.c (dump_heap): Add new kind of internal memory.
167
168         * sgen-gc.c (null_ephemerons_for_domain): Remove from the list ephemeron
169         arrays from the dead domain.
170
171         * sgen-gc.c (clear_unreachable_ephemerons): Clear dead ephemerons entries.
172
173         * sgen-gc.c (mark_ephemerons_in_range): Mark/Copy all ephemeron values
174         whose keys are reachable.
175
176         * sgen-gc.c (mono_gc_ephemeron_array_add): Register the array into the
177         list of live ephemeron arrays.
178
179 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
180
181         * class.c (mono_class_layout_fields): Don't perform alignment
182         if align is zero.
183
184         * class.c (mono_class_layout_fields): Init field related information
185         to sane defaults.
186
187 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
188
189         * verify.c (mono_verifier_verify_class): Verify the constraint
190         of generic type definitions.
191
192 2010-05-04  Mark Probst  <mark.probst@gmail.com>
193
194         * sgen-marksweep.c: Simplify free list maintenance in sweep.
195
196 2010-05-02  Mark Probst  <mark.probst@gmail.com>
197
198         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Unify
199         major_do_collection() across the two major collectors.
200
201 2010-05-02  Mark Probst  <mark.probst@gmail.com>
202
203         * sgen-gc.c: Add heavy statistics counter for re-added global
204         remsets.
205
206 2010-05-02  Mark Probst  <mark.probst@gmail.com>
207
208         * sgen-marksweep.c, sgen-gc.c: Use one mark bit per ALLOC_ALIGN to
209         get rid of a division in critical code.
210
211 2010-04-29  Mark Probst  <mark.probst@gmail.com>
212
213         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Have separate
214         blocks for objects without references in mark&sweep, to improve
215         performance.
216
217 2010-04-28  Mark Probst  <mark.probst@gmail.com>
218
219         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Bring heavy
220         statistics up-to-date.
221
222 2010-04-27  Mark Probst  <mark.probst@gmail.com>
223
224         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Support
225         heap-dump for mark&sweep.
226
227 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
228
229         * loader.c (mono_method_get_header): Move the is_inflated case before the
230         wrapper case, as a method can be both.
231
232 2010-04-27  Mark Probst  <mark.probst@gmail.com>
233
234         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Don't do a
235         separate pass to scan pinned and large object but use the gray
236         queue like for regular objects.
237
238 2010-04-26  Zoltan Varga  <vargaz@gmail.com>
239
240         * boehm-gc.c: Applied patch from Robert Nagy (robert@openbsd.org). Include
241         string.h for memmove.
242
243         socket-io.c: Applied patch from Robert Nagy (robert@openbsd.org).
244         ipaddress_to_struct_in6_addr() is only needed when
245         defined(HAVE_STRUCT_IP_MREQN) || defined(HAVE_STRUCT_IP_MREQ).
246
247 2010-04-25  Mark Probst  <mark.probst@gmail.com>
248
249         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Properly
250         separate copy_object functions for major vs nursery.  Allows us to
251         get rid of a few checks and the start and end parameters for many
252         functions.
253
254 2010-04-25  Mark Probst  <mark.probst@gmail.com>
255
256         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c,
257         sgen-protocol.c, sgen-protocol.h, Makefile.am: Major Mark&Sweep
258         collector.
259
260 2010-04-25  Zoltan Varga  <vargaz@gmail.com>
261
262         * class.c (mono_class_create_from_typedef): Initialize class->nested_in after
263         calling setup_mono_type () since the nested parent could recursively reference
264         the nested class using generic constraints. Fixes #599469.
265
266 2010-04-24  Mark Probst  <mark.probst@gmail.com>
267
268         * sgen-gc.c, sgen-pinning.c, sgen-major-copying.c: Major collector
269         abstraction.
270
271 2010-04-24  Mark Probst  <mark.probst@gmail.com>
272
273         * sgen-gc.c: Remove more unneeded code.
274
275 2010-04-24  Mark Probst  <mark.probst@gmail.com>
276
277         * sgen-gc.c: Disable managed allocator and wbarrier when the
278         binary protocol is enabled.
279
280 2010-04-24  Mark Probst  <mark.probst@gmail.com>
281
282         * sgen-gc.c: Put nursery-fragment-cleaning into its own function.
283
284 2010-04-24  Mark Probst  <mark.probst@gmail.com>
285
286         * sgen-gc.c: Remove a few commented out and unneeded bits.
287
288 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
289
290         * threadpool.c: patch from Robert Nagy that fixes a nullref and
291         uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
292
293 2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
294
295         * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
296         types.
297
298         Fixes #331126
299
300 2010-04-21  Mark Probst  <mark.probst@gmail.com>
301
302         * sgen-gc.c: Turn off semi-precise stack mark.
303
304 2010-04-20  Sebastien Pouliot  <sebastien@ximian.com>
305
306         * reflection.c (mono_custom_attrs_from_index): Use right function
307         to free 'list' (i.e. g_list_free) if the verifier fails.
308
309 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
310
311                 * verify.c: Handle the case where mono_type_get_underlying_type_any
312                 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
313                 and MONO_TYPE_VALUETYPE in those case.
314
315                 Based on a slightly modified patch by Sebastien Pouliot  <sebastien@ximian.com>
316
317                 Hopefully Fixes #564253.
318
319 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
320
321         * domain-internals.h: made threadpool_jobs volatile.
322         * mono-wsq.c: add an assert to verify that the threadpool cleaned up
323         all local jobs.
324         * threadpool.c:
325                 -When two threads try to initialize the socket IO pool,
326                 the second one waits until the intialization is finished
327                 instead of continuing right away.
328                 -Add checks for domain unload: no items added in this case.
329                 -Only measure the time every 10 elements added to the queue.
330                 This is an experiment since linux x86 gettimeofday() sucks.
331                 -Create new thread if there are none waiting for work items.
332                 -There was a missing decrement of the busy threads.
333                 -Make sure the local queue is cleaned up before exiting the
334                 thread when the program ends.
335
336 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
337
338         * reflection.c (mono_type_get_object): Normalize generics types
339         as to how managed code expect them to be. A generic instance over
340         the GTD arguments must have the same mirror as the GTD itself.
341
342         Fixes #473289.
343
344 2010-04-19  Zoltan Varga  <vargaz@gmail.com>
345
346         * locales.c: Implement support for DISABLE_NORMALIZATION.
347
348 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
349
350         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
351         since it is not a MonoMethod.
352
353 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
354
355         * icall-def.h: Add get_RequiresElevatedPermissions icall to
356         System.Security.SecurityManager - used only by Moonlight
357         * security-core-clr.c|h: Add Elevated Trust/Permission support
358         for CoreCLR / Moonlight
359
360 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
361
362         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
363         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
364
365 2010-04-16  Marek Habersack  <mhabersack@novell.com>
366
367         * mono-perfcounters.c: added code for the "Mono
368         Memory/Total Physical Memory" performance counter.
369
370         * mono-perfcounters-def.h: added definition of the "Mono
371         Memory/Total Physical Memory" performance counter.
372
373 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
374
375         * class.c (mono_class_get_method_by_index): Return NULL
376         on type load failures.
377
378 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
379
380         * class.c (mono_class_from_typeref): Check if the supplied
381         image has an assembly bound to it.
382
383         Fixes #567884.
384
385 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
386
387         * loader.c (mono_method_get_signature_full): Use new function
388         inflate_generic_signature_checked to check for errors.
389
390         Fixes #560839.
391
392 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
393
394         * loader.c (inflate_generic_signature): Add _checked variant
395         and move this function to use it.
396
397 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
398
399         * class.c (mono_class_setup_vtable_general): Use error checking
400         version of mono_class_inflate_generic_method_full.
401
402         Fixes #596975.
403
404 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
405
406         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
407         error handling passing MonoError around.
408
409         Fixes #560336.
410
411 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
412
413         * socket-io.c: make GetHostByName ("") work on windows.
414         Fixes bug #456723.
415
416 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
417
418         * object-internals.h:
419         * threads.c: use a spin lock when accesing the per-thread appdomain
420         list.
421
422 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
423
424         * threads.c: no need to take the threads lock in push/pop appdomain.
425
426 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
427
428         * reflection.c (_mono_reflection_parse_type): MS supports
429         non-assembly-qualified types in a generic type parameter list
430         when enclosed in '[]' (which signals that they should be a fqn).
431
432         This breaks ECMA specs for how type names are encoded in cattr
433         blobs but F# does it.
434
435         Fixes #576342.
436
437 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
438
439         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
440         for instance methods/ctors.
441
442         Fixes #422113.
443
444 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
445
446         * reflection.c: Use the new verifier support for checking
447         custom attributes.
448
449         Fixes #595306.
450
451 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
452
453         * metadata-verify.c: Implement structural verification
454         of custom attributes. This check requires access to the
455         loader since to resolve the size of an enum we have to
456         look it up.
457         We don't check if named argumenments are encoded in a
458         compatible fashion to their underlying field/prop.
459         Maybe we should?
460
461         * verify-internals.h: Add two new cattr verification API.
462
463 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
464
465         * metadata-verify.c (decode_signature_header): Fix signature.
466
467 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
468
469         * verify.c (mono_verifier_is_enabled_for_method): Handle
470         assembly less images.
471
472         * verify.c (mono_verifier_is_class_full_trust): Ditto.
473
474 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
475
476         * loader.c (mono_method_signature_checked): Properly
477         init MonoError.
478
479         * loader.c (mono_method_signature): It's the calee
480         resposibility to init the error object.
481
482 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
483
484         * metadata-verify.c (decode_signature_header): Do proper
485         overflow checking.
486
487 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
488
489         * reflection.c: maintain the invariants required by
490         mono_class_layout_fields() also in typebuilder_setup_fields ().
491
492 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
493
494         * security-core-clr.c: Call mono_class_setup_methods in 
495         get_default_ctor before checking klass->methods. Fix typo in
496         comment
497
498 2010-04-10  Jb Evain  <jbevain@novell.com>
499
500         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
501         add .net 4.0 RTM version.
502
503 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
504
505         * reflection.c (resolve_object): Properly inflate generic
506         methods when a context is supplied.
507
508         Fixes #591226.
509
510 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
511
512         * verify.c (mono_method_verify): A switch op don't empty
513         the stack for the next one. Fixes a bug when running fsi
514         under --verify-all.
515
516 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
517
518         * metadata-verify.c (is_valid_standalonesig_blob): Accept
519         fields as valid standalone sig too. F# does generate them.
520
521         * metadata-verify.c (verify_typedef_table_full): Ignore
522         what <module> extends.
523
524 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
525
526         * verify.c (do_invoke_method): It's ok to do use call with
527         virtual, non-final methods if their class is sealed.
528
529 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
530
531         * icall.c (ves_icall_MonoField_GetValueInternal): This function
532         is a near identical copy of mono_field_get_value_object. So simply
533         call it.
534
535         * object.c (mono_field_get_value_object): Handle literal fields
536         on open generic classes.
537
538         Fixes #594942.
539
540 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
541
542         * reflection.c (mono_reflection_create_runtime_class): Setup
543         parent/supertype information again since it can be changed
544         without notice.
545
546 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
547
548         * verify.c (verify_type_compatibility_full): Properly handle
549         stores between arrays of primitives.
550
551         Fixes the verifier side of #555950.
552
553 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
554
555         class.c (mono_bounded_array_class_get): Properly init
556         cast_class to take the fact that uint[] and int[] can be
557         casted between each other.
558
559         Fixes #555950.
560
561 2010-04-07  Geoff Norton  <gnorton@novell.com>
562
563         * domain.c: Avoid a deadlock on osx.  Fixes #565765
564
565 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
566
567         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
568         builders. Fixes #594464.
569
570 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
571
572         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
573         waiting for all threads to suspend, as those threads can't be suspended.
574
575 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
576
577         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
578         to avoid crashes on newly created threads.
579
580 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
581
582         * file-io.c: reset the MonoIOStat structure in case of error.
583         Fixes bug #582667.
584
585 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
586
587         * class.c (print_implemented_interfaces): Print proper type name.
588
589         * class.c (mono_class_setup_vtable): Don't try that hard to produce
590         the override map for generic instances since it later ignored.
591
592         * class.c (mono_class_implement_interface_slow): Don't break for
593         dynamic generic instances.
594
595         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
596
597         * reflection.c (mono_reflection_method_get_handle): New method that
598         resolves a method handle.
599
600         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
601         case when we override methods from a dynamic generic instance interface.
602
603         Fixes #575941.
604
605 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
606
607         * threadpool.c: don't attempt to close the pipe when it has not been
608         created.
609
610 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
611
612         * threadpool.c: if there are no waiting threads, try to start a new
613         one. This fixes the not-so-random hangs in System.ServiceModel tests.
614         No need to use InterlockedCompareExchange to read volatile variables.
615
616 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
617
618         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
619         and reference types that point to the same class.
620
621         Fixes #565598.
622
623 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
624
625         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
626         when verifying compatibility between a generic instance and a generic
627         parameter.
628
629         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
630
631         * verify.c (stack_slot_stack_type_full_name): Improve verification type
632         name.
633
634         Fixes #587849.
635
636 2010-04-04  Mark Probst  <mark.probst@gmail.com>
637
638         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
639
640 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
641
642         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
643
644 2010-04-03  Marek Habersack  <mhabersack@novell.com>
645
646         * process.c: when cross-compiling with MinGW, force GetProcessId
647         lookup using GetProcAddress.
648
649 2010-04-02  Mark Probst  <mark.probst@gmail.com>
650
651         * sgen-gc.c: parse_environment_string_extract_number() must be
652         static.
653
654 2010-04-02  Mark Probst  <mark.probst@gmail.com>
655
656         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
657         gray_object_dequeue(), to make sure they're inlined.
658
659 2010-04-02  Mark Probst  <mark.probst@gmail.com>
660
661         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
662         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
663
664 2010-04-02  Jb Evain  <jbevain@novell.com>
665
666         * exception.c: remove dead code.
667
668 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
669
670         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
671         with mono-gc.h.
672
673 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
674
675         * sgen-gc.c: Make the nursery size adjustable by the
676         MONO_GC_PARAMS environment variable.
677
678         Code is contributed under MIT/X11 license.
679
680 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
681
682         * threadpool.c: threadpool threads wait is alertable.
683         Fixes bug #592964.
684         Reduced the stack size of the *poll_wait thread.
685
686 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
687
688         * exception.c|metadata-internals.h: Add new mono_get_exception_
689         field_access_msg and mono_get_exception_method_access_msg 
690         functions that accept a const char* parameter to provide more 
691         details when the exception is thrown.
692         * security-core-clr.c|h: Rework code to allow logging exceptions
693         (export MONO_LOG_MASK="security") and to supply more details in
694         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
695         mono_security_core_clr_is_field_access_allowed and 
696         mono_security_core_clr_is_call_allowed to return an exception,
697         with messages and logging, that can be emitted by method-to-ir.c
698
699 2010-04-01  Mark Probst  <mark.probst@gmail.com>
700
701         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
702         pinned object.
703
704 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
705
706         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
707         the assembly name is not well formed utf8. Fixes #567882.
708
709 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
710
711         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
712         the generic parameters from the builder. Fixes #473298.
713
714 2010-03-31  Miguel de Icaza  <miguel@novell.com>
715
716         * object.c (mono_class_proxy_vtable): Eliminate warning. 
717
718         * marshal.c (emit_marshal_boolean): Eliminate possible
719         uninitialized local warning. 
720
721 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
722
723         * class.c (mono_class_init): Postpone coreclr inheritance check
724         until the end of the initialization (so we can check up the 
725         default ctor manually for the core-clr inheritance rules).
726         * security-core-clr.c: Add the missing (undocumented) checks on
727         default constructors when verifying inheritance rules.
728
729 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
730
731         * domain-internals.h (MonoJitExceptionInfo): Add new field
732         handler_end to the data union. To be used to point the end
733         of a finally block.
734
735 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
736
737         * reflection.c: Add support for new v4 type
738         System.Reflection.MonoModule that is the concrete version
739         of Module which is abstract unver v4.
740
741 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
742
743         * class.c (mono_class_init): Don't set class failure after
744         inited = 1 is set. It must be done before.
745
746 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
747
748         * mono-config.c: Add support for OS "haiku"
749         * ChangeLog: Fix UTF-8 encoding
750
751         Code is contributed under MIT/X11 license.
752
753 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
754
755         * console-unix.c: fixed include logic for sys/ioctl.h.
756
757 2010-03-30  Mark Probst  <mark.probst@gmail.com>
758
759         * threads.c: Fix bitmap generation for TLS marking on 64 bit
760         systems.
761
762 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
763
764         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
765         unfinished/broken typebuilders.
766
767 2010-03-29  Mark Probst  <mark.probst@gmail.com>
768
769         * sgen-gc.c: Use the same heuristic for the LOS target that we use
770         for the minor section allowance.
771
772 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
773
774         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
775         "NoOptimization".
776
777 2010-03-29  Mark Probst  <mark.probst@gmail.com>
778
779         * sgen-gc.c: Count bytes allocated with heavy statistics.
780
781 2010-03-29  Mark Probst  <mark.probst@gmail.com>
782
783         * sgen-gc.c: More detailed time statistics.
784
785 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
786
787         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
788         fix the user defined mark interface to pass a pointer
789         to the object location and not the object itself.
790
791 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
792
793         * reflection.c (mono_method_body_get_object): Release
794         the method header before the call to CACHE_OBJECT since
795         this is a macro that returns.
796
797 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
798
799         * class.c (inflate_generic_type): mono_metadata_type_dup
800         already dupes array information, the g_memdup was just
801         leaking memory.
802
803 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
804
805         * verify.c: Add stack_peek function. Fix CEE_DUP
806         to not read from invalid memory if push did expand
807         the stack.
808
809 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
810
811         * verify.c: Remove old table verification code that has
812         been superseeded by the new metadata verifier.
813
814         * verify.h: Remove mono_image_verify_tables from the public
815         API.
816
817         * pedump.c: Fix for removed bits.
818
819 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
820
821         * verify.c: Allocate stack slows lazily to reduce stack usage
822         in case of methods with huge stacks. Reduces memory consumption
823         for mcs yyparse from 459Mb to 1.8Mb.
824
825 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
826
827         * threadpool.c: don't try executing items from domains being
828         unloaded. Fixes appdomain-async-invoke test.
829
830 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
831
832         * threadpool.c: spin while the threadpool initializes.
833         * mono-wsq.c: if the WSQ has not been initialized or has been shut
834         down, don't do anything.
835
836 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
837
838         * threads.c (mono_thread_create_internal): Set the GC type of the
839         threads_starting_up hash table.
840
841 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
842
843         * threadpool.c: reset 'state' to avoid returning non-null when the
844         event type is not found.
845
846 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
847
848         * sgen-gc.c: make copy_object () take the address of the
849         slot holding the reference. This allows saving memory stores
850         when not needed and it allows keeping track of oldspace->nursery
851         references for the card table code.
852
853 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
854
855         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
856
857         Code is contributed under MIT/X11 license.
858
859 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
860
861         * object.c, threads.c, threads-types.h, threads.h: make the
862         managed thread local storage references precisely tracked.
863
864 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
865
866         * threadpool.[ch]: reworked the threadpool:
867                 -Threadpool threads use a work-stealing queue. Adding a work
868                 item from a threadpool thread will queue it in the thread
869                 local queue without locking (in most cases).
870                 -epoll events are coalesced before being added to the IO
871                 queue.
872                 -Dynamically change the number of active threads
873                 -Changed the global queue to be more GC friendly
874
875         * class-internals.h: add 2 new performance counters for the number of
876         threads in the threadpool and the IO threadpool.
877
878         * object-internals.h: new field in MonoAsyncResult.
879         * icall-def.h: new internal call for queueing work items.
880
881         * Makefile.am: add 2 new files.
882
883         * appdomain.c: bump up corlib version.
884
885         * mono-wsq.[ch]: an implementation of a work-stealing queue.
886
887         * mono-perfcounters-def.h:
888         * mono-perfcounters.c: added 2 new performance counters.
889
890 2010-03-26  Mark Probst  <mark.probst@gmail.com>
891
892         * sgen-gc.c: More FIXME/TODO updates.
893
894 2010-03-25  Mark Probst  <mark.probst@gmail.com>
895
896         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
897         function mono_gc_invoke_with_gc_lock() which invokes a function
898         with the guarantee that no collection will occur during its execution.
899
900 2010-03-25  Mark Probst  <mark.probst@gmail.com>
901
902         * sgen-gc.c: Update a few comments.
903
904 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
905
906         * reflection.c: Add support for new v4 type
907         System.Reflection.MonoAssembly that is the concrete version
908         of Assembly which is abstract unver v4.
909
910 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
911
912         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
913         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
914
915         Expose a few macros that are needed for SR but not SRE to the
916         world (previous inside the SRE ifdef)
917
918 2010-03-24  Mark Probst  <mark.probst@gmail.com>
919
920         * sgen-gc.c (gc_register_current_thread): We need
921         stack_start_limit as well in the non-attribute pthread case.
922
923 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
924
925         * threads.c: Fix windows build.
926
927 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
928
929         * thread-types.h: Add mono_thread_resume_interruption.
930
931         * threads.c: Add mono_thread_resume_interruption, this
932         function should be called after the last protected handler
933         found at interruption time has finished.
934
935 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
936
937         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
938         Check MonoInternalThread's ::state instead of ::abort_exc
939         since the later can be lazily created.
940
941         This is specially problematic when running a finally block
942         under AbortRequested state. ResetAbort must work, but the
943         abort_exc object has not been created because interruption
944         has not began.
945
946 2010-03-22  Geoff Norton  <gnorton@novell.com>
947
948         * locales.c: Its possible for CFStringGetCStringPtr
949         to return null and not convert encodings.  Use
950         CFStringGetCString instead.
951
952 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
953
954         * class-internals.h, class.c, object.c: introduce compressed
955         interface bitmaps (for now only under small config): this saves
956         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
957         startups.
958
959 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
960
961         * mono-debug.c: don't try to get the method header, it causes a
962         deadlock and it is not used for anything anymore.
963
964 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
965
966         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
967         broken by the last change.
968
969 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
970
971         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
972         SOCK_RDM.
973         
974         Code is contributed under MIT/X11 license.
975
976 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
977
978         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
979         nursery.
980
981         Code is contributed under MIT/X11 license.
982
983 2010-03-19  Martin Baulig  <martin@ximian.com>
984
985         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
986         dummy field, containing an empty string.
987         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
988
989
990 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
991
992         * class.c: setup_interface_offsets() refactor to not call
993         mono_class_get_implemented_interfaces () more times than needed and
994         to reduce the runtime memory requirements to be O(num_interfaces)
995         instead of O(max_interface_id).
996
997 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
998
999         * mono-mlist.[ch]: add mono_mlist_set_next ().
1000
1001 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1002
1003         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
1004         associated changes to support holes in the protected range of a
1005         try block.
1006
1007         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
1008         retrieves the holes table from a given MonoJitInfo.
1009
1010 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
1011
1012         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
1013         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
1014         hide the contents of the MonoString and MonoArray structs from the
1015         public API. Change the accessor macros to accessors functions where
1016         needed. Adjusted the array API to allow for pointer-sized lengths and
1017         starting positions, so 64 bit arrays can be optionally provided in an
1018         API compatible way if needed on 64 bit systems.
1019
1020 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
1021
1022         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
1023         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
1024
1025 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
1026
1027         * class-internals.h: remove the method header from MonoMethod since
1028         from now on it will be transient. We have a header pointer for method
1029         wrappers, since in that case we need to keep track of it. For this
1030         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
1031         structs now. The same happens with MonoMethodInflated.
1032         * class.c: reset the sre_method flag for inflated method structures:
1033         this makes the code that cares look at the header in the MonoMethodInflated
1034         structure.
1035         * loader.c: lookup the method header in the appropriate field now that
1036         it is removed from MonoMethod.
1037         * metadata-internals.h: add a flag to the method header to know if it
1038         can be freed inside mono_metadata_free_mh ().
1039         * method-builder.c: updates after moving the header field from
1040         MonoMethod to MonoMethodWrapper.
1041         * reflection.c: MonoMethods generated from Reflection.Emit use
1042         MonoMethodWrapper structs if they need a method header now (later take
1043         advantage of this and remove all the current unsafe uses of method_aux_hash).
1044         * metadata.c: make method header parsing not leak when verification
1045         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
1046         These changes save a few hundred KB of runtime memory in a mcs
1047         bootstrap or a monodevelop startup.
1048
1049 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
1050
1051         * verify.c: Improve error message.
1052
1053 2010-03-12  Jb Evain  <jbevain@novell.com>
1054
1055         * reflection.c (add_exported_type): populate the exported
1056         table with the type's nested type.
1057
1058 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1059
1060         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
1061         can't read parentheses.
1062
1063 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1064
1065         * threads.c (thread_cleanup): Add a guard to dereferencing
1066         "thread" to avoid an unlikely race condition.
1067
1068 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
1069
1070         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
1071         instead of an empty string.
1072
1073 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1074
1075         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
1076         convert to a boolean, recent gcc versions compile this differently.
1077
1078 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1079
1080        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
1081        inlined.
1082
1083 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1084
1085         * sgen-gc.c (STRING_SIZE): Off by one.
1086
1087 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1088
1089         * sgen-archdep.h: Fix the signal context register access for
1090         AMD64.
1091
1092 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1093
1094         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
1095
1096 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
1097
1098         * verify.c: Store the initial basic block returned by mono_basic_block_split
1099         so we can release the whole list and not just the first one.
1100
1101 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1102
1103         * verify.c, debug-helpers.c, profiler.c, loader.c,
1104         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
1105         MonoMethodHeader a transient entity.
1106
1107 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
1108
1109         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
1110         uncontrolled growth of the gray stack.
1111
1112         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
1113         added items are removed first, improving cache locality. Avoid freeing queue
1114         segments in the fast path, use the list of segments as the free list, truncate
1115         it to its max size at the start of collection.
1116
1117 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
1118
1119         * metadata-internals.h: more memory savings, both with small config and without.
1120
1121
1122 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
1123
1124         * appdomain.c, domain-internals.h, domain.c, object.c:
1125         make class_vtable_hash into an array to reduce memory usage.
1126
1127 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
1128
1129         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
1130         object-internals.h, object.c, reflection.c, threadpool.c:
1131         reduce resource usage when the small config is selected.
1132         In particular, up to 64K of methods/fields/properties/events
1133         are allowed and "other" methods in events are ignored.
1134
1135 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
1136
1137         * threads.c: reduce resource usage when compiled for a small config.
1138
1139 2010-03-05  Mark Probst  <mark.probst@gmail.com>
1140
1141         * sgen-gc.c: Also collect number of degraded-alloced objects with
1142         heavy statistics.
1143
1144 2010-03-04  Geoff Norton  <gnorton@novell.com>
1145
1146         * assembly.c: Only support OSX bundling if the bundle is 
1147         actually detectable.
1148
1149 2010-03-04  Geoff Norton  <gnorton@novell.com>
1150
1151         * loader.c: The marshal specs are freed at the end of the call
1152         but it explicitly frees the strings as well as the container,
1153         so we need to dup them too to avoid referencing free'd memory.
1154
1155 2010-03-04  Geoff Norton  <gnorton@novell.com>
1156
1157         * icall-def.h:
1158         * icall.c: Add a new private internal icall to construct
1159         an object from its type without running the ctor.
1160
1161 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1162
1163         * profiler.c: allow multiple profiler engines to be loaded
1164         at the same time.
1165
1166 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1167
1168         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
1169         profiler event to track object moves.
1170
1171 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
1172
1173         * object.c, profiler.c, profiler.h, string-icalls.c:
1174         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
1175
1176 2010-03-03  Miguel de Icaza  <miguel@novell.com>
1177
1178         * decimal.c (mono_double2decimal): Add support for reducing the
1179         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
1180         expected.
1181
1182 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
1183
1184         * icall-def.h:
1185         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
1186
1187 2010-03-03  Marek Habersack  <mhabersack@novell.com>
1188
1189         * mono-config.c (mono_config_parse_assembly_bindings): added -
1190         parses assembly binding redirections from appdomain's config
1191         file.
1192
1193         * metadata-internals.h: added definition of a new function -
1194         mono_config_parse_assembly_bindings - to support parsing assembly
1195         binding redirections defined in appdomain's config file.
1196
1197         * domain-internals.h: added two new fields to _MonoDomain - a list
1198         of assembly bindings and a flag to parse the config file only
1199         once.
1200
1201         * assembly.c (assembly_binding_maps_name): empty culture name and
1202         NULL culture name are considered equal.
1203         (mono_assembly_apply_binding): added support for domain specific
1204         assembly binding redirections, read from the appdomain's
1205         configuration file. Fixes bug #580185
1206
1207 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
1208
1209         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
1210         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
1211         support.
1212
1213 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1214
1215         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
1216         from this function. The new function receive the parent token instead of a type.
1217
1218         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
1219         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
1220         typebuilders. This make it possible to properly encode generic type builders since
1221         their unmanaged type don't have generics data while unfinished.
1222
1223         Fixes #583655.
1224
1225 2010-03-02  Mark Probst  <mark.probst@gmail.com>
1226
1227         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
1228         writing binary log files (can be enabled by #define'ing
1229         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
1230         bugs in longer running programs.
1231
1232 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
1233
1234         * metadata.c: added some API documentation.
1235
1236 2010-03-01  Robert Jordan  <robertj@gmx.net>
1237
1238         * filewatcher.h: Include glib.h to fix the MSVC build.
1239
1240 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1241
1242         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
1243         a GC handle instead. This is a bit slower to access, but avoids burdening the
1244         GC with 100s of individual roots.
1245
1246         * reflection.c (mono_class_get_ref_info):
1247         (mono_class_set_ref_info):
1248         (mono_class_free_ref_info): New internal helper fuctions.
1249
1250         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
1251         of accessing klass->reflection_info directly.
1252
1253         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
1254         words.
1255
1256         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
1257         the previous array.
1258
1259 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
1260
1261         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
1262         needs an indirection.
1263
1264 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1265
1266         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
1267         so all generic sharing code is in one place.
1268
1269         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
1270         we don't call setup_interface_offsets () for unfinished types.
1271
1272 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1273
1274         * class.c (mono_class_generic_sharing_enabled): Move this to
1275         generic-sharing.c.
1276
1277         * image.c: Add an unload hook which is called before an image is unloaded.
1278
1279         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
1280         metadata.c having to depend on generic sharing.
1281
1282 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1283
1284         * class.c: reduce size of ridiculously large cache.
1285
1286 2010-02-26  Martin Baulig  <martin@ximian.com>
1287
1288         * mono-debug.h
1289         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
1290
1291         * threads.c (mono_thread_internal_reset_abort): New method; resets
1292         the abort, but doesn't throw any exception if no abort was requested.
1293
1294 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1295
1296         * class.c (get_implicit_generic_array_interfaces): Call
1297         mono_class_setup_interface_offsets () before accessing
1298         eclass->interface_offsets_count. This only shows up on platforms without IMT for
1299         some reason.
1300
1301 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1302
1303         * environment.c, environment.h, icall.c: make the GetOSVersionString()
1304         icall internal.
1305
1306 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
1307
1308         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
1309         direct access to the MonoType fields.
1310
1311 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1312
1313         * threads.h: Move some internal functions which were added to this header by
1314         mistake to threads-types.h.
1315
1316         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
1317
1318 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
1319
1320         * class-internals.h, class.h, object.h: make MonoRemoteClass
1321         and mono_remote_class() internal.
1322
1323 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1324
1325         * metadata-internals.h, class-internals.h, metadata.h: make the
1326         MonoType guts internal as well.
1327
1328 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
1329
1330         * reflection.h: the MonoTypeNameParse guts are internal now.
1331         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
1332         are internal now, provide accessors as needed.
1333         * metadata.h, metadata-internals.h: the MonoMethodSignature
1334         guts are internal now.
1335         * Makefile.am: mempool.h is an internal header now.
1336         * *.h, *.c: remove glib.h usage from the public headers.
1337
1338 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
1339
1340         * culture-info-table.h : regenerated.
1341
1342 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
1343
1344         * metadata.c: Add mono_method_get_header_summary which returns minimal
1345         information about the header of a method. This is the information used
1346         by the inline oracle to reject methods.
1347
1348         This method doesn't decode local variables and doesn't cache it's result,
1349         so it should cause a minimal reduction in memory usage.
1350
1351         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
1352         mono_method_get_header_summary.
1353
1354 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
1355
1356         * threads.c (mono_thread_exit): Make sure that the main thread is
1357         non-null before dereferencing it.
1358
1359 2010-02-21  Geoff Norton  <gnorton@novell.com>
1360
1361         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
1362         locale.
1363         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
1364         before falling back to the posix lookup.
1365
1366 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
1367
1368         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
1369         the DONT_MANAGE flag set.
1370
1371 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1372
1373         * domain.c: Remove old v1 version strings. Let the runtime
1374         default to 2.0 instead of failing because it can't find a
1375         working 1.0 instalation.
1376
1377 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1378
1379         * domain.c: Add v4 RC version string.
1380
1381 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1382
1383         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
1384         of overflow checking function.
1385
1386 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
1387
1388         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
1389         generic methods.
1390
1391         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
1392         cases for ParameterInfo.
1393
1394         Fixes #579493.
1395
1396 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1397
1398         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
1399         have has_cctor set. Fixes #575946.
1400
1401 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1402
1403         * appdomain.c: display a warning if the parsing the config file
1404         produces any error.
1405         Skip the BOM in UTF-8 files.
1406         Copy the AppDomainSetup before setting the privateBinPath so that the
1407         correct configuration file is read.
1408
1409 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1410
1411         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
1412         vtable trampoline per vtable slot index. Not used yet.
1413
1414 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1415
1416         * icall-def.h:
1417         * icall.c: add internal call that returns the system page size.
1418
1419 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1420
1421         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
1422         'int' for system classes.
1423
1424 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
1425
1426         * icall.c, icall-def.h: new icall to check for sufficient
1427         stack space.
1428
1429 2010-02-12  Mark Probst  <mark.probst@gmail.com>
1430
1431         * reflection.c (ensure_complete_type): Check that reflection_info
1432         is set, too.  Fixes crash of corlib testsuite with -O=-all.
1433
1434 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
1435
1436         * attrdefs.h:
1437         * tabledefs.h: Add NoOptimization flag.
1438
1439 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1440
1441         * sgen-gc.c: Don't consider it a missing remset if the target
1442         object is pinned - we might have done the store but not added the
1443         remset yet.
1444
1445 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1446
1447         * sgen-gc.c: When checking for missing remsets, don't assert on
1448         the first one, but print them all and then assert.
1449
1450 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1451
1452         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
1453
1454 2010-02-09  Miguel de Icaza  <miguel@novell.com>
1455
1456         * console-unix.c: On OSX Control-Y is assigned to
1457         VDSUSP (non-Posix), the
1458         suspend-program-next-time-it-tries-to-read-input command (this is
1459         different than C-z, which suspends immediately).
1460
1461         Do the same thing that bash does and ignore this setting,
1462         making our repl/getline support pasting.
1463
1464 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1465
1466         * sgen-gc.c: Simple plausibility check for scan_starts.
1467
1468 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1469
1470         * sgen-gc.c: Round up when calculating the number of scan starts.
1471
1472 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1473
1474         * reflection.c: Export mono_get_object_from_blob.
1475
1476         * object-internals.h: Ditto.
1477
1478         * icall.c: New icall property_info_get_default_value to get the default
1479         value of a property. Since using this is not common, no caching is done.
1480
1481         * icall-def.h: Add new icall.
1482
1483 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1484
1485         * class.c: Add mono_class_get_property_default_value.
1486
1487         * class-internal.h: Export mono_class_get_property_default_value.
1488
1489 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1490
1491         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
1492
1493 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1494
1495         * sgen-gc.c: introduced critical regions to allow some lockless
1496         operations and increase scalability.
1497
1498 2010-02-10  Geoff Norton  <gnorton@novell.com>
1499
1500         * reflection.c: Support building with DISABLE_REFLECTION
1501
1502 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
1503
1504         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
1505         Closes bug #566057.
1506
1507         * exception.c: fix typo in comment.
1508
1509 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
1510
1511         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
1512         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
1513
1514         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
1515
1516         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
1517         the internal API.
1518
1519         Fixes #574434.
1520
1521 2010-02-09  Mark Probst  <mark.probst@gmail.com>
1522
1523         * threads.c: Removed two assertions that were too strict.  Added a
1524         clarifying comment.  Fixes #577090.
1525
1526 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
1527
1528         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
1529         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
1530
1531         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
1532
1533         * verify.c (mono_type_get_stack_name): Fix a warning.
1534
1535 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
1536
1537         * marshal.c (mono_marshal_get_wrapper_info): Rename from
1538         mono_marshal_wrapper_info_from_wrapper.
1539
1540         * marshal.c (mono_marshal_set_wrapper_info): Rename from
1541         mono_marshal_method_set_wrapper_data, and export.
1542
1543         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
1544         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
1545         by calling mono_marshal_get_wrapper_info ().
1546
1547         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
1548         small objects which does no size checks.
1549
1550 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
1551
1552         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
1553
1554 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1555
1556         * verify.c (mono_method_verify): Use the new basic block formation pass
1557         to avoid verifying dead basic blocks. This is the same behavior as the
1558         runtime MS verifier.
1559
1560 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1561
1562         * mono-basic-block.c:
1563         * mono-basic-block.h: New implementation of a basic block formation pass.
1564         The formation pass does static liveness analysis as well to detect dead
1565         basic blocks.
1566
1567 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
1568
1569         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
1570         'this' argument in icalls.
1571
1572 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1573
1574         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
1575
1576 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1577
1578         * object.c, domain.c: When using SGen, we must register
1579         vtable->type as a root if it's not a MonoType, because then it
1580         wasn't pin-alloced.
1581
1582 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1583
1584         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
1585         at the start of nursery collections, because we might have had
1586         degraded allocations which changed next_data.
1587
1588 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1589
1590         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
1591         custom attr so this function works in cross-compiling mode.
1592
1593 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1594
1595         * class.c (make_generic_param_class): Initialize interface offsets since we
1596         set klass->inited. Fixes #574819.
1597
1598 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1599
1600         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
1601         calling the JIT domain cleanup hook.
1602
1603 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1604
1605         * pedump.c (main): Properly set the verifier mode when running the metadata
1606         verifier.
1607
1608 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1609
1610         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
1611         overlapping fields now that we're called before has_references is set.
1612
1613         * pedump.c (dump_verify_info): Clear any loader error before verifying another
1614         method. Otherwise all sort of weird stuff happens.
1615
1616 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
1617
1618         * object.c (mono_field_get_value_object): Handle nullable types correctly.
1619         Fixes #572874.
1620
1621 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
1622
1623         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
1624         Fixes #573322.
1625
1626 2010-01-23  Mark Probst  <mark.probst@gmail.com>
1627
1628         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
1629         pin_staging_area_index is greater than 0.
1630
1631 2010-01-22 Miguel de Icaza (miguel@novell.com)
1632
1633         * loader.c: Since we do nothing with the error returned, pass NULL
1634         to ignore the error.
1635
1636 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1637
1638         * reflection.c (typebuilder_setup_fields): Pretend field setup already
1639         happened before starting to encode the actual fields. This avoid ciclic
1640         dependencies and eventual crashes.
1641
1642         Fixes #572660.
1643
1644 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1645
1646         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
1647         atomic and remove the half-constructed hack in SGen.
1648
1649 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1650
1651         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
1652         has a recursive reference to itself.
1653
1654         Fixes #571863.
1655
1656 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1657
1658         * loader.c (mono_method_signature): Fix error message.
1659
1660 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1661
1662         * sgen-gc.c: Reuse to-space sections between nursery collections.
1663
1664 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1665
1666         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
1667         from the current assembly or mscorlib. Fixes bug #322957.
1668
1669 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
1670
1671         * marshal.c: Calculate the target class of the delegete invoke wrappers using
1672         get_wrapper_target_class.
1673
1674 2010-01-19  Mark Probst  <mark.probst@gmail.com>
1675
1676         * sgen-gc.c: Fix warnings.
1677
1678 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1679
1680         * verify.c (store_local): Better error message.
1681
1682 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1683
1684         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
1685         arguments.
1686
1687 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1688
1689         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
1690         function is generics variance aware.
1691
1692 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
1693
1694         * security-core-clr.c (mono_security_core_clr_can_access_internals):
1695         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
1696
1697 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
1698
1699         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
1700           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
1701
1702         Code is contributed under MIT/X11 license.
1703
1704 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1705
1706         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
1707         on a GTD.
1708
1709 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
1710
1711         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
1712         return a point to a wrapper specific info structure describing the wrapper.
1713         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
1714  
1715 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1716  
1717         * sgen-gc.c: Make minor collection section allowance adaptive,
1718         depending on the amount of memory reclaimed in the last major
1719         collection.  If more memory was reclaimed (i.e. more garbage
1720         produced), do the next collection earlier.
1721
1722 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1723
1724         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
1725         to itself.
1726
1727         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
1728         the token as parameter.
1729
1730         * verify-internals.h: Ditto.
1731
1732         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
1733
1734         Fixes #571460.
1735
1736 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1737
1738         * sgen-gc.c: Make store_remset_buffer_index long.
1739
1740 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1741
1742         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
1743
1744         Fixes #569579.
1745
1746 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
1747
1748         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
1749         off precise marking if it is available.
1750         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
1751
1752 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
1753
1754         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
1755
1756         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
1757         pinned objects.
1758
1759         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
1760         to the array allocator.
1761
1762 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1763
1764         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
1765         result of mono_compile_method (), it already includes an ftnptr.
1766
1767 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1768
1769         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
1770
1771 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
1772
1773         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
1774         hash value which doesn't depend on glib/eglib versions.
1775         (mono_metadata_type_hash): Use it.
1776
1777         * object.c (mono_method_get_imt_slot): Ditto.
1778
1779 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
1780
1781         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
1782         independently of the GTD.
1783
1784         * class.c (mono_class_setup_fields): Fail if field has negative offset.
1785
1786         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
1787         to the upper limit since instance_size includes this amount.
1788
1789         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
1790
1791         Fixes #569544.
1792
1793 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
1794
1795         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
1796         with static methods.
1797
1798         * object.c (build_imt_slots): Avoid asserting when static methods are
1799         encountered in an interface.
1800
1801 2010-01-13  Mark Probst  <mark.probst@gmail.com>
1802
1803         * sgen-gc.c (to_space_expand): Fix assertion.
1804
1805 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
1806
1807         * string-icalls.c: missing declaration fixes.
1808         * sgen-gc.c: portability fixes.
1809
1810 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1811
1812         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
1813
1814         * class.c:
1815         * cominterop.c:
1816         * icall.c:
1817         * object.c: 
1818         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
1819
1820 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1821
1822         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
1823         it can fail loading the type.
1824
1825         * class.c: Add mono_class_inflate_generic_class_checked.
1826
1827         * class.c:
1828         * verify.c:
1829         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
1830
1831 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
1832
1833         * loader.c (mono_method_signature_checked): New internal function taking an
1834         MonoError argument.
1835
1836         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
1837         Fixes build on rh 7.3.
1838
1839 2010-01-10  Aaron Bockover  <abockover@novell.com>
1840
1841         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
1842         at runtime in the same way as on Windows, which yields a relocatable
1843         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
1844         of the running mono process.
1845
1846         On TARGET_ARM, fallback () will always be executed.
1847
1848 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1849
1850         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
1851
1852 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1853
1854         * class.c (mono_class_is_assignable_from_slow): Support variant
1855         generic delegates.
1856
1857         * class.c (mono_class_implement_interface_slow): Support types with
1858         variant generic arguments.
1859
1860 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1861
1862         * verify.c: Remove some code duplication.
1863
1864 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1865
1866         * object.c: Update docs.
1867
1868 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1869
1870         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
1871
1872         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
1873         fallback trampoline as well.
1874
1875         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
1876         out argument that is set to TRUE if the match was direct. 
1877
1878         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
1879
1880         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
1881
1882 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1883
1884         * class.c: Add mono_class_interface_offset_with_variance function that does same
1885         as mono_class_interface_offset but takes variance into account.
1886
1887         * class-internal.h: Export mono_class_interface_offset_with_variance.
1888
1889         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
1890
1891 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1892
1893         * object.c:
1894         * icall.c:
1895         * class.c: Add some FIXME for due to variant generic arguments.
1896
1897         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
1898         can't use the simple bitfield check, so call mono_class_is_assignable_from if
1899         the bitfield check fails.
1900
1901 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1902
1903         * class.c (mono_class_is_assignable_from): Rework the generics variance code
1904         to be easier to read and fix bugs in the case a non generic type implements a variant
1905         interface.
1906
1907         * class.c (mono_class_has_variant_generic_params): Make non static.
1908
1909         * class-internals.h: Export mono_class_has_variant_generic_params as part of
1910         the private API.
1911
1912 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1913
1914         * assembly.c: fix MONO_PATH debug output.
1915
1916 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
1917
1918         * culture-info-table.h : regenerated.
1919
1920 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1921
1922         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
1923         types that are meant to not have a parent.
1924
1925 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1926
1927         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
1928         from the image mempool, so it is not leaked.
1929
1930 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1931
1932         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
1933
1934 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
1935
1936         * verify.c (verify_valuetype_layout_with_target): Fix case
1937         that can lead to infinite recursion. Fix bug #567861
1938
1939 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1940
1941         * pedump.c: Run code verifier even if image verification fails
1942         due to a failed type we. This allows more errors to be shown.
1943
1944 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1945
1946         * class.c (count_virtual_methods): Remove the assert and now
1947         fail properly.
1948         
1949         * class.c (setup_interface_offsets): This can fail now.
1950
1951         * class.c (mono_class_setup_vtable_general): Check for parent vtable
1952         errors. Check setup_interface_offsets errors.
1953
1954         * class.c (setup_interface_offsets): Simplify the return error logic
1955         and remove class_init_ok.
1956
1957         Fixes #560327.
1958
1959 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1960
1961         * class.c (mono_class_init): Do class verification at the beginning. Add
1962         some asserts to avoid tripping into invalid memory.
1963
1964         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
1965         g_error and a decent message.
1966
1967         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
1968
1969         Fixes #567548.
1970
1971 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1972
1973         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
1974         as inline functions instead of defining them in mempool.c.
1975
1976         * metadata-internals.h (MonoImageSet): New structure representing a set of
1977         MonoImages, which own a collection of generic instances.
1978
1979         * metadata.c: Get rid of the global generic caches, instead assign each generic
1980         instance to the image set which consists of all the images referenced by the
1981         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
1982         the memory used by generic instances to be allocated from a per image-set mempool
1983         later.
1984
1985 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1986
1987         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
1988
1989 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1990
1991         * appdomain.c (zero_static_data): Fix a warning.
1992
1993         * locales.c (construct_culture_from_specific_name): Applied patch from
1994         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
1995         not found. Fixes #567900.
1996
1997 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
1998
1999         * loader.c (mono_method_get_signature_full): Remove two asserts.
2000         Return NULL instead so that the verifier can handle both cases 
2001         gracefully.
2002
2003 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2004
2005         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
2006         so we can properly fail types instead of crashing.
2007
2008         Fixes #567676.
2009
2010 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2011
2012         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
2013         generic method.
2014
2015 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2016
2017         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
2018
2019 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2020
2021         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
2022         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
2023         we can't remove it from it since we don't hold the lock.
2024         (mon_new): Free the orphaned events here when a mon structure is added to the
2025         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
2026         this down.
2027
2028 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2029
2030         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
2031         as max stack might be zero.
2032
2033         Fixes #562320.
2034
2035 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2036
2037         Rework all uses of mono_class_setup_methods to accept that it can fail now.
2038
2039         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
2040         instances if the GTD did.
2041
2042         * class.c (mono_class_setup_properties): Ditto.
2043
2044         * class.c (mono_class_setup_events): Ditto.
2045
2046         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
2047
2048         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
2049         error setting.
2050
2051         * class.c (mono_class_init): Fail if GTD did.
2052
2053         * cominterop.c:
2054         * generic-sharing.c:
2055         * icall.c:
2056         * loader.c:
2057         * object.c:
2058         * verify.c: Properly handle failure of mono_class_setup_methods.
2059
2060 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2061
2062         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
2063         mono_class_inflate_generic_method_full internal.
2064
2065         * class.c (inflate_generic_context): Now takes a MonoError argument.
2066
2067         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
2068         errors.
2069
2070 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2071
2072         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
2073         they cannot be patched. Partly fixes #564408.
2074
2075 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2076
2077         * metadata-internals.h, reflection.c: Use the
2078         MonoDynamicImage.handleref hash table only with unmanaged keys,
2079         and add a managed hash table handleref_managed for managed keys.
2080
2081 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2082
2083         * sgen-gc.c: Unset to-space bumper between collections.  It might
2084         become invalid due to degraded allocations.
2085
2086 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
2087
2088         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
2089         with the one from the original method.
2090
2091         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
2092         compatibility.
2093
2094         * verify-internals.h: Add new function to the internal API.
2095
2096 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
2097
2098         * culture-info-tables.h: regenerated it to include the Georgian culture.
2099
2100 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2101
2102         * sgen-gc.c: Include mono/utils/memcheck.h.
2103
2104         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
2105         instead of the current domain, since the two might not match if this is called
2106         from the debugger.
2107
2108         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
2109         domain which created this assembly.
2110
2111 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2112
2113         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
2114
2115 2009-12-17  Mark Probst  <mark.probst@gmail.com>
2116
2117         * sgen-gc.c: Managed implementation of the specialized generic
2118         store write barrier.
2119
2120 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
2121
2122         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
2123         A private virtual newslot method is used to implement an interface method without exposing
2124         it to users. When querying for public instance methods, such method would hide a public one
2125         on a parent type.
2126
2127         Fixes #564379.
2128
2129 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2130
2131         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
2132         conventions.
2133
2134 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2135
2136         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
2137
2138 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2139
2140         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
2141         as they are no longer used.
2142         
2143          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
2144
2145         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
2146
2147 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2148
2149         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
2150         if the owner class has not been finished before returning reflection_info.      
2151
2152         Fixes #565127.
2153
2154 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
2155
2156         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
2157         param doesn't have custom attributes. Fixes #565117.
2158
2159         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
2160         #565120.
2161
2162 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2163
2164         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
2165
2166 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2167
2168         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
2169         same amount done by a core-clr enabled runtime.
2170
2171 2009-12-15  Marek Habersack  <mhabersack@novell.com>
2172
2173         * appdomain.c (mono_make_shadow_copy): make sure access mode of
2174         the target files is reset to writable by owner and readable by
2175         everyone else to prevent problems when updating shadow copies of
2176         files whose source is read-only. Fixes bug #556884
2177
2178 2009-12-15  Mark Probst  <mark.probst@gmail.com>
2179
2180         * class.c (mono_generic_class_get_class): Allocate the generic
2181         class via malloc again, so that it can be freed when any one of
2182         the images of its constituent types is closed.
2183
2184         * metadata.c: When closing an image, don't free generic insts and
2185         generic classes right away, but put them into a list for later
2186         freeing.
2187
2188         * image.c, metadata-internals.h: Store the free list and in the
2189         second pass of closing an image, free it.
2190
2191 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2192
2193         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
2194
2195         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
2196         types in type_hash.
2197
2198         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
2199
2200 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2201
2202         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
2203         user type.
2204
2205         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
2206         is used.
2207
2208 2009-12-14  Miguel de Icaza  <miguel@novell.com>
2209
2210         * verify.c (mono_method_verify): The Unused opcodes produce an
2211         InvalidProgramException on .NET
2212
2213 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
2214
2215         * loader.c (mono_method_get_header): Move assert after the verifier
2216         has been called on the method header.
2217
2218 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2219
2220         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
2221
2222         * appdomain.c: Bump corlib version.
2223
2224 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2225
2226         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
2227         types as well since otherwise generic instances would not return UT as arguments but
2228         their undelying system type.
2229
2230         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
2231         to reflect the fact that they can have now multiple different types.
2232
2233         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
2234
2235         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
2236
2237         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
2238
2239         * reflection.c (mono_reflection_register_with_runtime): Init super types
2240         if the image is not dynamic.
2241
2242         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
2243         check if the generic type definition is a TypeBuilder.
2244
2245         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
2246         doesn't belong to a dynamic image, skip initialization.
2247
2248         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
2249         base definition is not a dynamic type.
2250
2251 2009-12-11  Marek Habersack  <mhabersack@novell.com>
2252
2253         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
2254         mono_profiler_string_allocation
2255
2256         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
2257         if string profiling is enabled, call
2258         mono_profiler_string_allocation
2259
2260         * profiler.h: added two MonoProfileFlags -
2261         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
2262         installation functions for the hooks below.
2263
2264         * profiler-private.h, profiler.c: added two hooks:
2265         mono_profiler_string_allocation called whenever a string is
2266         allocated by InternalAllocateStr and mono_profiler_iomap called
2267         whenever IOMAP code performs an adjustement on a file path.
2268
2269 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
2270
2271         * boehm-gc.c: fixed race condition while getting the target of a
2272         disappearing link (bug #522233).
2273
2274 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2275
2276         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
2277         the error.
2278
2279 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2280
2281         * reflection.c: Add mono_reflection_register_with_runtime icall to
2282         allow a MonoGenericClass to register itself as the managed mirror of
2283         a given generic instance.
2284         This is a temporary workaround until all MGC instantiation happens in
2285         managed code.
2286
2287         * object-internals.h: Ditto.
2288
2289         * icall-def.h: Ditto.
2290
2291 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2292
2293         * sgen-gc.c (find_in_remsets): Also search the generic store
2294         remsets.
2295
2296 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2297
2298         * sgen-gc.c: Don't access class names in debugging code when
2299         unloading a domain, because they might not be valid anymore.
2300
2301 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2302
2303         * domain.c, domain-internals.h: New function mono_domain_unset().
2304
2305         * appdomain.c (unload_thread_main): Detach the thread again at the
2306         end.
2307
2308         * threads.c: When a thread exists or is detached, unset its domain
2309         so that it's NULL when, for example, a pthread destructor runs.
2310
2311         * sgen-gc.c: Assert that there is no domain set after a thread is
2312         done.
2313
2314 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2315
2316         * class.c (mono_generic_class_get_class),
2317         metadata.c (free_generic_class): Allocate generic MonoClass's from
2318         the image mempool, not via malloc.  The problem with malloc is
2319         that when unloading a domain those classes are freed before
2320         clearing the heap and SGen needs the classes.  Rewriting the
2321         unloading code to do the free later would be more work and there's
2322         no point in using malloc anyway.
2323
2324 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
2325
2326         * loader.c (mono_method_signature): Always call mono_loader_unlock 
2327         before returning.
2328
2329 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2330
2331         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
2332         user string blobs.
2333
2334         * verify-internals.h: Add new function to the internal API.
2335
2336         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
2337         check if it's a valid string.
2338
2339         * object.c (mono_ldstr): Ditto.
2340
2341         Fixes #561943.
2342
2343 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2344
2345         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
2346         from a method before returning it. This is the expected behavior.
2347
2348 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
2349
2350         * reflection.c (inflate_method): Handle the case of a regular system type.
2351
2352 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2353
2354         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
2355         gathering code.
2356
2357         * mempool.c, mempool-internals.h: New function
2358         mono_mempool_get_bytes_allocated().
2359
2360         * Makefile.am: sgen-pinning-stats.c added.
2361
2362 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2363
2364         * sgen-gc.c (create_allocator): Only use the fast path if the
2365         object size is within the small object size limit.
2366
2367 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2368
2369         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
2370         possibly adding padding to sizeof (GCMemSection).
2371
2372 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2373
2374         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
2375         reference is not in the nursery.
2376
2377 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
2378
2379         * class.c (mono_class_from_typeref): Bounds check idx against the 
2380         assemblyref table.
2381
2382 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2383
2384         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
2385         through the potential roots, then sort the results and find the
2386         pinned objects from there.
2387
2388         * Makefile.am: sgen-pinning.c added.
2389
2390 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2391
2392         * sgen-gc.c: Record generic stores in specialized remset buffers.
2393
2394 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2395
2396         * sgen-gc.c: Make pinned chunks the same size as major heap
2397         sections, and align them as well, so that we can check whether an
2398         object is in a pinned chunk or a major section in constant time.
2399
2400 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2401
2402         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
2403
2404 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2405
2406         * sgen-gc.c: Make all major heap sections the same size (currently
2407         128k) and allocate them on aligned addresses.  Small heap sections
2408         give us better granularity with pinned objects - we can free up
2409         much more memory.
2410
2411 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2412
2413         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
2414         output removed.
2415
2416 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2417
2418         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
2419
2420         * mono/metadata/assembly.c: When opening an assembly image, pass the real
2421         names in addition to the runtime generated one.
2422
2423         * mono/metadata/image.h: Add a function to take the real name of the assembly
2424         image.
2425
2426         * mono/metadata/image.c: If a real name has been passed to load an assembly,
2427         use it instead of the runtime generated one.
2428
2429         Code is contributed under MIT/X11 license.
2430
2431 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2432
2433         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
2434         before the other checks to prevent problems if the DateTime class is blittable.
2435         Hopefully fixes #559600.
2436
2437 2009-12-05  Mark Probst  <mark.probst@gmail.com>
2438
2439         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
2440         returns the largest string length that will not be put into the
2441         LOS.
2442
2443         * sgen-gc.c, gc-internal.h: New function that returns the largest
2444         object size that will not be put into the LOS.
2445
2446         * appdomain.c: Bump corlib version.
2447
2448 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2449
2450         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2451
2452         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2453
2454 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2455
2456         * reflection.c (inflate_method): Fix signature.
2457
2458         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
2459         in managed code.
2460
2461 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2462
2463         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
2464
2465 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2466
2467         * sgen-gc.c: Abstract to-space handling.
2468
2469 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
2470
2471         * loader.c (find_method_in_class): Ignore methods with broken signatures.
2472
2473         Fixes #559906.
2474
2475 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2476
2477         * sgen-gc.c: Only add references from outside the nursery to
2478         within the nursery to the global remset list.
2479
2480 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2481
2482         * appdomain.c (create_exceptions): Set the domain temporarily if
2483         necessary to avoid cross-domain references.
2484
2485 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2486
2487         * verify.c (get_stack_type): Return that the type is invalid instead of
2488         asserting.
2489
2490         * verify.c (mono_method_verify): Verify that all locals and arguments
2491         have valid stack types.
2492
2493         Fixes #559913.
2494
2495 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2496
2497         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
2498         bounds checking overflow aware.
2499
2500         Fixes #559910.
2501
2502 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2503
2504         * verify.c (do_invoke_method): Check for invalid method signatures.
2505
2506         Fixes #553450.
2507
2508 2009-12-02  Jb Evain  <jbevain@novell.com>
2509
2510         * appdomain.c (MONO_CORLIB_VERSION): bump.
2511         * icall-def.h (get_base_definition): renamed to get_base_method
2512         and add a boolean argument indicating we want the original
2513         method definition, or the immediate base method.
2514         * icall.c: apply the get_base_definition to get_base_method change.
2515
2516 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2517
2518         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
2519
2520         Fixes #558042.
2521
2522 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
2523
2524         * class.c: remove asserts for invalid type token in
2525         mono_class_name_from_token(), mono_assembly_name_from_token() and
2526         mono_class_create_from_typedef () (fixes bug #553318).
2527
2528 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
2529
2530         * metadata.c, class.c, loader.c: remove assert after bsearch() for
2531         incorrect assemblies (bug #553322).
2532
2533 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2534
2535         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
2536
2537         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
2538
2539         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
2540
2541         * class.c (inflate_generic_context): Ditto.
2542
2543         * loader.c (method_from_methodspec): Ditto.
2544
2545         Fixes #558230.
2546
2547 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2548
2549         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
2550
2551         * class.c (mono_class_create_from_typespec): Ditto.
2552
2553         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
2554
2555         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
2556
2557         Fixes #558184.
2558
2559 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2560
2561         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
2562
2563         * verify.c (verify_delegate_compatibility): Ditto.
2564
2565         * verify.c (do_newobj): Ditto.
2566
2567         Fixes #558046.
2568
2569 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2570
2571         * sgen-gc.c: Use a gray queue instead of requiring that gray
2572         objects are in a contiguous region.
2573
2574         * sgen-gray.c: The gray queue implementation.
2575
2576         * Makefile.am: sgen-gray.c added.
2577
2578 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2579
2580         * appdomain.c: When unloading a domain, zero its static data and
2581         perform a minor collection when using SGen.  That will get rid of
2582         all the remsets pointing into that domain's static data.
2583
2584         * sgen-gc.c: Allow remsets into static data.  By doing this we
2585         need less checks so we're more efficient.
2586
2587 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2588
2589         * verify.c (mono_method_verify): Check for catch clauses with broken
2590         types.
2591
2592         Fixes #558465.
2593
2594 2009-12-01  Jb Evain  <jbevain@novell.com>
2595
2596         * class.c (make_generic_param_class): set the namespace of
2597         the generic parameter class from its owner, if available.
2598
2599 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2600
2601         * verify.c (code_bounds_check): Do proper overflow checking.
2602
2603         * verify.c (mono_method_verify): The number of switch entries is
2604         an unsigned int. Properly bounds check it.
2605
2606         Fixes #558594.
2607
2608 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2609
2610         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
2611         mono_metadata_method_has_param_attrs which only checks if a given param
2612         list has a non zero flags entry.
2613
2614         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
2615         to inform how many params should we expect to decode.
2616
2617         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
2618         as it's faster than mono_metadata_get_param_attrs.
2619
2620         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
2621         add mono_metadata_method_has_param_attrs.
2622
2623 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2624
2625         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
2626         failures.
2627
2628         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
2629         is -1 but its class is broken.
2630
2631         Fixes #558522.
2632
2633 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2634
2635         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
2636         for parameter overflow.
2637
2638         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
2639         of mono_metadata_get_param_attrs.
2640
2641         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
2642         API.
2643
2644         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
2645
2646 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2647
2648         * class.c (mono_class_setup_fields): Check for fields with broken types.
2649
2650         Fixes #558741.
2651
2652 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
2653
2654         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
2655         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
2656         its TypeBuilder::CreateType ().
2657
2658         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
2659         if not needed.
2660
2661         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
2662         to make setup_interface_offsets happy.
2663
2664         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
2665         compilation now works.
2666
2667 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
2668
2669         * appdomain.c (create_exceptions): New helper function extracted from
2670         mono_runtime_init () to precreate objects used during exception handling.
2671         (mono_runtime_init): Call it.
2672         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
2673
2674 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
2675
2676         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
2677         compilation until the proper one is found.
2678
2679 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
2680
2681         * class.c (mono_class_setup_vtable_general): Cache the result of
2682         get_virtual_methods () since it can be slow because of the metadata
2683         optimization.
2684
2685         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
2686         from a MonoValueHashTable for now, since the later is based on an earlier
2687         version of hpj's internal probing code and seems to have serious collision
2688         issues.
2689
2690         * loader.c (mono_get_method_full): Update after the change above.
2691
2692 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2693
2694         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
2695
2696 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2697
2698         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
2699         the GTD instead of the DGC instead of crashing.
2700
2701         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
2702         required. Inflate fields if needed.
2703
2704         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
2705         finished. Renamed.
2706
2707 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2708
2709         * class.c (check_interface_method_override): Check for NULL signatures and fail
2710         the type.
2711
2712         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
2713
2714         Fixes #553428.
2715
2716 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2717
2718         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
2719         the MONO_METHOD_FLAGS column instead of decoding the whole row.
2720
2721 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2722
2723         * loader.c (field_from_memberref): Resolve the class first then the field
2724         signature. Remove a lot of duplicated code and make sure we don't pass valid
2725         values to mono_loader_set_error_field_load.
2726
2727         Fixes #553306.
2728
2729 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2730
2731         * class.c (inflate_generic_type): Change code to use new signature of
2732         mono_error_set_bad_image.
2733
2734         Fixes #558124.
2735
2736 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
2737
2738         * verify.c (mono_method_verify): Don't free ctx.params items if 
2739         we aborted while inflating the ctx.locals. Complete previous fix
2740
2741 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
2742
2743         * verify.c (mono_method_verify): Use the uninflated type name, 
2744         when the inflated is null, to report errors. Also take care when
2745         freeing, not to free everything since, in case of an error, some
2746         stuff would be copies (i.e. not allocated by the function itself)
2747         Fix bug #558145
2748
2749 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2750
2751         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
2752         or overflow. The caller must have done this check explicitly. This guard us
2753         from accessing invalid memory.
2754
2755         * verify.c (do_push_static_field): Check for stack overflow.
2756
2757         Fixes #553333.
2758
2759 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2760
2761         * loader.c (find_method_in_class): Don't crash if the signature cannot
2762         be resolved.
2763
2764         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
2765         of asserting for the case of invalid params.
2766
2767         Fixes #553304.
2768
2769 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
2770
2771         * image.c (mono_image_load_module): Fix crash when a bad assembly
2772         has no module at all (fix bug #553412) and also replace the 
2773         g_assert with a return NULL (documented return value for failure)
2774
2775 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
2776
2777         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
2778
2779 2009-11-23  Miguel de Icaza  <miguel@novell.com>
2780
2781         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
2782         file attribute to managed code and avoid doing the mask/attribute
2783         checks here. 
2784
2785 2009-11-22  Miguel de Icaza  <miguel@novell.com>
2786
2787         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
2788         the managed world.
2789
2790         * icall-def.h: New entry points.
2791         
2792 2009-11-19  Mark Probst  <mark.probst@gmail.com>
2793
2794         * process.c: Don't put references to managed objects into a
2795         g_ptr_array.
2796
2797 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
2798
2799         * class.c (can_access_internals): Allow CoreCLR to participate in
2800         allowing (or not) [InternalsVisibleTo] between assemblies.
2801         * security-core-clr.c|h: Make sure that only trusted code (a 
2802         superset of platform code) can access the internals of platform
2803         code.
2804
2805 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
2806
2807         * reflection.c: use the correct base class to get the virtual method
2808         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
2809
2810 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
2811
2812         * security-core-clr.c (get_caller_no_reflection_related): 
2813         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
2814         it's still reflection and must be filtered correctly.
2815
2816 2009-11-16  Mark Probst  <mark.probst@gmail.com>
2817
2818         * object.c (compute_class_bitmap): Fix for large bitmaps.
2819
2820 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
2821
2822         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
2823
2824         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
2825         koush@koushikdutta.com). Disable GC_no_dls on android.
2826
2827 2009-11-12  Mark Probst  <mark.probst@gmail.com>
2828
2829         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
2830         tlab_next points outside the TLAB because the allocator was
2831         interrupted.
2832
2833 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2834
2835         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
2836
2837 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2838
2839         * object-internals.h: Change signature for mono_string_to_utf8_image.
2840
2841         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
2842         argument.
2843
2844         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
2845         exceptions due to mono_string_to_utf8.
2846
2847 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2848
2849         * object-internals.h: Change signature for mono_string_to_utf8_mp.
2850
2851         * object.c (mono_remote_class): Make sure all resources are released before
2852         raising an exception.
2853
2854         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
2855
2856 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2857
2858         * mono-perfcounters.c (network_get_impl): Change variable initialization
2859         ordering to fix potential memory leak in case of exceptions.
2860
2861         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
2862         encoded strings.
2863         
2864 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2865
2866         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
2867         variable initialization ordering to fix potential memory leak in case
2868         of exceptions.
2869
2870 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
2871
2872         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
2873         needed.
2874
2875 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2876
2877         * appdomain.c: Fix shadow path code to better deal with exceptions.
2878
2879 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2880
2881         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
2882         exception in the middle of the runtime code.
2883
2884 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2885
2886         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
2887         leak memory with broken envvar value.
2888
2889 2009-11-06  Mark Probst  <mark.probst@gmail.com>
2890
2891         * reflection.c (mono_reflection_setup_internal_class): Because
2892         nested classes are not added to the name cache, we must put them
2893         in the reflection_info_unregister_classes list.
2894
2895 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
2896
2897         * class.c: When CoreCLR is enabled don't call mono_init_com_types
2898         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
2899         platform (trusted) code. Instead we return a TypeLoadException to
2900         be thrown later. This is the exception thrown by Silverlight 2 if
2901         a type, inside application (user) code is marked with [ComImport]
2902
2903 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2904
2905         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
2906         mono_is_debugger_attached () too.
2907
2908         * mono-debug.c (mono_is_debugger_attached): New helper function.
2909         (mono_set_is_debugger_attached): Ditto.
2910
2911 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2912
2913         * object-internals.h: Add mono_string_to_utf8_checked.
2914
2915         * object.c: Implement mono_string_to_utf8_checked.
2916
2917 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2918
2919         * class.c: Add missing check for load errors after every
2920         call to mono_class_setup_fields
2921
2922         Fixes #552282.
2923
2924 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2925
2926         metadata-verify.c (verify_tables_schema): Fix the error message.
2927
2928 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2929
2930         * metadata.c: Change event table schema to use TDOR for event type
2931         as this is what it's meant to be.
2932
2933         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
2934         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
2935         entry.
2936
2937         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
2938         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
2939         rows in MONO_TABLE_GENERICPARAM.
2940
2941         Fixes #552289.
2942
2943 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2944
2945         * class.c (mono_image_add_to_name_cache): Assert on duplicate
2946         insertion.
2947
2948         * reflection.c (mono_reflection_setup_internal_class): Avoid
2949         registering a gc root the same MonoClass multiple times.
2950         Don't register nested types on the global scope as they should
2951         not be available there.
2952
2953 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2954
2955         * culture-info-tables.h: regenerated.
2956
2957 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2958
2959         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
2960
2961 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
2962
2963         * string-icalls.c|h: Remove string internal calls that are not 
2964         used anymore by the class libraries.
2965         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
2966         which is not used in the class librairies.
2967         * icall-def.h: Update tables.
2968
2969 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2970
2971         * class.h: Move mono_class_inflate_generic_type_checked...
2972
2973         * class-internals.h: to here and make it internal. We don't want to
2974         further expose MonoGenericContext. 
2975
2976 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2977
2978         * verify.c (mono_method_verify): Improve error message.
2979
2980 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2981
2982         * reflection.c (fieldref_encode_signature): If field_image is NULL then
2983         the token is already properly encoded. Fixs 4.0 build.
2984
2985 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2986
2987         * locales.c (construct_number_format): Check if the number index is
2988         valid before trying to use it, if not, just return.
2989         
2990 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
2991
2992         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
2993         since that loses the abort state. Fixes #539394.
2994
2995 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
2996
2997         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
2998         explicit this argument to the call signature.
2999         (mono_marshal_get_icall_wrapper): Ditto.
3000
3001 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3002
3003         * reflection.c (fieldref_encode_signature): Add new field_image parameter
3004         to indicate which assembly to use when resolving a custom-mod.
3005
3006         Fixes handling of volatile fields used across assemblies as reported in #551513.
3007
3008 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3009
3010         * loader.c: Improve error messages.
3011
3012 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3013
3014         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
3015         of interfaces. Fixes IKVM.
3016
3017         * class.c (mono_class_setup_vtable_general): Improve debug spew.
3018
3019 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3020
3021         * verify.c (verifier_inflate_type): Return the inflated type on success.
3022
3023 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
3024
3025         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
3026
3027         * threads.c (mono_thread_attach): Call the profiler thread start callback.
3028
3029         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
3030
3031         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
3032         flag set.
3033
3034         * profiler.c: Add new profiler callbacks for runtime invoke.
3035
3036         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
3037
3038 2009-11-01  Mark Probst  <mark.probst@gmail.com>
3039
3040         * sgen-gc.c: Keep track of the reason for a major collection and
3041         write it to the heap-dump file.
3042
3043 2009-10-31  Miguel de Icaza  <miguel@novell.com>
3044
3045         * threads.c: refactor the code that initializes the
3046         thread_start_args into a reusable function and use this in the two
3047         methods that start up threads.
3048
3049 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
3050
3051         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
3052         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
3053
3054 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3055
3056         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
3057         Until now, we only had the per-cpu(core) counters.
3058
3059 2009-10-28  Mark Probst  <mark.probst@gmail.com>
3060
3061         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
3062         mono_gc_get_suspend_signal(), which returns the suspend signal
3063         number used by the GC.
3064
3065 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
3066
3067         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
3068
3069         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
3070         signalling start_notify.
3071
3072 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3073
3074         * appdomain.c: do not test the st_mode field for shadow-copies.
3075         Fixes bug #545276.
3076
3077 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3078
3079         * threadpool.[ch]: added hooks for thread start/finish and item
3080         processing begin/end. For monotouch use only.
3081
3082 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
3083
3084         * threads.c (mono_thread_get_name): New helper function.
3085
3086         * reflection.c (resolve_object): Set handle_class for strings too.
3087         (mono_reflection_create_custom_attr_data_args): New helper function to decode
3088         a cattr blob into a set of arrays and structures without creating the custom
3089         attributes themselves.
3090         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
3091
3092         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
3093
3094         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
3095         function.
3096
3097 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3098
3099         * verify.c: Replace calls to mono_class_inflate_generic_type with
3100         mono_class_inflate_generic_type_checked. Fixes #480005.
3101
3102 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3103
3104         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
3105         object since not all paths lead to callees initing it.
3106
3107 2009-10-23  Alp Toker  <alp@nuanti.com>
3108
3109         Fix embedding API breakage from r144688. mono-compiler.h is an internal
3110         header and should not be shipped:
3111
3112         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
3113         which is specific to the mono build. Not going to work.
3114
3115 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
3116
3117         * security-manager.c: Report if core-clr is active from
3118         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
3119         to allow Moonlight BCL to behave appropriately (both in browser
3120         and outside, e.g. smcs)
3121
3122 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3123
3124         * mono-config.c: ignore UTF-8 BOM and report parser errors.
3125         Fixes bug #549108.
3126
3127 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3128
3129         * class.c: fix typo.
3130
3131 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
3132
3133         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
3134         a MonoError parameter.
3135
3136         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
3137         version that can does proper error handling.
3138
3139         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
3140
3141         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
3142
3143         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
3144
3145 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3146
3147         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
3148         NO_UNALIGNED_ACCESS is defined.
3149
3150 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
3151
3152         * marshal.c (mono_string_builder_to_utf16): Applied patch from
3153         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
3154         Fixes #549173.
3155
3156 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3157
3158         * sgen-gc.c: Shorten sections whenever possible.
3159
3160 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3161
3162         * sgen-gc.c: Use our portable semaphore #defines.
3163
3164 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3165
3166         * sgen-gc.c: A debug option for dumping the heap layout to a file
3167         after each collection.
3168
3169 2009-10-21  Mark Probst  <mark.probst@gmail.com>
3170
3171         * sgen-gc.c: Make managed write barriers atomic via
3172         thread-restarts.
3173
3174 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3175
3176         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
3177         methods. Fixes #543021.
3178
3179 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3180
3181         * socket-io.[ch]: fix VS build.
3182
3183 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3184
3185         * icall-def.h:
3186         * socket-io.[ch]: implemented SendFile.
3187
3188 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3189
3190         * class.c (mono_class_create_from_typedef): Initialize class->element_class
3191         before the interfaces to avoid crashes later if class initialization fails.
3192         Fixes #548417.
3193
3194         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
3195         Fixes #548276.
3196
3197 2009-10-20  Marek Safar  <marek.safar@gmail.com>
3198
3199         * domain.c: Bump 4.0 version.
3200
3201 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
3202
3203         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
3204         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
3205         check since 'pubkey' can't be NULL at this stage
3206         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
3207         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
3208         initialization of 'iter'
3209
3210 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
3211
3212         * cominterop.c : Search the interface parts of vtable to find 
3213           method matches.  Fixes 547030.
3214
3215         Code is contributed under MIT/X11 license.
3216
3217 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
3218
3219         * marshal.c: BeginInvoke cannot be called on multicast delegates with
3220         multiple targets. Fixes bug #574426.
3221
3222 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3223
3224         * profiler.h: Put here the definition of
3225         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
3226         (and fix the build...).
3227
3228 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3229
3230         * profiler.c, profiler.h, profiler-private.h:
3231         Added support for different ways of getting call chains in stat mode.
3232
3233 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3234
3235         * object.c, object-internals.h: New function for computing the
3236         size of an array, factored out of mono_array_new_full().  Use
3237         SGen's functions for allocating arrays and vectors.
3238
3239         * sgen-gc.c, gc-internal.h: Special functions for allocating
3240         arrays and vectors without race conditions.  A managed array
3241         allocator method.
3242
3243         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
3244
3245 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3246
3247         * object.c, object.h, icall.c: Write barriers do the copying now,
3248         as well, so no need for an additional memcpy.
3249
3250         * sgen-gc.c: Lock when storing remsets.  Do the memory
3251         copying/moving in the write barriers.
3252
3253         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
3254
3255         * reflection.c: Added an assert.
3256
3257 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3258
3259         * threads.c, process.c: A few missing write barriers.
3260
3261 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
3262
3263         * mono-perfcounters.c, mono-perfcounters-def.h: Add
3264         network performance counters for bytes sent per second, bytes
3265         received per second, and bytes total per second.
3266
3267         Code is contributed under MIT/X11 license.
3268
3269 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3270
3271         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3272         Fix warning.
3273
3274 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3275
3276         * threads.c, object-internals.h, object.c: Move code for
3277         transferring an object to a different domain (via
3278         serialization/remoting) to object.c.
3279
3280         * object.c (call_unhandled_exception_delegate): If the exception
3281         is in a different domain than the delegate, transfer the exception
3282         to that domain.
3283
3284 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
3285
3286         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
3287         Fixes #322934.
3288
3289 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
3290
3291         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
3292
3293 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3294
3295         * object.c (mono_method_return_message_restore): Handle the case
3296         where the argument is an instance of a generic type.  Fixes
3297         #544446.
3298
3299 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3300
3301         * object.c (set_value): Write barrier fix - we must pass the
3302         count, not the size.
3303
3304 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
3305
3306         * domain.c (mono_init_internal): Print a useful error message when encountering
3307         an old mscorlib, instead of crashing. Fixes #544307.
3308
3309 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
3310
3311         * appdomain.c (copy_app_domain_setup): Fix a warning.
3312
3313         * debug-helpers.c (dis_one): Ditto.
3314
3315 2009-10-04  Mark Probst  <mark.probst@gmail.com>
3316
3317         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
3318         into the new domain, instead of referencing the original one.
3319
3320         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
3321         non-static.
3322
3323         * appdomain.c: Corlib version bump.
3324
3325 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3326
3327         * threadpool.c: one more...
3328
3329 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3330
3331         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
3332         threads to die because we're shutting down. delgate5.exe works again.
3333
3334 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
3335
3336         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
3337           ccw_interface_hash table when a ccw is finalized.
3338
3339         Code is contributed under MIT/X11 license.
3340
3341 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3342
3343         * assembly.c, domain.c, image.c, metadata-internals.h: Split
3344         domain and image unloading into two steps.  We must do this
3345         because clearing the domain in SGen requires the class metadata to
3346         be intact, but we need to free the mono_g_hash_tables in case a
3347         collection occurs during domain unloading and the roots would trip
3348         up the GC.
3349
3350 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3351
3352         * object-internals.h: Remove serialized culture fields from
3353         MonoInternalThread.
3354
3355         * icall-def.h, thread-types.h, threads.c: Remove serialized
3356         culture icalls.
3357
3358         * appdomain.c: Corlib version bump.
3359
3360 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
3361
3362         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
3363         Fixes #543133.
3364
3365 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3366
3367         * sgen-gc.c: Try to shorten the new section after a major
3368         allocation to avoid ever-growing sections.
3369
3370 2009-10-13  Martin Baulig  <martin@ximian.com>
3371
3372         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
3373         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
3374         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
3375         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
3376
3377         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
3378
3379 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
3380
3381         * threadpool.c: fixed the order in which 'completed' and the wait
3382         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
3383         No need to use the wait_handle field of ASyncCall. Make sure the
3384         threadpool is active when adding a job or queueing an idle thread.
3385
3386 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
3387
3388         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
3389
3390         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
3391         when using --compile-all.
3392
3393 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3394
3395         * metadata.c (free_generic_class): Unregister the field_objects
3396         roots if we're using SGen.
3397
3398 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3399
3400         * reflection.c (mono_dynamic_image_free): Deregister the GC root
3401         for GenericParamTableEntry.gparam.
3402
3403 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3404
3405         * marshal.c: don't create the handle when calling. It is created later
3406         if needed.
3407
3408 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3409
3410         * sgen-gc.c: Warning fixes.
3411
3412 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3413
3414         * sgen-gc.c: New debug option "xdomain-checks", which scans the
3415         whole heap for cross-domain references before each collection.
3416
3417         * sgen-scan-object.h: The scan action can now use SCAN to scan the
3418         object.
3419
3420         * threadpool-internals.h, threadpool.c: New function
3421         mono_thread_pool_is_queue_array() for checking whether a given
3422         array is used as a (cross-domain) queue by the thread pool code.
3423
3424 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3425
3426         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
3427         searches the whole heap for objects containing a specific
3428         reference.  Only for debugging.
3429
3430 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3431
3432         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
3433
3434         * icall-def.h, threads.c, threads-types.h: New icalls for copying
3435         byte arrays between domains.
3436
3437 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3438
3439         * threadpool.c:
3440         * class-internals.h:
3441         * mono-perfcounters-def.h:
3442         * mono-perfcounters.c:
3443         -There is a list of idle threads
3444         -Each of those idle threads wait on their own WaitHandle instead
3445         of all of them using the same semaphore. When a new work item is
3446         added, the job is assigned directly to an idle thread or a newly
3447         created one if possible and then the handle for that thread is
3448         signaled. Compare that to the current approach where all the
3449         threads in the pool compete to dequeue a job from the same
3450         queue.
3451         -New struct ThreadPool that brings together the bunch of static
3452         variable for each threadpool (IO and regular).
3453         -New performance counters: # of items added and its rate per
3454         threadpool. The rate will be used later, perhaps together with
3455         other perf. counters, to decide when idle threads should exit.
3456
3457 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
3458
3459         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
3460         Fix typo on Windows build.      
3461         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
3462         
3463         Code is contributed under MIT/X11 license.
3464
3465 2009-09-25  Mark Probst  <mark.probst@gmail.com>
3466
3467         * object-internals.h: The Thread class is split up into Thread and
3468         InternalThread now.  We have exactly one InternalThread per
3469         thread, and at most one Thread per appdomain per thread.  Most
3470         data is stored in InternalThread.  All InternalThread objects live
3471         in the root domain.
3472
3473         * class-internals.h: Add internal_thread_class to MonoDefaults.
3474
3475         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
3476         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
3477         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
3478         resulting from the split of the Thread class.
3479
3480         * gc-internal.h: Prototype for new function for checking whether a
3481         thread is the finalizer thread.
3482
3483         * appdomain.c: Corlib version bump.
3484
3485 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3486
3487         * appdomain.c|h: Add a mono_domain_try_unload method which is
3488         equivalent to mono_domain_unload, except that it returns an exception
3489         instead of throwing it. Make mono_domain_unload use the
3490         mono_domain_try_unload method to avoid code-duplication.
3491
3492 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
3493
3494         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
3495         a problem.
3496
3497 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
3498
3499         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
3500         aborting when a conversion is not implemented.
3501
3502 2009-09-23  Miguel de Icaza  <miguel@novell.com>
3503
3504         * verify.c: when comparing culture strings, use g_ascii_strcmp
3505
3506         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
3507         when comparing public key tokens to use memcmp on 16 bytes.   I do
3508         not believe this ever worked as advertised in the past.
3509
3510         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
3511         which would have always failed earlier.
3512
3513 2009-06-25  Miguel de Icaza  <miguel@novell.com>
3514
3515         * gc.c: Raise a NullArgumentException if the object passed is
3516         null.
3517
3518 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
3519
3520         * image.c (mono_image_close): Atomically decrement the reference count and
3521         remove the image from the hash tables, to prevent another thread from seeing a
3522         dying MonoImage. Fixes #541194.
3523
3524 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3525
3526         * threadpool.c: actually use the minimum number of 'completion ports'
3527         (for us is just a potential worker thread).
3528
3529 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3530
3531         * threadpool.c: remove ares_htable. It does not make sense any more
3532         since the same objects are now stored in GC-tracked arrays while they are
3533         in the queue.
3534
3535 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3536
3537         * threadpool.c: increase the minimum length of the queues to 128.
3538         Remove warning.
3539
3540 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
3541
3542         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
3543         return the modified signature used by string ctors.
3544
3545 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
3546
3547         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
3548         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
3549         method, to be used by full-aot.
3550
3551 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3552
3553         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
3554         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
3555         be known to be good.
3556
3557         * class.c (mono_class_init): Fail array types if their element type fails initialization
3558         as well.
3559
3560         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
3561         initialization, additionally we request the element_type vtable to be initialized as well.
3562
3563         This is fine and should not increase the working set in any meaningful way since it's reasonable
3564         to assume       that most code will create an array and eventually populate it, which will require the
3565         type's vtable to be initialized.
3566
3567         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
3568
3569 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
3570
3571         * normalization-tables.h : regenerated.
3572
3573 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
3574
3575         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
3576         a leb128 encoding can take up to 5 bytes.
3577
3578 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3579
3580         * class.c (verify_class_overrides): Remove useless argument.
3581
3582         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
3583         before interface enumeration as this is no longer required.
3584
3585 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3586
3587         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
3588         used under mono_class_init context. This functions avoid any code path that
3589         calls mono_class_init, which leads it to be slow as some things like the interface
3590         bitmap are not available.
3591
3592         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
3593         of it's own broken version. Fixes the verifier part of #538588.
3594
3595         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
3596         API.
3597
3598 2009-09-15  Mark Probst  <mark.probst@gmail.com>
3599
3600         * class.c (mono_class_init): Always set an exception in a class if
3601         vtable setup fails.  Fixes #538577.
3602
3603         * generic-sharing.c: Raise an exception if mono_class_vtable()
3604         returns NULL.
3605
3606 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
3607
3608         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
3609         methods of vtypes, as they could be incorrectly shared with static methods
3610         taking an IntPtr argument.
3611
3612 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3613
3614         * domain.c:
3615         * object.c:
3616         * class-internals.h: renamed waithandle_class to
3617         manualresetevent_class.
3618         * marshal.c: propagate the exception if a remoting BeginInvoke call
3619         fails.
3620
3621 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3622
3623         * object.c: Properly handle vtable failures.
3624
3625 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3626
3627         * socket-io.c: Assert on vtable failure.
3628
3629         * mono-mlist.c: Assert on vtable failure.
3630
3631 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3632
3633         * marshal.c: Assert on vtable failure.
3634
3635 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3636
3637         * icall.c: Properly handle vtable failures.
3638
3639 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3640
3641         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
3642
3643 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3644
3645         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
3646
3647         * console-unix.c (do_console_cancel_event): Same.
3648
3649 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3650
3651         * class-internals.h: Add mono_class_vtable_full function that allows control
3652         if an exception should be raised or not.
3653
3654         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
3655         to do what its documentation say, that is to return NULL and set exception_type on
3656         failure.
3657
3658         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
3659         and change the code to honor it.
3660
3661 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3662
3663         * verify.c: Fix typo in error message.
3664
3665 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
3666
3667         * security-core-clr.c: Fix default_platform_check so it can run
3668         the runtime coreclr tests (without an infinite recursion when
3669         throwing an exception).
3670
3671 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3672
3673         object.c (mono_delegate_ctor_with_method): Guard against null method.
3674
3675 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3676
3677         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
3678         that should be replaced with error handling later.
3679
3680 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3681
3682         * marshal.c (mono_delegate_end_invoke): Fix warning.
3683
3684 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3685
3686         * loader.c (mono_field_from_token): Properly handle invalid
3687         dynamic tokens.
3688
3689 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3690
3691         * pedump.c (verify_image_file): Skip types that can't be
3692         decoded.
3693
3694 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3695
3696         * verify.c: Look for recursive valuetypes only against the
3697         type been initialized as this is a lot simpler and works.
3698
3699 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3700
3701         * verify.c: Ensure that fields are properly loaded before
3702         checking them.
3703
3704 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
3705
3706         * object.c (mono_object_get_virtual_method) : Call 
3707           mono_cominterop_get_invoke if the object is a COM object.
3708
3709         Code is contributed under MIT/X11 license.
3710
3711 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
3712
3713         * verify.c: Check for recursive valuetype definitions.
3714
3715 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
3716
3717         Use inheritance-aware interface offsets. Inherited types use the same offsets
3718         of their parents. This reduce offset duplication in case more than one type in
3719         the inheritance tree explicitly implements the same interface.
3720
3721         This also removes a source of vtable bubbles found in #532409. An abstract type
3722         isn't required to provide abstract methods to all interfaces it implements, which
3723         resulted in a bubble with the previous scheme as the child would get a non-full
3724         vtable from its parent. We fail all concrete types with vtable bubbles, so this
3725         should be fixed.
3726
3727         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
3728         it's expected to not cause any significant increase beyond that.
3729
3730         * class.c (setup_interface_offsets): Compute super class iface offsets
3731         first to force sharing.
3732
3733         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
3734         dumping only the relevant ones.
3735
3736         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
3737         methods a new slot regardless if they belong to an interface or not. This allows
3738         an inherited type to override the iface method separately from the class one.
3739
3740 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3741
3742         * threadpool.c: make the Sleep() alertable to prevent delays exiting
3743         applications that take less than 2s to execute.
3744         Bug #524984 fixed.
3745
3746 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
3747
3748         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
3749
3750         * object.c (mono_get_runtime_callbacks): New helper function to return
3751         the runtime callbacks.
3752
3753         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
3754         mono_get_runtime_build_info () as the display name.
3755         
3756 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
3757
3758         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
3759         argument, since NEWARR expects a native int. Fixes #481559.
3760
3761 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3762
3763         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
3764         against broken SRE methods.
3765
3766 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3767
3768         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
3769         a NULL variable. Abort early on failure.
3770
3771 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3772
3773         * class.c (can_access_type): Fail visibility test for non nested
3774         types with nested visibility.
3775
3776 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
3777
3778         * assembly.c (parse_public_key): Avoid allocating (and not 
3779         freeing) the public key array when it's not requested by the 
3780         caller.
3781         * threads.c (mono_thread_manage, mono_thread_create_internal, 
3782         ves_icall_System_Threading_Thread_Thread_internal): Free 
3783         allocated memory on error.
3784
3785 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3786
3787         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
3788
3789 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3790
3791         * class.c (mono_class_setup_fields): Remove duplicated local variable
3792         named gklass.
3793         Rename gklass to gtd to reflect the fact that it points to the generic
3794         type definition.
3795         Remove the duplicated call to mono_class_setup_fields on gtd and move
3796         the error check to the beginning.
3797
3798 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3799
3800         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
3801         Remove cruft of the previous patch.
3802
3803 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3804
3805         * metadata-verify.c (verify_method_table): Check for abstract + final.
3806         Fixes #534175.
3807
3808 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3809
3810         * verify.c (verify_class_fields): Check for duplicate fields.
3811
3812 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3813
3814         * metadata-verify.c: Verify the typeref table for duplicates.
3815
3816 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3817
3818         This reverts r140936 and properly handles interfaces with static methods. The
3819         right fix is to ensure vtables without bubles which is an easier to verify
3820         constraint. We should avoid such special cases as of the reverted patch as those
3821         only make the runtime more brittle.
3822
3823         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
3824         static methods on interfaces.
3825
3826         * class.c (setup_interface_offsets): Use the number of virtual methods when
3827         calculating interface offsets instead of the number of methods. This way we
3828         avoid bubles on the layout.
3829
3830 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
3831
3832         * metadata-verify.c (verify_metadata_header): Some very smart
3833         obfuscators like to add extra stream headers. Ignore them.
3834
3835 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
3836
3837         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
3838         methods correctly.
3839
3840 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
3841
3842         * metadata-verify.c: Verify for duplicated types.
3843
3844 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
3845
3846         * metadata-verify.c (verify_typedef_table): Verify for nested types
3847         without an entry on the nested class table.
3848
3849 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
3850
3851         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
3852         <tom_hindle@sil.org>. Add locking around hash table accesses.
3853
3854 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3855
3856         * verify.c (mono_verifier_verify_class): Verify all interface if
3857         really are interfaces. Fixes #534184.
3858
3859 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
3860
3861         * pedump.c: Initialize all types during metadata validation so we report
3862         errors only detected as part of class initialization.
3863
3864 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
3865
3866         * metadata-verify.c (verify_method_table): PInvoke requires method to
3867         be static. Fixes #534189
3868
3869 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
3870
3871         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
3872         being NULL.
3873
3874 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3875
3876         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
3877         for holes or bad methods. Fixes #525314.
3878
3879 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3880
3881         * class.c (setup_interface_offsets): Don't allocate slot
3882         for the same interface multiple times. This creates bubbles
3883         that waster space and make vtable verification harder.
3884
3885         The same interface get a slot multiple times since we need
3886         to get the closure of all implemented interfaces, which means
3887         the same interface is reported multiple times.
3888
3889 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3890
3891         * verify.c (mono_verifier_verify_class): Don't check the fields
3892         of generic instances since the context on which they got expanded
3893         might lead to false positives.
3894
3895         Such thing happens when a generic type is inflated in the context
3896         of a generic method and the inflated type of a field turns into a
3897         generic method argument, which causes the checking code to think
3898         it's an invalid class when it's not.
3899
3900 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3901
3902         * verify.c (mono_type_is_valid_in_context): Verify if type
3903         is NULL and remove duplicate test.
3904
3905 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3906
3907         * verify.c (mono_verifier_verify_class): Check fields for
3908         invalid generic arguments.
3909
3910 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3911
3912         * class.c (verify_class_overrides): Verify if for static
3913         and non virtual methods.
3914
3915 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3916
3917         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
3918         Check for errors after retrieving the vtable.
3919
3920 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3921
3922         * class.c (mono_class_setup_vtable_general): Verify
3923         if method overrides are valid before processing them.
3924
3925 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3926
3927         * marshal.c (mono_array_to_lparray): Fix minimal build with
3928         cominterop disabled.
3929
3930         * marshal.c (mono_free_lparray): Same.
3931
3932 2009-08-21  Mark Probst  <mark.probst@gmail.com>
3933
3934         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
3935         the hash function for the ares_htable.
3936
3937 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
3938
3939         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
3940         bit for assembly flags. MS is ok with it but there is no spec anywhere
3941         on its mean
3942
3943 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3944
3945         * class.c (mono_class_create_from_typedef): Emit profiler events
3946         in all cases.
3947
3948 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3949
3950         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
3951         Release memory on failure.
3952
3953 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3954
3955         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
3956         to the internal API.
3957
3958         * metadata.c (get_constraints): Use a single-linked table as we don't
3959         traverse it backward. Fail and return FALSE if only of the contraint types
3960         is not found.
3961
3962         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
3963         to mono_metadata_load_generic_param_constraints except for having a return value.
3964         This has to be done since the later is part of the public API.
3965
3966         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
3967         and fail the type.
3968
3969         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
3970         and fail the method.
3971
3972 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3973
3974         * metadata-verify.c (is_valid_method_header): Add work-around to deal
3975         with MS broken behavior of emmitting EH section sizes without the
3976         header size added.
3977
3978 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3979
3980         * metadata.c (mono_type_create_from_typespec): Don't allocate image
3981         memory until we're sure that we'll need it. This avoids leaking for
3982         broken types or duplicated instantiation.
3983
3984 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3985
3986         * metadata-verify.c (is_valid_method_header): Fix stupid formating
3987         mistake.
3988
3989 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3990
3991         * metadata-verify.c (is_valid_method_header): Fix number of clauses
3992         and expected size calculation.
3993
3994 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3995
3996         * class.c (mono_class_get_field_idx): Add fixme for broken
3997         behavior for types with multiple fields with the same name.
3998         I would rather fix it, but have no idea on how to generate
3999         such artifact for testing.
4000
4001 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4002
4003         * verify.c (verifier_load_field): We should allow references to
4004         fields to be made using the generic type definition. It's up to
4005         the loader system to fail invalid ops.
4006
4007         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
4008         are invalid.
4009
4010 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4011
4012         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
4013
4014         * metadata-internals.h: Fix declaration of 
4015         mono_metadata_interfaces_from_typedef_full.
4016
4017         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
4018         heap_alloc_result parameter that controls if the result should be
4019         g_malloc'd.
4020
4021         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
4022         array be g_malloc'd and properly document this public API function.
4023
4024 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4025
4026         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
4027         remove METHOD_HEADER_TINY_FORMAT1.
4028
4029         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
4030
4031         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
4032
4033         Both spec and MS uses only 2 bits to enumerate the kind of header.
4034         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
4035         is superfluous, only used for tiny headers with odd code lengths.
4036
4037         This change also make sure that mono doesn't wronly interpret bit 2
4038         of fat header flags, which is currently reserved.
4039
4040 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4041
4042         * metadata.c (do_mono_metadata_parse_type): Do error
4043         checking for element types. Don't abort if presented
4044         with a broken type kind.
4045
4046 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4047
4048         * metadata.c (mono_metadata_parse_method_signature_full):
4049         Gracefully fail bad vararg signatures.
4050
4051 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4052
4053         * profiler.c:
4054         * class.c: Fix warnings for uninitialized variables.
4055
4056 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4057
4058         * icall.c: Fix _NSGetEnviron method declaration warning.
4059
4060 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4061
4062         * icall.c:
4063         * reflection.c: Make bitwise checks explicit.
4064
4065 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4066
4067         * debug-helpers.c:
4068         * marshal.c: Fix printf warnings.
4069
4070 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
4071
4072         * reflection.c (encode_cattr_value): Fix a warning.
4073
4074 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4075
4076         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
4077         of array bounds.
4078
4079 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4080
4081         * loader.c (mono_method_signature): Don't assert on broken
4082         signature. Print a more useful error message.
4083
4084 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4085
4086         * loader.c (mono_method_get_marshal_info): Assert if
4087         signature is invalid. Bounds check stores to the
4088         mspecs array;
4089
4090 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4091
4092         * loader.c (field_from_memberref): Fix warning.
4093
4094 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4095
4096         * loader.c (mono_method_get_param_names): Check if signature
4097         is null. Don't store beyond the size of the name array.
4098
4099 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4100
4101         * loader.c (mono_get_method_constrained): Check if signature
4102         is null.
4103
4104 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4105
4106         * loader.c (mono_loader_set_error_bad_image): Improve
4107         error messages.
4108
4109 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4110
4111         * loader.c (mono_get_method_full): Convert an assertion
4112         into a loader error.
4113
4114 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4115
4116         * class-internals.h, class.c: Better naming and documentation.
4117
4118 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
4119
4120         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
4121         obj is NULL.
4122
4123 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4124
4125         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
4126         parsing fails.
4127
4128 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4129
4130         * loader.c (mono_loader_error_prepare_exception): Handle missing field
4131         errors with no class set.
4132
4133         * loader.c (field_from_memberref): If the field signature is of the wrong
4134         type fail with a MissingFieldException instead of a BadImageException as
4135         this is the behavior observed on MS. 
4136
4137 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4138
4139         * loader.c (field_from_memberref): Don't crash if either the field
4140         signature or the typespec class are invalid.
4141
4142 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4143
4144         * verify.c (verifier_load_field): Don't allow field related
4145         ops to reference fields on generic type definition.
4146
4147 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4148
4149         * metadata-verify.c: Add new warning level for errors specified
4150         by ECMA 335 but that MS ignores.
4151
4152         * metadata-verify.c (verify_method_table): Make compiler controled
4153         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
4154         this check is safe because the end result will only be some visibility
4155         exceptions been thrown.
4156
4157 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4158
4159         * verify.c (get_boxable_mono_type): Don't allow the
4160         use of the generic type definition on boxed type positions.
4161
4162         Fixes #531237.
4163
4164 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4165
4166         * threadpool.c: Make sure no cross-domain references remain in
4167         ares_htable or the arrays that are thrown away when resizing.
4168
4169 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4170
4171         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
4172         list of classes for which we have to unregister reflection_info
4173         with the GC and which are not in the namespace cache.
4174
4175         * reflection.c (mono_reflection_initialize_generic_parameter): Add
4176         the class to the list.
4177
4178 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4179
4180         * domain.c (mono_domain_free): Unregister the GC roots in
4181         MonoDomain.
4182
4183 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4184
4185         * reflection.c (mono_reflection_type_get_handle): Fix typo.
4186
4187 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4188
4189         * class.c: Add mono_class_get_field_from_name_full which does
4190         the same as mono_class_get_field_from_name but does check field
4191         signature as well.
4192
4193         * class-internals.h: Export mono_class_get_field_from_name_full as
4194         part of the internal API.
4195
4196         * loader.c (field_from_memberref): Search fields by name and signature
4197         as it's valid to have two fields with same name but different types.
4198
4199         Fixes #528055.
4200
4201 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
4202
4203         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
4204
4205         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
4206
4207         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
4208         System.Type.
4209
4210 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
4211
4212         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
4213
4214         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
4215
4216 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4217
4218         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
4219         to sgen-scan-object.h, which can be included and parameterized via
4220         macros.
4221
4222         * Makefile.am: sgen-scan-object.h added.
4223
4224 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4225
4226         * gc.c: #define GC_dont_gc if we're compiling with SGen.
4227
4228 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4229
4230         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
4231         before clearing a domain in the GC.
4232
4233 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4234
4235         * exception.c (mono_exception_from_name_domain): Actually create
4236         the exception in the specified domain.
4237
4238         * appdomain.c (mono_domain_create_appdomain_internal): Create the
4239         OutOfMemoryException a bit later so that the domain is inialized
4240         "enough" that it works.
4241
4242 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4243
4244         * threads.c (thread_cleanup): Clean up the cached_culture_info
4245         array to prevent cross-domain references.
4246
4247 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
4248
4249         * metadata.c: more documentation for MonoType accessors.
4250
4251 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
4252
4253         Fix incorrect size definitions where the tail array isn't a list
4254         of pointers
4255         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
4256         define size.
4257         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
4258         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
4259         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
4260
4261 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4262
4263         * reflection.h:
4264         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
4265
4266 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4267
4268         * metadata.c:
4269         * loader.c:
4270         * metadata-internals.h:
4271         * method-builder.c:
4272         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
4273
4274 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4275
4276         * cominterop.c:
4277         * metadata.c:
4278         * metadata.h:
4279         * loader.c:
4280         * marshal.c:
4281         * reflection.c: #define for sizeof in MonoType and
4282         MonoMethodSignature.
4283
4284 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4285
4286         * domain.c:
4287         * domain-internals.h: add and use #define's instead of sizeof()
4288         for MonoJitInfo and MonoJitInfoTable.
4289
4290 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4291
4292         * object.c:
4293         * class.h: use #define instead of sizeof() for MonoRemoteClass.
4294
4295 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
4296
4297         * metadata.c:
4298         * metadata.h:
4299         * object.c:
4300         * class-internals.h:
4301         * generic-sharing.c:
4302         * marshal.c: use a #define instead of sizeof() for a few
4303         structures that use a zero-length array.
4304
4305 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
4306
4307         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
4308         to handle inflated generic methods.
4309
4310         * appdomain.c: Bump corlib version.
4311
4312         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
4313         instances.
4314
4315         * reflection.c (fixup_method): Same
4316
4317         * reflection.c (resolve_object): Same.
4318
4319         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
4320         g_error and a decent message.
4321
4322 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
4323
4324         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
4325         from the object because it could not yet be available globally
4326         (it happens if the profiler tries to create a gchandle on the
4327         MonoThread object of a thread that is still registering itself
4328         with the runtime).
4329
4330 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
4331
4332         * reflection.c (mono_generic_class_get_object): Initialized the
4333         managed type arguments array.
4334
4335         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
4336
4337         * appdomain.c: Bump corlib version.
4338
4339 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
4340
4341         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
4342         #527902.
4343
4344 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
4345
4346         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4347         Avoid a crash if synch_cs is not set.
4348         
4349         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4350         Handle the case when the handle is 0.
4351
4352         * appdomain.c: Bump corlib version.
4353
4354 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
4355
4356         * reflection.c (mono_type_get_object): Fix a warning.
4357
4358 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4359
4360         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
4361         descriptor here.  We assume it's already been computed.
4362
4363         * generic-sharing.c (instantiate_other_info): Compute the GC
4364         descriptor for info type MONO_RGCTX_INFO_KLASS.
4365
4366 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4367
4368         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
4369         type, so don't use MONO_OBJECT_SETREF to set a field.
4370
4371 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4372
4373         * gc.c: We were missing one case where invoking a finalizer would
4374         not reset the domain.  Also, in the finalizer thread loop, assert
4375         that we're in the root domain.
4376
4377 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4378
4379         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
4380         if the type is not an array.
4381
4382 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4383
4384         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
4385         method bound to the declaring type of the method. Raise an exception
4386         if the type is not a generic param.
4387
4388 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4389
4390         * class.c (print_unimplemented_interface_method_info): Print the
4391         full type name.
4392
4393         * class.c (mono_class_setup_vtable_general): When dealing with a
4394         generic instance first check if the generic type definition is
4395         not broken.
4396
4397 2009-02-11 Tom Hindke <tom_hindle@sil.org>
4398
4399         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
4400
4401         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
4402
4403         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
4404
4405         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
4406
4407         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
4408
4409         Code is contributed under MIT/X11 license
4410
4411 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
4412
4413         * verify.c: Fix naming of stelem and ldelem.
4414
4415 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4416
4417         * generic-sharing.c: Replace the templates lock with the loader
4418         lock because of very hard to resolve deadlock issues.
4419
4420 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
4421
4422         * icall.c (ves_icall_Type_GetMethodsByName): Use 
4423         mono_class_get_vtable_size () instead of accessing klass->vtable_size
4424         directly. Fixes #525338.
4425
4426         * class.c (mono_class_get_vtable_size): New helper function.
4427
4428         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
4429         the field belongs to the type. Fixes #525733.
4430
4431 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4432
4433         * sgen-gc.c: When we stop a thread and its stack top is not within
4434         its allocated stack (because it's in an altstack signal handler),
4435         restart it and stop it again, until it is.
4436
4437 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4438
4439         * sgen-gc.c: Take a thread's stack top and registers from the
4440         sigcontext in the suspend signal handler.
4441
4442         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
4443         stuff to sgen-archdep.h.
4444
4445         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
4446         caller, because have code in sgen-archdep.h to acquire that data.
4447
4448 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
4449
4450         * profiler.c, profiler.h, profiler-private.h:
4451         Added support for keeping track of code chunks and buffers.
4452
4453 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
4454
4455         * metadata-verify.c: Fix endianness problems on decoding functions.
4456         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
4457
4458 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4459
4460         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
4461         schema for vectors and one dimension SZARRAY.
4462
4463 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4464
4465         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
4466         schema for vectors and one dimension SZARRAY.
4467
4468 2009-07-27  Mark Probst  <mark.probst@gmail.com>
4469
4470         * icall-def.h, thread-types.h, threads.c: New separate icalls for
4471         Interlocked.(Compare)Exchange with object arguments, which invoke
4472         write barriers.
4473
4474 2009-07-26  Miguel de Icaza  <miguel@novell.com>
4475
4476         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
4477         passed invalid arguments.   Fixes another crasher in the
4478         Silverlight test suite.
4479
4480         * class.c (mono_class_array_element_size): Return 0 for the size
4481         of the class;  This fixes the crasher exposed by :
4482
4483         typeof (void).MakeArrayType ();
4484
4485         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
4486         if there is no method to dereference.    Put all the code that
4487         depends on this inside the if (method) block.
4488
4489         This fixes the crasher exposed by Microsoft's Silvelright CLR test
4490         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
4491
4492         With this change, we pass the test.
4493         
4494         * reflection.c (mono_reflection_sighelper_get_signature_local):
4495         Only dereference the assembly if it has been set.    Fixes a
4496         crasher exposed by #525328
4497
4498 2009-07-25  Mark Probst  <mark.probst@gmail.com>
4499
4500         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
4501         don't perform the store in mono_gc_wbarrier_generic_nostore().
4502         Remove the second argument (value), which is not needed.
4503
4504 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
4505
4506         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
4507         the build.
4508
4509         * boehm-gc.c: Ditto.
4510         
4511 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4512
4513         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
4514         not perform the store itself.  Introduce
4515         mono_gc_wbarrier_generic_nostore(), which is the same as
4516         mono_gc_wbarrier_generic_store(), except it doesn't perform the
4517         store.
4518
4519 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4520
4521         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
4522         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
4523         we still need the memcpy().
4524
4525 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4526
4527         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
4528         so that big arrays are handled correctly.  Always use
4529         safe_object_get_size() to calculate array object sizes, which
4530         takes bounds into account.
4531
4532 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4533
4534         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
4535         GC descriptor is computed before we use it.
4536
4537 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4538
4539         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
4540         write barrier if necessary.
4541
4542 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4543
4544         * icall-def.h, icall.c, thread-types.h: New separate icall for
4545         VolatileWrite(object&,object) that uses a write barrier.
4546
4547         * console-unix.c, file-io.c, icall.c, threads.c: Use write
4548         barriers in icalls which write to "ref" or "out" arguments.
4549
4550 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
4551
4552         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
4553         handler in a separate icall, to reduce the size of the wrappers.
4554
4555 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4556
4557         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
4558
4559 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4560
4561         * metadata-verify.c (parse_field): Allow byref field.
4562
4563         * metadata-verify.c (parse_locals_signature): Allow byref locals.
4564
4565         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
4566
4567 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4568
4569         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
4570         Fixes #522784.
4571
4572 2009-07-20  Robert Jordan  <robertj@gmx.net>
4573
4574         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
4575         Fix invalid IL in valuetype handling (STOBJ must push the
4576         corresponding class). Fixes bug #523149.
4577
4578         Code is contributed under MIT/X11 license.
4579
4580 2009-07-20  Geoff Norton  <gnorton@novell.com>
4581
4582         * gc.c: Use proper semaphores where available on posix and darwin.
4583
4584 2009-07-19  Geoff Norton  <gnorton@novell.com>
4585
4586         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
4587
4588 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
4589
4590         * refletion.c (is_sre_usertype): Change name to is_usertype and
4591         invert it's result so it returns true if the type is an user type
4592         and not the opposite.
4593
4594         * reflection.c (is_*_type): Change all of those to use new macro
4595         check_corlib_type_cached that cached the type lookup so we don't
4596         need to do string comparisons all the type. Changed the signature
4597         to take a MonoClass instead.
4598
4599         * reflection.c: Change mono_image_create_token and resolve_object
4600         to use is_sre_* functions.
4601
4602 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4603
4604         * sgen-gc.c: Check for writes to the stack in the managed
4605         wbarrier as well.
4606
4607 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4608
4609         * sgen-gc.c: When a thread is unregistered, don't free its remsets
4610         but put them on a list which is processed with the other thread's
4611         remsets.
4612
4613 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4614
4615         * sgen-gc.c: Fix and enable the internal allocator instead of
4616         using malloc/free (which causes deadlocks).
4617
4618 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4619
4620         * refletion.c: Fix builds with SRE disabled by adding a minimal
4621         implementation of mono_reflection_type_get_handle.
4622
4623 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4624
4625         * refletion.c: Make mono_reflection_type_get_handle non static.
4626
4627         * object-internals.h: Export mono_reflection_type_get_handle.
4628
4629         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
4630         unmanaged handle using mono_reflection_type_get_handle.
4631
4632 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4633
4634         * refletion.c: Replace all reads of MonoReflectionType::type with
4635         calls to mono_reflection_type_get_handle. Only the functions that
4636         deal with constructing TypeBuilder::type have not been changed
4637         because they have to deal with NULL values.
4638
4639         This is a first step into supporting reflection types that don't
4640         map directly into their unmanaged counterpart.
4641
4642 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4643
4644         * metadata-verify.c (parse_locals_signature): Don't complain
4645         on signature with zero locals since MS generates it and doesn't
4646         bother with.
4647
4648 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4649
4650         * reflection.c (mono_image_get_array_token): Resolve return
4651         type using mono_reflection_type_get_handle.
4652
4653         * reflection.c (mono_image_get_array_token): Resolve array method
4654         parent type using mono_reflection_type_get_handle.
4655
4656 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
4657
4658         * reflection.c (mono_image_basic_init): Applied patch from
4659         <Dax@daxxfiles.net>. Set the public key token from the assembly
4660         builder. Fixes #518909.
4661
4662         * appdomain.c: Bump corlib version.
4663
4664 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
4665
4666         * class.c (mono_class_needs_cctor_run): Make this return false if
4667         the class has no cctor.
4668
4669 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4670
4671         * sgen-gc.c: When the minor GC needs to allocate a new section,
4672         invoke the major GC afterwards.
4673
4674 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
4675
4676         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
4677           Applying the window_style field to the SHELLEXECUTEINFO struct.
4678
4679         Code is contributed under MIT/X11 license.
4680
4681 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4682
4683         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
4684         locking earlier.  Fix it in the managed allocator by making sure
4685         that no thread is stopped there before the GC runs.  If we do stop
4686         a thread there, we restart it and let it run a but, until it stops
4687         somewhere else.
4688
4689         * gc-internal.h, gc.c: Function for getting the IP from a signal
4690         context via a function registered by mini.
4691
4692 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
4693
4694         * object-internals.h (MonoIntPtr): New structure describing a boxed
4695         IntPtr.
4696
4697         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
4698         returns. Fixes #519953.
4699
4700         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
4701
4702 2009-07-09  Mark Probst  <mark.probst@gmail.com>
4703
4704         * class-internals.h, generic-sharing.c: New RGCTX info type for
4705         getting a remoting invoke with check wrapper.
4706
4707 2009-07-07  Geoff Norton  <gnorton@novell.com>
4708
4709         * icall-def.h: Fix the enable-minimal build.
4710
4711 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4712
4713         * object-internals.h: Add MonoReflectionDerivedType.
4714
4715         * reflection.c: Implement support for PointerType.
4716         Fixed tons of warnings.
4717
4718 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4719
4720         * object-internals.h: Add MonoReflectionByRefType.
4721
4722         * reflection.c: Implement support for ByRefType.
4723
4724 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4725
4726         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
4727
4728         * object-internals.h: Add MonoReflectionArrayType and
4729         mono_reflection_create_unmanaged_type.
4730
4731         * reflection.c: Implement support for ArrayType.
4732
4733 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4734
4735         * metadata-verify.c (is_valid_method_header): Parse EH block
4736         flags correctly.
4737
4738 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4739
4740         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
4741         processing the disappearing links, and process disappearing links
4742         in a loop until no new objects are copied.
4743
4744 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4745
4746         * object.c (handle_enum): Invoke the write barrier when copying
4747         value type instances.
4748
4749         * sgen-gc.c: Register remsets for unmanaged write barriers only
4750         when the address written to is actually on the heap.  This makes
4751         set_value() in object.c work without requiring that the result be
4752         on the heap.
4753
4754 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
4755
4756         The runtime wrappers are all bound to a given type that must
4757         exist in the same image. For regular images we use the <Module>
4758         type, which is required to exist for all images.
4759
4760         The <Module> type can't be used for dynamic images because it
4761         might not exist at the time the wrapper is required, so we create
4762         a synthetic type to use instead.
4763
4764         The current code works because of the 2 stage setup of MonoClass,
4765         but once this is gone it will no longer work.
4766
4767         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
4768
4769         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
4770
4771         * object-internals.h: Export mono_image_set_wrappers_type icall
4772         as part of the internal API.
4773
4774         * marshal.c (get_wrapper_target_class): If the image is dynamic,
4775         use MonoDynamicImage::wrappers_type instead of the <Module> type.
4776
4777         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
4778         image wrappers_type to the provided value.
4779
4780 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
4781
4782         * appdomain.c (deregister_reflection_info_roots): No need
4783         to use the image lock here.
4784
4785 2009-07-02  Mark Probst  <mark.probst@gmail.com>
4786
4787         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
4788
4789 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
4790
4791         * threads.c: Store the thread start argument in a hash table instead of
4792         registering it as a root, as libgc doesn't support unregistering roots
4793         under windows, leading to 'too many root sets' errors when many threads
4794         are created.
4795
4796         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
4797         shutdown, they can still be referenced by the other dying objects.
4798         Fixes #514506.
4799
4800 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4801
4802         * socket-io.c: DontLinger does not allow LingerOptions.
4803
4804 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4805
4806         * metadata-verify.c: The spec doesn't mention that it's possible to add
4807         custom attribute to a generic parameter. Fixed.
4808
4809 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4810
4811         * class.c (inflate_generic_type): Don't crash while trying to output a message
4812         on why we're aborting.
4813
4814 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4815
4816         * socket-io.c: DontLinger can take an int or a boolean too.
4817
4818 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
4819
4820         * gc.c: check for a null argument to SuppressFinalize () and
4821         ReRegisterForFinalize ().
4822
4823 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4824
4825         * loader.c (method_from_methodspec): Call into the verifier to check
4826         the signature.
4827
4828         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
4829
4830         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
4831         part of the internal API.
4832
4833 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4834
4835         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
4836         the signature.
4837
4838         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
4839
4840         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
4841         part of the internal API.
4842
4843 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4844
4845         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
4846         the signature.
4847
4848         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
4849         blob verification.
4850
4851         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4852         part of the internal API.
4853
4854 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4855
4856         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
4857         when doing basic verification. 
4858
4859         This check must be done since the runtime peeks into signatures in much
4860         more places than it does decoding so it makes sense to ensure that all
4861         pointers to blob objects are well formed.
4862
4863 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4864
4865         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
4866         Use proper overflow dectection. Fix usage of it.
4867
4868 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4869
4870         * loader.c (field_from_memberref): Call into the verifier to check
4871         the signature.
4872
4873         * loader.c (mono_method_get_signature_full): Same.
4874
4875         * loader.c (method_from_memberref): Same.
4876
4877         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
4878
4879         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4880         part of the internal API.
4881
4882 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4883
4884         * threadpool.c (mono_thread_pool_add): If the domain is unloading
4885         or unloaded, still return an AsyncResult, but don't add it to the
4886         threadpool.
4887
4888 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
4889
4890         * threads.c: fix missing colon when DEBUG is defined.
4891
4892 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4893
4894         * threadpool.c: Don't add new calls to a threadpool if the domain
4895         of the call is unloading or unloaded.  When dequeuing a job, null
4896         the reference in the queue.
4897
4898 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4899
4900         * sgen-gc.c (null_link_in_range): Add the dislink for the old
4901         generation if an object was moved.
4902
4903 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
4904
4905         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
4906           parameters of type SAFEARRAY[VARIANT].
4907
4908         * reflection.c (encode_marshal_blob): Properly generate element type
4909           (SafeArraySubType marshal attribute option).
4910
4911         Code is contributed under MIT/X11 license.
4912
4913 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
4914
4915         * reflection.c: in mono_method_clear_object () really ensure all the
4916         objects are removed.
4917
4918 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4919
4920         * loader.c (mono_method_signature): Call into the verifier to check
4921         the method signature.
4922
4923         * metadata-verify.c (verify_method_table): Move signature verification
4924         to verify_method_table_full.
4925
4926         * metadata-verify.c: Add mono_verifier_verify_method_signature.
4927
4928         * verify-internals.h: Export mono_verifier_verify_method_signature as
4929         part of the internal API.
4930
4931 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4932
4933         * loader.c (mono_method_get_header): Call into the verifier to
4934         check the method header.
4935
4936         * metadata-verify.c: Add mono_verifier_verify_method_header.
4937
4938         * verify-internals.h: Export mono_verifier_verify_method_header as
4939         part of the internal API.
4940
4941 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4942
4943         * class.c (mono_class_find_enum_basetype): Call into the verifier to
4944         check the field signature. Replace an assert with an explicit check.
4945
4946         * class.c (mono_class_setup_fields): Call into the verifier to check
4947         the field signature.
4948
4949         * metadata-verify.c: Add mono_verifier_verify_field_signature.
4950
4951         * verify-internals.h: Export mono_verifier_verify_field_signature as
4952         part of the internal API.
4953
4954 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4955
4956         * class.c (mono_class_find_enum_basetype): Simplify this function
4957         by moving code outside of the loop and not decoding static fields.
4958
4959 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4960
4961         * metadata-verify.c (verify_typedef_table): Check the extends
4962         token here. Move to here a flags check from verify_typedef_table_full.
4963
4964 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
4965
4966         * metadata-verify.c (is_valid_method_header): Fix a warning.
4967
4968         * metadata-internals.h (MonoImage): Remove the unused 
4969         static_rgctx_invoke_wrapper_cache.
4970
4971         * image.c marshal.c: Ditto.
4972
4973 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4974
4975         * image.c (do_mono_image_load): Enable table data verification.
4976
4977 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4978
4979         * metadata-verify.c (is_valid_constant): Fix nullref check.
4980
4981 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4982
4983         * metadata-verify.c (is_valid_constant): Fix string bounds check.
4984
4985 2009-06-22  Mark Probst  <mark.probst@gmail.com>
4986
4987         * sgen-gc.c: Managed allocation with pthreads TLS.
4988
4989         * threads.c, threads-types.h: Functions for the JIT to tell the
4990         runtime whether it supports the MONO_TLS opcode.
4991
4992 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4993
4994         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
4995         without methods.
4996
4997 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4998
4999         * metadata-verify.c (is_valid_constant): Fix the string length check.
5000         Use safe overflow checking. Add decent error messages.
5001
5002 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5003
5004         * metadata-verify.c: Move remaininh blob checks to the offline
5005         verification path.
5006
5007 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5008
5009         * metadata-verify.c: Move more blob checks to the offline verification
5010         path.
5011
5012 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
5013
5014         * object-internals.h : Adding interrupt_on_stop field.
5015
5016         * threads.c (mono_thread_request_interruption) : On Windows exit the
5017           thread if interrupt_on_stop is set.
5018
5019         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
5020          Removing old interrupt logic and setting the interrupt_on_stop for the
5021          thread when calling accept.
5022
5023         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
5024          setting the interrupt_on_stop for the thread when calling accept.
5025
5026         Contributed under MIT/X11 license.
5027
5028 2009-06-20  Martin Baulig  <martin@ximian.com>
5029
5030         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
5031
5032 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
5033
5034         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
5035         running in no-exec mode.
5036
5037 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5038
5039         * metadata-verify.c (verify_method_table): Move header
5040         checking to verify_method_table_full.
5041
5042         * metata-verify.c (mono_verifier_verify_full_table_data):
5043         Call verify_method_table_full.
5044
5045 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5046
5047         * metadata-verify.c (verify_field_table): Move signature
5048         checking to verify_field_table_full.
5049
5050         * metata-verify.c (mono_verifier_verify_full_table_data):
5051         Call verify_field_table_full.
5052
5053 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5054
5055         * metadata-verify.c (verify_typedef_table): Move remaining
5056         stuff to verify_typedef_table_full.
5057
5058 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5059
5060         * metadata-verify.c: Kill is_corlib from VerifyContext.
5061         It is only used by the offline mode.
5062         So we better remove it from the runtime path.
5063
5064 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5065
5066         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
5067         function that perform the offline metadata verification steps.
5068
5069         * metadata-verify.c (verify_typedef_table): Move some checks to
5070         verify_typedef_table_full and make it been called by new function
5071         mono_verifier_verify_full_table_data.
5072
5073         * pedump.c: Call mono_verifier_verify_full_table_data.
5074
5075         * verify-internals.h: Export mono_verifier_verify_full_table_data as
5076         part of the internal API.
5077
5078 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5079
5080         * metadata-verify.c (typedef_is_system_object): Fix System.Object
5081         check.
5082
5083         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
5084         flags bits. SupportLastError was confused as bit 7 instead of 6.
5085
5086         * metadata-verify.c (verify_implmap_table): Fix import scope verification
5087         to check against the module ref table instead of module.
5088
5089         * metadata-verify.c (verify_implmap_table): Fix corlib check.
5090
5091         * pedump.c: Call mono_image_load_names.
5092
5093 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5094
5095         * image.c: Extract mono_image_load_names from do_mono_image_load.
5096
5097         * metadata-internals.h: Export mono_image_load_names as part of
5098         the internal API.
5099         
5100 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
5101
5102         * metadata.c (mono_metadata_cleanup): Free the generic method cache
5103         first, as it could reference data in the other caches.
5104
5105 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5106
5107         * metadata-verify.c: Finished with method header verification.
5108
5109 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5110
5111         * metadata-verify.c: Added more header verification code.
5112         Now only EH clauses are missing.
5113
5114 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
5115
5116         * marshal.c (get_runtime_invoke_type): Don't share primitive types
5117         for return values.
5118
5119 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5120
5121         * metadata-verify.c: Initial method header verification.
5122
5123 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5124
5125         * metadata-verify.c (verify_import_table): The IAT contents
5126         might end been patched by the windows DL when running with
5127         coree enabled.
5128
5129 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
5130
5131         * class.c (mono_class_from_typeref): If the enclosing type is not
5132         found return null instead of crashing. Fixes #508487.
5133
5134 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
5135
5136         * normalization-tables.h : updated to the latest unicode charcter
5137           data.
5138         * appdomain.c : bump corlib version.
5139
5140 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
5141
5142         * class.c (mono_class_from_name): Fix support for assembly references
5143         in the EXPORTEDTYPE table. Fixes #511704.
5144
5145 2009-06-13  Geoff Norton  <gnorton@novell.com>
5146
5147         * domain.c: Ensure that mono_domain_assembly_open actually opens the
5148         assembly in the target domain.
5149
5150 2009-06-12  Robert Jordan  <robertj@gmx.net>
5151
5152         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
5153         because "this" of the managed signature has become an
5154         ordinary parameter in the unmanaged signature.
5155
5156 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
5157
5158         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
5159         field for owner-less generic containers.
5160
5161         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
5162         image field of the owner-less generic containers created here.
5163
5164         * metadata.c (mono_metadata_load_generic_params): Ditto, the
5165         contain is ownerless until the caller sets its owner.
5166
5167         * metadata.c (type_in_image): Handle owner-less generic containers
5168         correctly.
5169         
5170 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5171
5172         * image.c (mono_image_close): Support debug_assembly_unload for
5173         dynamic images too.
5174
5175 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
5176
5177         * class.c: Fix some typos in comments.
5178
5179 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5180
5181         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
5182
5183         * threads.c (mono_thread_execute_interruption): Avoid creating the
5184         abort exception object while holding the synch_cs lock.
5185
5186 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5187
5188         * metadata-verify.c: Verify basic cattr content.
5189
5190 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
5191
5192         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
5193         nested types.
5194         
5195         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
5196         support for nested types. Fixes #511704.
5197
5198 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5199
5200         * metadata-verify.c: Verify methodspec signatures.
5201
5202 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5203
5204         * metadata-verify.c: Verify typespec signatures.
5205
5206 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
5207
5208         * metadata.c (free_inflated_method): Call 
5209         mono_marshal_free_inflated_wrappers (), which was missed earlier.
5210
5211 2009-06-08  Miguel de Icaza  <miguel@novell.com>
5212
5213         * mono-config.c: Small change to report the PPC64/ILP32 model.
5214
5215 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5216
5217         * metadata-verify.c (parse_type): Check szarray.
5218
5219 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5220
5221         * metadata-verify.c (parse_type): Check fnptr.
5222
5223 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5224
5225         * metadata-verify.c (parse_type): Check generic instances.
5226
5227 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5228
5229         * metadata-verify.c (parse_type): Check array shape.
5230
5231 2009-06-05  Robert Jordan  <robertj@gmx.net>
5232
5233         * class.c (mono_class_create_from_typedef): Check only for
5234         mscorlib's System.Array.
5235
5236 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5237
5238         * metadata-verify.c (parse_type): Check pointer, class/valuetype
5239         and generic params. 
5240
5241         * metadata-verify.c (parse_field): Check the signature.
5242
5243 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5244
5245         * metadata-verify.c: Implement locals signature check.
5246
5247 2009-06-04  Marek Safar  <marek.safar@gmail.com>
5248
5249         * domain.c: Add .NET 4.0 Beta 1 version.
5250
5251 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
5252
5253         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
5254           For QueryInterface on CCWs consider the base class
5255           interfaces as well.
5256
5257         Code is contributed under MIT/X11 license.
5258
5259 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5260
5261         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
5262
5263         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
5264         used.
5265
5266         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
5267         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
5268
5269         * generic-sharing.c (inflate_other_data): Ditto.
5270         
5271 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5272
5273         * metadata-verify.c: Implement property signature check.
5274
5275 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5276
5277         * sgen-gc.h: Register saving support for PPC.
5278
5279 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5280
5281         * sgen-gc.c: Fixed a pthread TLS screwup.
5282
5283 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5284
5285         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
5286         supported.
5287
5288 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5289
5290         * sgen-gc.c: Disable TLA and managed allocation if the __thread
5291         keyword is not supported.
5292
5293 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5294
5295         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
5296         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
5297         the inflated method is freed. Fixes #508389.
5298
5299         The code is contributed under the MIT/X11 license.
5300         
5301 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
5302
5303         * marshal.c (get_wrapper_target_class): New helper function.
5304         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
5305         the <Module> class of the image. Fixes #509049.
5306
5307 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5308
5309         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
5310         Check if the thread was interrupted and proccess it straight away.
5311         Makes abortion much more responsive.
5312
5313 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5314
5315         * threads.c (mono_thread_execute_interruption): Use atomic cas with
5316         MonoThread::interruption_requested to match it's counterpart.
5317
5318         Fixes a hang in abort-stress-1 on a 2 core x86.
5319
5320         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
5321         Fix warning.
5322
5323 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5324
5325         Change MonoImage::name_cache to be protected by the image lock
5326         instead of the loader lock.
5327
5328         * appdomain.c (deregister_reflection_info_roots): Protect access
5329         to name_cache.
5330
5331         * class.c (mono_image_init_name_cache): Change from the loader lock
5332         to the image lock. Check if the cache wasn't already created.
5333
5334         * class.c: Change from the loader to the image lock.
5335
5336         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
5337         the code to hold the image lock while iterating over name_cache and
5338         not go into mono_array_new holding it.
5339
5340         * metadata-internals.h: Add a comment about this change.
5341
5342 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5343
5344         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
5345         Under the 2.0 profile raise the loader error.
5346
5347         Fixes #508532.
5348
5349 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5350
5351         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
5352         of ldind opcode for generic instances so we don't fail for direct wrappers.
5353         This only affect direct calls.
5354
5355 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
5356
5357         * reflection.c (create_dynamic_mono_image): Fix warnings.
5358
5359         * generic-sharing.c (other_info_equal): Ditto.
5360         
5361 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5362
5363         * metadata-verify.c: Implement field signature check.
5364
5365 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5366
5367         * metadata-verify.c: Implement standalone signature check.
5368
5369 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5370
5371         * metadata-verify.c: Implement methodref signature check.
5372
5373 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
5374
5375         * object-internals.h (MonoRuntimeCallbacks): New structure containing
5376         callbacks supplied by the runtime.
5377
5378         * object.c (mono_install_callbacks): New internal function to install
5379         the callbacks.
5380
5381         * object.c (mono_create_ftnptr): Move the implementation of this to
5382         mini/.
5383
5384         * object.c (mono_get_addr_from_ftnptr): Ditto.  
5385
5386 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5387
5388         * metadata-verify.c (parse_return_type): Proper byref check.
5389         * metadata-verify.c (is_valid_method_signature): Check for zero arity
5390         generic signatures and method params.
5391
5392 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5393
5394         * metadata-verify.c (decode_signature_header): Fix bounds check.
5395
5396         * metadata-verify.c (parse_custom_mods): Check custom mods.
5397
5398         * metadata-verify.c (parse_type): Do initial basic verification
5399         of valid values.
5400         
5401         * metadata-verify.c (is_valid_method_signature): Parse the generic
5402         param count.
5403
5404 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
5405
5406         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
5407         discarded based on their most specific definition so we set the method_slots
5408         array before checking if the method is acceptable or not.
5409
5410         Fixes #506757.
5411
5412 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5413
5414         * icall.c: Free the old array when resizing a mono_ptr_array.
5415
5416 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5417
5418         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
5419         for the hashes whose keys are managed objects.
5420
5421 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5422
5423         * object-internals.h, threads.c: Set the execution context on
5424         thread start here, not in corlib.
5425
5426         * appdomain.c: Bump corlib version.
5427
5428 2009-05-27  Martin Baulig  <martin@ximian.com>
5429
5430         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
5431         if `_mono_debug_using_mono_debugger' is set to make things work
5432         properly when embedding Mono.
5433
5434 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5435
5436         * class.c (mono_class_setup_fields): Don't mark simd types as having
5437         16 bytes alignment as the whole runtime doesn't support.
5438
5439 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5440
5441         * metadata-verify.c (safe_read): Use endian safe read macros.
5442
5443 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
5444
5445         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
5446         it is read-only when using full aot.
5447
5448 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5449
5450         * metadata-verify.c (is_valid_method_signature): Verify parts
5451         of the return type. Provide an error message in case of failure.
5452
5453 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5454
5455         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
5456
5457 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5458
5459         * metadata-verify.c: Include the size prefix in the bounds check.
5460
5461 2009-05-22  Miguel de Icaza  <miguel@novell.com>
5462
5463         * icall.c: Remove warnings.
5464
5465         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
5466         prevent auto-detection based on GCC defines.
5467
5468         Add PS3
5469
5470         * metadata-verify.c: Do not include signal.h
5471
5472         * generic-sharing.c, marshal.c: Add returns to avoid some warning
5473         messages.  Not sure why the g_assert_not_reached is not enough to
5474         quiet the compiler.
5475         
5476
5477         * appdomain.c: Remove code that is not used when
5478         DISABLE_SHADOW_COPY is set.
5479
5480         * image.c: use g_getenv
5481
5482 2009-05-21  Miguel de Icaza  <miguel@novell.com>
5483
5484         * reflection.c: Remove code that it not used with
5485         DISABLE_REFLECTION_EMIT is defined.
5486
5487 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
5488
5489         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
5490         invoke wrappers.
5491
5492 2009-05-20  Miguel de Icaza  <miguel@novell.com>
5493
5494         * socket-io.c
5495         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
5496         the ifdef here and instead put that on io-layer
5497
5498 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5499
5500         * metadata-verify.c: Verify the generic param constraint table.
5501
5502 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5503
5504         * metadata-verify.c (verify_generic_param_table): Fix
5505         thinko on the valid flags bits for generic params.
5506
5507 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5508
5509         * metadata-verify.c: Verify the methodspec table.
5510
5511 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5512
5513         * metadata-verify.c: Verify the generic param table.
5514
5515 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5516
5517         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
5518
5519 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5520
5521         * sgen-gc.c: Use generation enum more consistently and use the
5522         correct generation in mono_gc_register_for_finalization().
5523
5524 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5525
5526         * metadata-verify.c: Verify the nested class table.
5527
5528 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5529
5530         * metadata-verify.c: Verify the manifest resource table.
5531
5532 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
5533
5534         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
5535
5536 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
5537
5538         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
5539         wrappers, this is now done in the JIT.
5540         
5541         * class.c (mono_set_generic_sharing_supported): New internal function.
5542         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
5543
5544 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5545
5546         * metadata-verify.c: Verify the exported type table.
5547
5548 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5549
5550         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
5551
5552 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5553
5554         * metadata-verify.c: Verify the file table.
5555
5556 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5557
5558         * metadata-verify.c (verify_assembly_table): Fix an error message.
5559
5560         * metadata-verify.c: Verify the assemblyref table.
5561
5562 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5563
5564         * metadata-verify.c (verify_assembly_table): Fix the valid
5565         bits mask for flags.
5566
5567 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
5568
5569         * debug-helpers.c (mono_method_full_name): Print generic parameters of
5570         generic methods as well.
5571
5572 2009-05-15  Geoff Norton  <gnorton@novell.com>
5573
5574         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
5575         use-case and is significantly more performant than the wapi layer.
5576
5577 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5578
5579         * metadata-verify.c: Verify the assembly table.
5580
5581 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5582
5583         * metadata-verify.c: Fix rows limit check.
5584
5585 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5586
5587         * metadata-verify.c: Verify the fieldrva table.
5588
5589 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5590
5591         * sgen.c: Speed up weak links and finalizers by grouping them by
5592         generation.
5593
5594 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5595
5596         * marshal.c (delegate_hash_table_add): When overwriting an entry,
5597         free the old GCHandle (only applies to SGen).
5598
5599 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
5600
5601         * loader.c (mono_get_method_from_token): Avoid the expensive call to
5602         mono_metadata_load_generic_params () for non-generic methods.
5603
5604 2009-05-12  Mark Probst  <mark.probst@gmail.com>
5605
5606         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
5607         New function for returning a monitor's weak link if it has one.
5608
5609         * sgen-gc.c: Remove an object's monitor's weak link (if it has
5610         one) when clearing a domain.  These can still be around because
5611         the object might not have been collected.
5612
5613 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
5614
5615         * gc.c: Fix a warning.
5616
5617 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
5618
5619         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
5620         prevous wait that resulted in a deadlock on Windows when initializing
5621         the runtime form DllMain. Also results in improved startup time.
5622         (finalizer_thread): Get rid of thread_started_event.
5623         * threads.c, threads-types.h (mono_thread_create_internal): Return the
5624         resulting MonoThread.
5625
5626         Contributed under MIT/X11 license.
5627
5628 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
5629
5630         * metadata-verify.c: Verify the implmap table.
5631         Don't require that #US and #Strings be present.
5632
5633 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
5634
5635         * security-core-clr.c: Delegate checks are done at creation time,
5636         not a invocation time. Fix exception for Telerik Silverlight demo
5637
5638 2009-05-11  Mark Probst  <mark.probst@gmail.com>
5639
5640         * sgen-gc.c (need_remove_object_for_domain): Remove the special
5641         case for the Thread class.
5642
5643         * threads.c: Do clean-up of abort exception/state in
5644         thread_cleanup() instead of Thread.free_internal().  Also clean up
5645         current_appcontext.  The reason we have to do that is because
5646         those references might point into another domain and if that
5647         domain is unloaded before the thread is finalized, they point to
5648         invalid data.
5649
5650 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
5651
5652         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
5653         stub signatures.
5654         
5655         Contributed unter MIT/X11 license.
5656
5657 2009-05-09  Miguel de Icaza  <miguel@novell.com>
5658
5659         * verify.c, metadata-verifier.c: Add support for disabling the
5660         verifier in some builds.
5661
5662         [ Sorry, my previous commit accidentally commited some work in
5663         progress ]
5664
5665 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
5666
5667         * class.c (mono_class_setup_fields): Set class->field.first for
5668         generic instances.
5669
5670 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5671
5672         * metadata-verify.c: Verify the typespec table.
5673
5674 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5675
5676         * metadata-verify.c: Verify the module table.
5677
5678 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5679
5680         * metadata-verify.c: Verify the methodimpl table.
5681
5682 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5683
5684         * metadata-verify.c: Verify the property table.
5685
5686 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
5687
5688         * debug-helpers.c (mono_method_desc_match): Add support for generic
5689         glob patterns.
5690
5691 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
5692
5693         * metadata-verify.c: Verify the propertymap table.
5694
5695 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
5696
5697         * metadata-verify.c: Verify the event table.
5698
5699         * metadata-verify.c (search_sorted_table): Fix offset
5700         calculation.
5701
5702 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
5703
5704         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
5705
5706 2009-05-01  Mark Probst  <mark.probst@gmail.com>
5707
5708         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
5709         because mono_delegate_free_ftnptr() needs it.
5710
5711 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5712
5713         * metadata-verify.c: Verify the eventmap table.
5714
5715 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5716
5717         * metadata-verify.c: Verify the standalonesig table.
5718
5719 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5720
5721         * metadata-verify.c: Verify the field layout table.
5722
5723 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5724
5725         * class.c (mono_type_get_name_recurse): Don't crash
5726         for ownerless generic params.
5727
5728         * debug-helpers.c (mono_type_get_desc): Correct the format
5729         for ownerless generic params.
5730
5731 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5732
5733         * metadata-verify.c: Verify the class layout table.
5734
5735 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5736
5737         * metadata-verify.c: Verify the decl security table.
5738
5739 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5740
5741         * domain.c (mono_domain_set_internal_with_options): Don't do
5742         anything if the old domain is the same as the old one.  Fixes
5743         #499326.
5744
5745 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5746
5747         * appdomain.c: Deregister the reflection_info roots when unloading
5748         a domain.
5749
5750         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
5751         memory allocated by a domain and frees its disappearing links.
5752
5753         * boehm-gc.c, null-gc.c: Empty implementation of
5754         mono_gc_clear_domain().
5755
5756 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5757
5758         * appdomain.c (clear_cached_vtable): Free the static fields memory
5759         block.
5760
5761 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5762
5763         * gc.c: Set the correct domain when invoking finalizers.
5764
5765         * appdomain.c: Set the correct domain when creating threads.
5766
5767 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5768
5769         * sgen-gc.c: Fix skip size for vectors.
5770
5771 2009-05-03  Martin Baulig  <martin@ximian.com>
5772
5773         * mono-debug-debugger.c
5774         (mono_debugger_check_breakpoints): Check class init handlers even
5775         if we don't have any method load handers.
5776
5777 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
5778
5779         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
5780         returning refonly assemblies if refonly is FALSE. Fixes #499013.
5781
5782 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5783
5784         * metadata-verify.c: Verify the field marshal table.
5785
5786 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5787
5788         * metadata-verify.c: Verify the custom attribute table.
5789
5790 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5791
5792         * metadata-verify.c: Verify the constant table.
5793
5794 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5795
5796         * metadata-verify.c: Verify the memberef table.
5797
5798 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5799
5800         * metadata-verify.c (get_coded_index_token): Remove
5801         dead argument.
5802
5803 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5804
5805         * metadata-verify.c: Verify the interfaceimpl table.
5806
5807 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5808
5809         * verify.c: Improve error message.
5810
5811         * debug-helpers.c (mono_type_get_desc): Harden the code that
5812         deals with VAR and MVAR.
5813
5814 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
5815
5816         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
5817         part of #498692.
5818
5819 2009-04-23 Tom Hindle <tom_hindle@sil.org>
5820
5821         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
5822         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
5823
5824 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
5825
5826         * security-core-clr.c: Avoid redundant checks for platform code, 
5827         e.g. check for method and for class (very common) and check
5828         for class and outer class (less common)...
5829
5830 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
5831
5832         * reflection.c: Avoid returning random cattrs for synthetic methods.
5833         Fixes #498545.
5834
5835 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5836
5837         * assembly.c: assemblies in the GAC should never be shadow-copied.
5838
5839 2009-04-26  Mark Probst  <mark.probst@gmail.com>
5840
5841         * domain.c, domain-internals.h: Disable
5842         track_resurrection_{objects,handles}_hash in MonoDomain if using
5843         SGen.
5844
5845 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5846
5847         * metadata-verify.c: Verify the param table.
5848
5849 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5850
5851         * metadata-verify.c (verify_typedef_table): Range check FieldList and
5852         MethodList.
5853
5854         * metadata-verify.c (verify_method_table): Proper check the ParamList
5855         field.
5856
5857 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5858
5859         * metadata-verify.c (verify_method_table): Check for runtime
5860         implemented functions such as delegate .ctors. Remove spurious
5861         printf.
5862         
5863 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5864
5865         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
5866
5867 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5868
5869         Don't allocate MonoGenericInfo for ownerless generic params.
5870         * class-internals.h (MonoGenericParam::info): Move field to ...
5871         (MonoGenericParamFull): ... this.  New struct.
5872         (MonoGenericContainer::type_params): Change type to
5873         MonoGenericParamFull.
5874         (MonoGenericParam, MonoGenericContainer): Update accessors.
5875         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
5876         'info' field for ownerless generic param.
5877         (mono_metadata_load_generic_params): Update to changes.
5878         * reflection.c (mono_reflection_create_generic_class): Likewise.
5879         (reflection_methodbuilder_to_mono_method): Likewise.
5880         (mono_reflection_initialize_generic_parameter): Likewise.
5881
5882 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5883
5884         Don't use MonoGenericParamInfo for ownerless generic params.
5885         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
5886         use ParamInfo class at all.
5887         (mono_class_from_generic_parameter): Use them.
5888         (make_generic_param_class): Fix a couple of instances where 'pinfo
5889         == NULL' wasn't handle.
5890
5891 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5892
5893         * class.c (make_generic_param_class): Carve out of ...
5894         (mono_class_from_generic_parameter): ... here.
5895
5896 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5897
5898         Simplify mono_class_from_generic_parameter
5899         * class-internals.h (MonoGenericParamInfo::token): New field.
5900         * metadata.c (mono_metadata_load_generic_params): Initialize it
5901         from metadata.
5902         * class.c (mono_class_from_generic_parameter): Use it instead of
5903         searching through metadata.
5904
5905 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5906
5907         * metadata-verify.c: Add verification of the method table.
5908
5909 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5910
5911         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
5912         Delegate::Invoke optimization.
5913
5914 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5915
5916         * appdomain.c (mono_domain_create_appdomain_internal): Free the
5917         string returned by get_shadow_assembly_location_base.
5918
5919         * appdomain.c (get_shadow_assembly_location_base): Add a comment
5920         about caller's ownership.
5921
5922 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5923
5924         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
5925         reflection memory on domain unload.
5926
5927         * domain.c (mono_domain_free): Don't free refobject_hash, let the
5928         reflection cleanup code do it.
5929
5930         * domain-internals.h: Add mono_reflection_cleanup_domain.
5931
5932         This fixes a memory leak for managed mirrors of reflection objects
5933         on domain unload. 
5934
5935 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5936
5937         * metadata-verify.c: Implement more verification of the field table.
5938
5939 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5940
5941         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
5942         doesn't try to parse the input assembly, which can be broken.
5943
5944 2009-04-23  Mark Probst  <mark.probst@gmail.com>
5945
5946         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
5947         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
5948         by using the lowest bit in the link to store whether the link is
5949         tracked.  Move the track_resurrection hashes into boehm-gc.c.
5950
5951 2009-04-22  Miguel de Icaza  <miguel@novell.com>
5952
5953         * Makefile.am: Split the console support in platform specific code
5954         and put together a framework for making this easy in the future so
5955         that we can start splitting code instead of having a mess of PLATFORM_WIN32
5956
5957 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5958
5959         * pedump.c: Fix a warning.
5960
5961 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5962
5963         * verify.c (mono_delegate_type_equal): Compare valuetypes using
5964         mono_class_from_mono_type to avoid bad interactions with the dual representation
5965         of the generic type definition.
5966
5967 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5968
5969         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
5970         get the MonoClass for the call context type as it might be a generic
5971         instance.
5972
5973         Fixes #491483.
5974
5975 2009-04-21  Mark Probst  <mark.probst@gmail.com>
5976
5977         * object-internals.h: The Thread object has no execution_context
5978         member anymore.
5979
5980         * threads.c, threadpool.c, threads-types.h: Accessor functions for
5981         the execution context.
5982
5983         * appdomain.c: Bump corlib version.
5984
5985 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5986
5987         * verify.c (do_newobj): Improve error message.
5988
5989 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5990
5991         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
5992         is nested in the filter block.
5993
5994         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
5995         block is not fully nested.
5996
5997         Fixes #495656.
5998
5999 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6000
6001         * verify.c (verify_type_compatibility_full): Compare MonoClass and
6002         not MonoType to check for equality of valuetypes as the generic type
6003         definition allows for two different encodings: the generic type definition
6004         class or a generic instance over the GTD arguments.
6005
6006         Fixes #496175.
6007
6008 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6009
6010         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
6011
6012         * verify.c (do_initobj): Improve error message.
6013
6014 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6015
6016         * metadata-verify.c: Enable pe verification as the issue with #496453
6017         is that the authenticode data directory have a different unspecified
6018         format. Ignore it for now.
6019
6020         * pedump.c: Run the metadata verifier together with the IL verifier.
6021
6022         Fixes ##496453.
6023
6024 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6025
6026         * metadata-verify.c: Temporarily disable pe verification due to #496453.
6027
6028 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6029
6030         * class.c (can_access_type): Check visibility against
6031         the element type for pointers and arrays.
6032
6033         Fixes #496150.
6034
6035 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6036
6037         * metadata-verify.c: Fix cli and table verification to use information
6038         from the MonoImage. A lot of duplicated code got killed.
6039
6040 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6041
6042
6043         This patch starts to integrate the metadata verifier with the runtime code.
6044
6045         This patch causes major regression in functionality for the metadata verifier
6046         as cli and table verification are disabled since they require to be ported to
6047         use MonoImage information.
6048
6049         * image.c (do_mono_image_load): Split the code in this function
6050         into mono_image_load_pe_data and mono_image_load_cli_data.
6051         Add     care_about_pecoff parameter to not load pecoff data.
6052         Call into the metadata verifier for pecoff and cli verification.
6053
6054         * image.c (mono_image_open_raw): New function that doesn't perform
6055         any parsing of the image contents.
6056         
6057         The reason for the 3 new functions is to give pedump better control
6058         into the interaction with the verifier.
6059
6060         * metadata-internals.h: Add new functions from image.c as part of the
6061         internal mono API.
6062
6063         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
6064         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
6065         to make those functions work together with the runtime.
6066
6067         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
6068         true if the image needs to be verified.
6069
6070         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
6071
6072         * pedump.c: Use new metadata verifier API.
6073
6074 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
6075
6076         * object.c (mono_install_vtable_trampoline): Make this receive a
6077         trampoline creation function instead of trampoline, allowing the JIT
6078         to use a different trampoline for each vtable.
6079
6080 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6081
6082         * object.c (mono_raise_exception): Don't reset the thread abort
6083         exception state here.
6084
6085 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6086
6087         * icall-def.h: New icall for getting the thread abort exception
6088         state for a thread.
6089
6090         * object.c, thread.c, object-internals.h: A thread's abort
6091         exception state is now a GC handle.  To get the object it stands
6092         for, we must move it into the current app domain, if it's
6093         different than the one where it originated from.
6094
6095         * appdomain.c: Bump corlib version.
6096
6097         * domain.c, domain-internals.h: New function for setting the
6098         domain and migrate the thread abort exception or not.
6099
6100 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6101
6102         * metadata-verify.c: Add initial verification of the
6103         field table.
6104
6105 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6106
6107         * metadata-verify.c: Add a macro to conditionally enable
6108         dumping of verification information. Add  make_coded_token
6109         and search_sorted_table to enable search sorted tables
6110         by a given coded token.
6111
6112 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6113
6114         * metadata-verify.c: Add array mapping from table index
6115         to description offset. Add get_col_offset and get_col_size
6116         functions.
6117
6118 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6119
6120         * metadata-verify.c: Add remaining table descriptions offsets.
6121         Add remaining coded index descriptions.
6122
6123 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6124
6125         * metadata-verify.c: Fixed constant table description.
6126         Fixed calculation of HasCustomAttribute coded index size.
6127         Fixed calculation of size for many table indexes. 
6128
6129 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6130
6131         * pedump.c (dump_metadata): Dump table offset instead
6132         of useless pointer in memory.
6133
6134 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6135
6136         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
6137
6138 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6139
6140         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
6141         a missing of for interface types.
6142
6143 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6144
6145         * metadata-verify.c (verify_pe_optional_header): Add comment of why
6146         the code is commented.
6147
6148         * metadata-verify.c (verify_resources_table): Remove spurious printf
6149         and don't fail if there are unmanaged resources. Gmcs generates a useless
6150         one     for all assemblies - I bet it's some MS compatibility junk.
6151
6152 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6153
6154         * metadata-verify.c (verify_typedef_table): Verify the extends field.
6155
6156         * metadata-verify.c (mono_image_verify): Add a is_corlib.
6157
6158         * verify-internals.h: Same.
6159
6160         * pedump.c: Fix for mono_image_verify new signature.
6161
6162 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6163
6164         * metadata-verify.c (verify_typedef_table): Verify for some invalid
6165         flags combinations.
6166
6167 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6168
6169         * metadata-verify.c (verify_module_table): Ignore the generation field.
6170
6171 2009-04-15  Martin Baulig  <martin@ximian.com>
6172
6173         * debug-mono-symfile.c
6174         (mono_debug_symfile_lookup_location): Don't print a warning for
6175         unknown extended opcodes if they're within 0x40 and 0x7f.
6176
6177 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
6178
6179         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
6180         invoke signatures returning an enum. Fixes #494847.
6181
6182 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6183
6184         * metadata-verify.c: Initial code to verify the typedef table.
6185
6186 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6187
6188         * verify.c (mono_method_verify): Don't fail if an unconditional branch
6189         with non empty stack happens before the beginning of a try block.
6190
6191         Fixes #494812.
6192
6193 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6194
6195         * metadata-verify.c: Verify typename and typenamespace fields of
6196         the typeref table.
6197
6198 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6199
6200         * metadata-verify.c: Initial code to verify the typeref table.
6201
6202 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6203
6204         * verify.c (verify_delegate_compatibility): Fix error message.
6205
6206 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6207
6208         * security-core-clr.c: Fix typo
6209
6210 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6211
6212         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
6213         a MonoGHashTable to keep its values alive.
6214         (emit_marshal_boolean): Fix a warning.
6215
6216 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6217
6218         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
6219         not have any interface configured for IPv4/IPv6.
6220
6221 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6222
6223         * assembly.c: fix typo in error message.
6224
6225 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6226
6227         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
6228         allocating the location holding the this argument to prevent
6229         'too many root sets' errors.
6230
6231         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
6232         to mark fields as special static.
6233         (mono_field_static_get_value): Handle special static fields.
6234         (mono_field_static_set_value): Ditto.
6235
6236         * class-internals.h (struct _MonoClassField): Document this.
6237
6238 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6239
6240         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
6241           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
6242           case.  This will handle when managed code returns null to native code.
6243
6244         Code is contributed under MIT/X11 license.
6245
6246 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6247
6248         * object.c (build_imt_slots): Changing a free to a g_free to match
6249           the g_malloc0 in add_imt_builder_entry that allocated this memory.
6250
6251         Code is contributed under MIT/X11 license.
6252
6253 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6254
6255         * marshal.c (emit_marshal_boolean): Adding code to ensure that
6256           the correct TRUE value is passed through the marshaling layer.
6257
6258         Code is contributed under MIT/X11 license.
6259
6260 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
6261
6262         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
6263         correctly. Fixes #492330.
6264         
6265         * marshal.c: Fix the embedding of object pointers into JITted code in
6266         the native-to-managed wrappers by allocating some GC tracked memory, and
6267         embedding the address of that.
6268
6269 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
6270
6271         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
6272         pointers into the vtable.
6273
6274 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6275
6276         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
6277
6278         * verify.c (verify_ldftn_delegate): Improve error message.
6279
6280 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6281
6282         * reflection.c (my_mono_class_from_mono_type): Remove.
6283
6284 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6285
6286         Prepare to reduce memory usage of owner-less generic parameters (1/n)
6287         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
6288         and constraints fields into ...
6289         (MonoGenericParamInfo): ... this.
6290         (mono_generic_param_info, mono_generic_container_get_param_info):
6291         New accessors.
6292         * class.c, debug-helpers.c, icall.c: Update to changes.
6293         * metadata.c, reflection.c, verify.c: Likewise.
6294
6295 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
6296
6297         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
6298
6299         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
6300         
6301         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
6302         booleans with sbytes.
6303
6304 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6305
6306         * class.c (can_access_instantiation): Verify accesibility of element types
6307         for arrays and pointers.
6308
6309         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
6310
6311         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
6312
6313         Fixes #493068.
6314
6315 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6316
6317         * verify.c (do_invoke_method): Improve error messages.
6318
6319 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
6320
6321         * verify.c:  Fixing the MSVC build.
6322
6323         Code is contributed under MIT/X11 license.
6324
6325 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
6326
6327         * security-core-clr.c: Simplify get_reflection_caller not to call
6328         mono_method_get_last_managed (another stack walk) and adjust the
6329         callers to handle a (should not happen) NULL return value.
6330
6331 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6332
6333         Add accessors to some MonoGenericParam fields
6334         * class-internals.h (mono_generic_param_owner): New accessor.
6335         (mono_generic_param_num): Likewise.
6336         (mono_type_get_generic_param_owner): New helper.
6337         (mono_type_get_generic_param_num): New helper.
6338         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
6339
6340 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6341
6342         * class-internals.h (mono_generic_container_get_param): New wrapper.
6343         * class.c, icall.c, metadata.c, verify.c: Use it.
6344
6345 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6346
6347         Fix gtest-252.cs
6348         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
6349         the standard case/loop.  In particular, don't complain about
6350         references to generic type definitions.
6351
6352 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
6353
6354         * debug-helpers.c (dis_one): Decode string arguments.
6355
6356 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6357
6358         * pedump.c (dump_verify_info): Dump type name correctly.
6359
6360 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6361
6362         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
6363         are larger than code size.
6364
6365         This can happen in valid code if the try/catch block is not followed by any instruction
6366         and do a backward branch on the leave instruction.
6367
6368         Fixes #492494.
6369
6370 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
6371
6372         * security-core-clr.c: Fix typo while comparing second method names
6373         in can_avoid_corlib_reflection_delegate_optimization
6374
6375 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6376
6377         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
6378
6379         Fixes #487738.
6380
6381 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6382
6383         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
6384         a MVAR using a class context.
6385
6386         Fixes #490335.
6387
6388 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
6389
6390         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
6391
6392         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
6393
6394         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
6395         functions supplied by the JIT for the SGEN GC.
6396
6397         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
6398         
6399 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6400
6401         monitor.c (mono_monitor_try_enter_internal):
6402         Added calls to profile monitor contentions.
6403         Also duplicated a small piece of code (the "get the monitor" logic)
6404         from the fast path to the slow path, and changed the relevant goto
6405         statements, so that monitor acquisition events can be emitted from the
6406         slow path (this is by Paolo Molaro).
6407
6408 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6409
6410         * profiler.c, profiler.h, profiler-private.h:
6411         Added support for profiling monitor contentions.
6412
6413 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6414
6415         * metadata-verify.c: Verify the modules table.
6416
6417 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
6418
6419         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
6420         using the context of the method been verifier and not of the method been called.
6421
6422         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
6423         safely inflate generic types. 
6424
6425 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
6426
6427         * security-core-clr.c: Change the strategy for checking the 
6428         "reflection using delegates optimization" to avoid unneeded 
6429         attributes in multiple class libraries.
6430
6431 2009-04-02  Mark Probst  <mark.probst@gmail.com>
6432
6433         * sgen-gc.c: Remove object element in the disappearing link struct
6434         by storing the object pointer in the link.
6435
6436 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6437
6438         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
6439
6440 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6441
6442         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
6443
6444         * verify.c (mono_method_verify): Do proper bounds checking of exception
6445         clause ranges.
6446
6447 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6448
6449         * loader.c (mono_field_from_token): Don't crash if the field parent could
6450         not be decoded.
6451
6452 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6453
6454         * sgen-gc.c: Execute critical finalizers after ordinary
6455         finalizers.
6456
6457         * class-internals.h, domain.c: Add CriticalFinalizerObject to
6458         mono_defaults.
6459
6460 2009-03-31 Jb Evain <jbevain@novell.com>
6461
6462         * verify.c (do_ldstr): don't check if a string is in the user strings
6463         heap if the current image is dynamic.
6464
6465 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6466
6467         * sgen-gc.c: Wait until the last finalizer has executed when
6468         returning from WaitForPendingFinalizers.
6469
6470 2009-03-31  Martin Baulig  <martin@ximian.com>
6471
6472         * mono-debug-debugger.h (MonoDebuggerEvent): Add
6473         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
6474         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
6475         (mono_debugger_event_create_appdomain): New function.
6476         (mono_debugger_event_unload_appdomain): New function.
6477
6478         * appdomain.c (mono_domain_create_appdomain_internal): Call
6479         mono_debugger_event_create_appdomain().
6480
6481 2009-03-31  Martin Baulig  <martin@ximian.com>
6482
6483         * mono-debug-debugger.c
6484         (mono_debugger_register_class_init_callback): Also register the
6485         class init callback if the class is already initialized to make
6486         things work with shadow copied assemblies.
6487
6488 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
6489
6490         * security-core-clr.c
6491         (mono_security_core_clr_ensure_reflection_access_field): Let 
6492         critical code access the field (just like we do for methods). Use
6493         check_field_access helper.
6494         (mono_security_core_clr_ensure_reflection_access_method): Use 
6495         check_field_access helper.
6496
6497 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6498
6499         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
6500         call the run-finalize function directly.
6501
6502         * gc.c, gc-internal.h: Make run_finalize() non-static.
6503
6504 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6505
6506         * sgen-gc.c: Use a separate struct for disappearing links.
6507
6508 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6509
6510         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
6511         * MaxIOVectorLength enabled, just ignore them.
6512         Fixes bug #349688.
6513
6514 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
6515
6516         * metadata-verify.c: Fix eglib build.
6517
6518 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
6519
6520         * threads-types.h: Fix the win32 build.
6521
6522 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
6523
6524         * class.c: move coreclr inheritance/override checks to 
6525         security-core.clr.c
6526         * security-core.clr.c|h: add code from class.c with additional
6527         documentation. Fix override check when the method is not critical.
6528
6529 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
6530
6531         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
6532         (match_class): Ditto.
6533
6534 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6535
6536         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
6537
6538         * metadata-verify.c: Implement table layout row size calculation. Verify
6539         the total size of the tables.
6540
6541 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6542
6543         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
6544
6545 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6546
6547         * appdomain.c:
6548         * console-io.[ch]: added new mono_console_init() to make sure that
6549         file descriptors 0, 1 and 2 are opened.
6550         Bug #489019 fixed.
6551
6552 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
6553
6554         * appdomain.h: Export a new callback type and a new function to
6555         set this callback. This allow a mono host to provide it's own
6556         definition for "platform code".
6557         * metadata-internals.h: Add a core_clr_platform_code flag on 
6558         _MonoImage to (cache and) know if it is representing platform 
6559         code.
6560         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
6561         on platform code images.
6562         * security-core-clr.c|h 
6563         (mono_security_set_core_clr_platform_callback): Allow the host
6564         to provide it's own platform check definition.
6565         (mono_security_core_clr_determine_platform_image): Detect if an 
6566         image is platform code (using the specified callback).
6567         (mono_security_core_clr_is_platform_image): Return cached value 
6568         for platform code.
6569
6570 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
6571
6572         * threads.c (mono_create_thread): New helper function to wrap CreateThread
6573         which has different parameter types for the 'tid' argument in windows and
6574         the io-layer.
6575
6576         * appdomain.c attach.c threads.c: Use the new helper.
6577
6578 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6579
6580         * metadata-verify.c: Verify valid table bits.
6581
6582 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6583
6584         * metadata-verify.c (verify_metadata_header): Store size in the size field.
6585
6586         * metadata-verify.c: Add initial table schema verification.
6587
6588 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6589
6590         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
6591         obtain the refclass argument needed by mono_param_get_objects (). Fixes
6592         #488383.
6593
6594         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
6595
6596         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
6597
6598 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
6599
6600         * security-core-clr.c: Add/update documentation
6601
6602 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6603
6604         * marshal.c (emit_marshal_object): Generate code to throw an exception
6605         instead of throwing it. Fixes #488670.
6606
6607 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
6608
6609         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
6610         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
6611         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
6612         and add a call to mono_security_core_clr_ensure_delegate_creation
6613         to do the extra checks required by CoreCLR.
6614         * security-core-clr.c|h: Add function to check delegate creation,
6615         both in the binding and accessibility, under CoreCLR.
6616
6617 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
6618
6619         * reflection.c (mono_reflection_create_dynamic_method): when 
6620         coreclr is enabled make sure that every resolved object are
6621         checked (e.g. field and method access).
6622         * security-core-clr.c|h: Add function to check objects resolved
6623         when a dynamic method is created.
6624
6625 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6626
6627         * metadata-verify.c: Cache directory rva translations.
6628
6629         * metadata-verify.c: Add cli-header and streams verification.
6630
6631 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6632
6633         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
6634         the wrong offset (8 instead of 6).
6635
6636 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
6637
6638         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
6639         methods, return the native function address itself. Fixes
6640         #487758.
6641
6642 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6643
6644         * console-io.c: some of the values for control characters might not be
6645         present.
6646
6647 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
6648
6649         * exception.c|h: Add helpers to create [Field|Method]AccessException
6650         * icall.c: Add required coreclr check calls for field reflection.
6651         Move the existing (method) check logic into security-core-clr.c
6652         * security-core-clr.c: Add functions to check if the access of a
6653         field or method is allowed when reflecting under coreclr. This is
6654         mostly done using a stack walk to find the "real" caller: i.e. the
6655         code that is calling the reflection
6656
6657 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
6658
6659         * gc-internal.h: Change location of gc_wrapper.h
6660
6661 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
6662
6663         * class.c: Simplification to coreclr checks for overrides that
6664         makes it easier to set breakpoints.
6665
6666 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
6667
6668         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
6669         mono_security_core_clr_method_level): Avoid potential 
6670         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
6671         user/application code) and make it easier to set breakpoints
6672
6673 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6674
6675         * metadata-verify.c: Reject cli header tables that mono don't handle.
6676
6677 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6678
6679         * pedump.c: Fix CLI header dumping.
6680
6681 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6682
6683         * metadata-verify.c: More CLI header verification.
6684
6685 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
6686
6687         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
6688
6689 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6690
6691         * metadata-verify.c: Initial verification of the CLI header.
6692
6693 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6694
6695         * metadata-verify.c (verify_resources_table): Fix verification of zero
6696         sized resource section and id entries count.
6697
6698 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
6699
6700         * icall.c: Handle user types in many Type icalls. Fixes #486303.
6701
6702 2009-03-17  Jb Evain  <jbevain@novell.com>
6703
6704         * profiler.c: call mono_gc_base_init from mono_profiler_load.
6705
6706 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
6707
6708         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
6709         (mono_gc_make_descr_for_array): Ditto.
6710
6711 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6712
6713         * verify.c (mono_verifier_is_class_full_trust): Add support for
6714         CoreCLR security mode where trusted assemblies are defined as
6715         "platform code".
6716
6717 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6718
6719         * metadata-verify.c: Add minimal PECOFF resource verification.
6720
6721 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6722
6723         * metadata-verify.c: Be less restrictive with some coff fields.
6724
6725 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6726
6727         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
6728         params as boxed values on stack. Fixes #485706.
6729
6730 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6731
6732         * console-io.c: the termios values may vary in different flavors of unix.
6733
6734 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6735
6736         * console-io.[ch]: return the entire set of control characters when
6737         initializing the terminal.
6738         * appdomain.c: bump corlib version.
6739
6740 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
6741
6742         * mono-perfcounters.c: added support for in-process custom
6743         performance counters.
6744
6745 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6746
6747         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
6748
6749 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6750
6751         * metadata-verify.c: Verify the data pointed by the import table. 
6752
6753 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6754
6755         * metadata-verify.c (load_data_directories): Store data
6756         directory contents.
6757
6758         * metadata-verify.c: Verify the import table. 
6759
6760 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6761
6762         * metadata-verify.c: Verify data directories.
6763
6764 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6765
6766         * metadata-verify.c: Check section header flags.
6767
6768 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6769
6770         * appdomain.c: if the assembly name is a shadow-copied file, return
6771         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
6772         in mono_make_shadow_copy.
6773         * icall.c: if the assembly name is a shadow-copied file, replace it
6774         with the original assembly path.
6775
6776         Bug #484244 fixed. NUnit tests for corlib can be run without
6777         --noshadow now.
6778
6779 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
6780
6781         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
6782         entries when the table is reallocated.
6783
6784         * icall.c: Allocate the memory used by the mono_ptr_array macros using
6785         mono_gc_alloc_fixed () since it contains GC refs.
6786
6787 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
6788
6789         * reflection.c (ensure_complete_type): New helper function to call
6790         type resolve handlers for unfinished dynamic types.
6791         (resolve_object): Call it for MonoClassFields. Fixes #483852.
6792
6793 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
6794
6795         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
6796         #483247.
6797
6798 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
6799
6800         * appdomain.c (get_shadow_assembly_location): Fix memleak.
6801
6802 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
6803
6804         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
6805         between GCHandles of type WeakTrackResurrection and the objects they
6806         point to.
6807
6808         * gc.c: Partly implement the sematics of GCHandles of type 
6809         WeakTrackResurrection: these handles should only be cleared after the
6810         finalizer of the object they are pointing to has ran.
6811
6812 2009-03-06  Mark Probst  <mark.probst@gmail.com>
6813
6814         * icall.c: Partially revert r126631 because using the jump
6815         trampolines for generic shared methods makes it superfluous.
6816
6817 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
6818
6819         * threads.c (handle_store): Create the 'threads' hash table with the proper
6820         MONO_HASH_VALUE_GC type.
6821
6822 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
6823
6824         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
6825         FIRST_GC_TRACKED.
6826
6827         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
6828         and LAST_GC_TRACKED as a GC root.
6829
6830         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
6831
6832         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
6833         the static data even if it consists of 1 reference.
6834
6835         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
6836         if there is a GC descriptor.
6837
6838         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
6839         instead of through the GC since they contain no object references.
6840
6841 2009-03-05  Mark Probst  <mark.probst@gmail.com>
6842
6843         * generic-sharing.c (instantiate_other_info): Always return a jump
6844         trampoline for method code.
6845
6846 2009-03-05  Marek Habersack  <mhabersack@novell.com>
6847
6848         * culture-info-tables.h: generated to include the en-tt culture.
6849
6850 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6851
6852         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
6853         capture the thread context.
6854
6855         * object.c (mono_async_result_new): Cache the invoke wrappers to
6856         ExecutionContext::Capture.
6857
6858 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6859
6860         * marshal.h: Add a prototype for what mono_compile_method returns
6861         for invoke wrappers.
6862
6863         * gc.c: Use the new prototype declaration.
6864
6865 2009-03-04  Geoff Norton  <gnorton@novell.com>
6866
6867         * boehm-gc.c: Add some MONO_LOG tracing for the GC
6868         * gc-internal.h:
6869         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
6870
6871 2009-03-04  Martin Baulig  <martin@ximian.com>
6872
6873         * mono-debug.h
6874         (mono_debugger_runtime_invoke): Removed.
6875
6876         * mono-debug-debugger.c
6877         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
6878
6879 2009-03-02  Martin Baulig  <martin@ximian.com>
6880
6881         * mono-debug.h
6882         (mono_debugger_unhandled_exception): Removed.
6883         (mono_debugger_handle_exception): Removed.
6884         (mono_debugger_throw_exception): Removed.
6885
6886         * mono-debug.c
6887         (mono_debug_debugger_version): Bump to 5.
6888
6889         * mono-debug-debugger.c: Moved the exception handling code to
6890         ../mini/debug-mini.c
6891
6892 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6893
6894         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
6895         finalize_objects_hash.
6896
6897         * gc.c: Use the separate lock to access the finalize_objects_hash field.
6898         
6899         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
6900         field.
6901
6902         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
6903         cache.
6904
6905         * image.c (mono_image_close): Free it.
6906         
6907         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
6908         allowing a creation of a wrapper which invokes its method using a CALLVIRT
6909         on the this argument.
6910
6911         * gc.c (run_finalize): Optimize the calling of the finalizers.
6912
6913 2009-03-03  Martin Baulig  <martin@ximian.com>
6914
6915         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
6916         of the `MonoGenericInst' changes.
6917
6918 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6919
6920         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
6921         mono_array_class_get_cached to reduce locking contention. Extract
6922         a domain var.
6923
6924         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
6925         intermediary managed arrays. Use caching version of mono_array_new
6926         to allocate the result array.
6927
6928         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
6929
6930         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
6931
6932         * locales.c (create_names_array_idx):  Use mono_array_new_cached
6933         to reduce locking contention.
6934
6935 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6936                 
6937         * object.c (mono_method_add_generic_virtual_invocation): Put back the
6938         thunk builder code for the non-interface case.
6939
6940 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
6941
6942         * object.c (get_generic_virtual_entries): New helper function to collect
6943         the virtual generic method instances which need to be added to an IMT
6944         thunk.
6945         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
6946         Instead of creating a new IMT thunk, reset the vtable slot to the
6947         trampoline, the thunk will be created the next time the trampoline is called.
6948         (build_imt_slots): Add support for virtual generic methods in interfaces by
6949         adding to the IMT thunk all the methods registered using 
6950         mono_method_add_generic_virtual_invocation ().
6951
6952         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
6953         (struct _MonoIMTCheckItem): Ditto.
6954
6955         * object.c (mono_method_add_generic_virtual_invocation): Take a
6956         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
6957         the IMT thunk to include all items.
6958         
6959         * object.c (mono_class_create_runtime_vtable): Add a missing
6960         mono_loader_unlock ().
6961
6962 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6963
6964         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6965
6966         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
6967
6968 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6969
6970         * object-internals.h: Rename _MonoReflectionEvent to
6971         MonoReflectionMonoEvent so it reflects the right managed type.
6972         Add a MonoReflectionEvent that correctly represents System.EventInfo.
6973
6974         * icall.c:
6975         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
6976         type.
6977
6978 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6979
6980         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
6981         intermediary managed arrays. Use caching version of mono_array_new
6982         to allocate the result array.
6983
6984 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6985
6986         * reflection.c: Use cached version of mono_array_new alongside
6987         the mono_reflection_get_custom_attrs_by_type call path.
6988
6989 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6990
6991         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
6992         intermediary managed arrays. Use caching version of mono_array_new
6993         to allocate the result array.
6994
6995         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
6996
6997 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6998
6999         * icall.c: Add small implementation of a growable stack bound array.
7000
7001         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
7002
7003         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
7004         intermediary managed arrays. Use caching version of mono_array_new
7005         to allocate the result array.
7006
7007 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
7008
7009         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
7010         helps Enum::CompareTo to be implemented without reboxing all enums
7011         to their underlying type.
7012 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
7013
7014         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
7015         since it acquires a global lock leading to scalability problems.
7016
7017         * profiler.c: Make the stat profiler work with multiple appdomains, this
7018         currently only works when no appdomains are unloaded.
7019
7020 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7021
7022         * appdomain.c: make the check to avoid copying when the assembly is
7023         already shadow copied actually work.
7024
7025 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
7026
7027         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7028
7029         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
7030         changes to the managed side.
7031
7032 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
7033
7034         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
7035         classes + a separate lock for it, as it is used frequently at runtime, not
7036         just during metadata loading/JIT compilation.
7037
7038         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
7039         for szarrays.
7040         
7041         * object-internals.h (mono_class_from_name_cached): New macro to cache
7042         the results of the lookup locally without having to declare a static
7043         variable to hold it.
7044         (mono_class_get_field_from_name_cached): Ditto.
7045         (mono_array_class_get_cached): Ditto.
7046
7047         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
7048         the new macros.
7049         
7050         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
7051         slower search in metadata.
7052
7053         * pedump.c: Fix a warning.
7054
7055 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
7056
7057         * reflection.c (encode_locals): Add checks for user types.
7058         (method_encode_clauses): Ditto.
7059         (method_encode_code): Ditto.
7060         (mono_image_create_token): Ditto.
7061
7062         * object-internals.h: Change the type of more fields from MonoReflectionType*
7063         to MonoObject*.
7064
7065 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
7066
7067         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
7068         the a thread does not suspend within 100ms.
7069
7070         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
7071         in addition to StopRequested as well.
7072
7073         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
7074
7075         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
7076         search the method_hash before inserting a new entry, to avoid crashes when
7077         the same method is inserted multiple times, causing the old 
7078         MonoDebugMethodInfo structure to be freed by the value dtor function.
7079
7080 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7081
7082         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
7083         SO_EXLUSIVEADDRUSE where available.
7084
7085 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
7086
7087         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
7088         runtime invoke wrappers, this time it is string ctor wrappers, which
7089         pass a dummy string as 'this' instead of their obj argument. Fixes
7090         #478473.
7091
7092 2009-02-21  Jb Evain  <jbevain@novell.com>
7093
7094         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7095         only get create_culture once.
7096
7097 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
7098
7099         * reflection.c (mono_reflection_setup_internal_class): Move the user type
7100         check before the locking.
7101         
7102         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
7103         (mono_reflection_create_runtime_class): Ditto.
7104         (mono_reflection_sighelper_get_signature_local): Ditto.
7105         (mono_reflection_sighelper_get_signature_field): Ditto.
7106
7107         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
7108         is a System.MonoType object or similar.
7109         (monotype_cast): New helper function to cast a MonoObject to a 
7110         MonoReflectionType object.
7111
7112         * object-internals.h: Change MonoReflectionType* members in structures to
7113         MonoObject* members to force the usage of the monotype_cast () function.
7114
7115         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
7116         structures/arrays. This causes us to assert instead of crashing when 
7117         instances of user defined subclasses of System.Type are encountered.
7118
7119 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7120
7121         * cil-coff.h:
7122         * icall-def.h:
7123         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
7124         win32 resource loaded from a PE file.
7125
7126         * image.c: fix mono_image_lookup_resource.
7127
7128 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7129
7130         * icall-def.h:
7131         * threads-types.h:
7132         * threads.c: added internal call for WaitHandle.SignalAndWait.
7133
7134 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
7135
7136         * cominterop.c : Adding cominterop_type_from_handle and 
7137           registering it as an icall.  Replacing all references
7138           to type_from_handle.
7139
7140         Code is contributed under MIT/X11 license.
7141
7142 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7143
7144         * Makefile.am: Add lock-tracer.h and lock-trace.c.
7145
7146         * appdomain.c: Call the tracer init function.
7147
7148         * domain-internals.h: Enable the tracer for the domain locks.
7149
7150         * image.c: Enable the tracer for image locks.
7151
7152         * loader.c: Enable the trace for the loader lock.
7153
7154         * lock-tracer.h:
7155         * lock-tracer.c: Initial implementation of the lock trace utility.
7156         The tracer requires a compile time define to be enabled and a env var
7157         to be enabled at runtime.
7158
7159 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7160
7161         * domain.c (mono_domain_code_foreach): Improve documentation.
7162
7163 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7164
7165         * appdomain.c:
7166         * generic-sharing.c:
7167         * object.c:
7168         * reflection.c:  Adjust locking order to the new semantics where the loader lock
7169         comes first.
7170
7171 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
7172
7173         * domain.c: Add mono_domain_code_* functions that perform locking
7174         around the domain codeman.
7175
7176         * domain-internals.h: Export those functions.
7177
7178         * object.c: Use new functions instead of acquiring the domain lock.
7179
7180 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
7181
7182         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
7183         delegate. Fixes #477396.
7184
7185 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7186
7187         * reflection.c (create_custom_attr): Get rid of alloca.
7188
7189 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
7190
7191         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
7192           Adding exception handling for all CCW calls.
7193
7194         Code is contributed under MIT/X11 license.
7195
7196 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7197
7198         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
7199
7200         * marshal.c (emit_marshal_boolean): Add null checks to the new 
7201         native->managed marshalling code. Fixes #476247.
7202
7203 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7204
7205         * class.c (mono_class_get_vtable_entry): Move the addition of
7206         static rgctx invoke wrappers for vtable methods here, this simplifies
7207         a lot of code and causes fewer rgctx wrappers to be created.
7208
7209         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
7210         name of the statistics to begin with an uppercase.
7211
7212 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7213
7214         * reflection.c: Revert previous change as it breaks the build.
7215         
7216 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7217
7218         * verify.c: Properly handle SZARRAY element type.
7219
7220         Fixes #474271.
7221
7222 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7223
7224         * reflection.c (mono_image_create_method_token): Correctly encode
7225         MethodDef MemberRefParent token.
7226
7227         Fixes #472845.
7228
7229 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7230
7231         * image.c (mono_image_close): Delete the critical section before
7232         freeing the memory holding it.
7233
7234 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7235
7236         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
7237         Fixes #476257.
7238
7239 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7240
7241         * pedump.c (main): Call mono_marshal_init so pedump
7242         doesn't crash.
7243
7244 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7245
7246         * loader.c (method_from_memberref): Properly fix #474271 and
7247         don't break the runtime bad.
7248
7249 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7250
7251         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
7252         (mono_domain_alloc0): Ditto.
7253
7254 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7255
7256         * loader.c (method_from_memberref): Don't abort if the array
7257         method is not found. A regular loader failure is more informative
7258         and correct.
7259
7260         Fixes #474271.
7261
7262 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7263
7264         *loader.c: Guard MonoImage::method_cache/methodref_cache
7265         using the image lock instead of the loader lock.
7266
7267         * metadata.h: Add comments about which fields are protected by
7268         the image lock.
7269
7270 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7271
7272         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
7273
7274         * generic-sharing.c (mono_method_construct_object_context): Remove the
7275         wrapper_type == NONE assert, it is not needed.
7276
7277 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
7278
7279         * reflection.c (clear_cached_object): New helper function.
7280         (mono_method_clear_object): New function to clear the cached reflection
7281         objects for a dynamic method.
7282
7283         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
7284         Partly fixes # 463323.
7285         
7286 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7287
7288         * class.c:
7289         * loader.c:
7290         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
7291
7292 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7293
7294         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
7295         take the image lock instead of the loader lock.
7296
7297         * metadata-internals.h: Export new functions.
7298
7299 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7300
7301         * domain.c (app_config_parse): Remove another use of stat that is
7302         not necessary as g_file_get_contents already does the presence
7303         check. 
7304
7305 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7306
7307         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
7308
7309         * marshal.c: Move the bstr handling code to cominterop.c.
7310
7311         * marshal.c: Remove some COM interop code missed previously.
7312
7313 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7314
7315         More Paolo patches from the Wii port:
7316         
7317         * security.c: Remove ves_icall_System_Environment_get_UserName
7318         from here.
7319
7320         * icall.c: And put ves_icall_System_Environment_get_UserName
7321         here. 
7322
7323         * appdomain.c (mono_set_private_bin_path_from_config): Remove
7324         redundant call to stat that was only used to test for the file
7325         existence.   Patch from Paolo.
7326
7327         * gc.c (run_finalize): If COM is disabled, do not link in
7328         mono_marshal_free_ccw.
7329
7330         * generic-sharing.c: Use alloca.h here as well.
7331
7332 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
7333
7334         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
7335
7336 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7337
7338         * cominterop.c cominterop.h: New files.
7339
7340         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
7341         function/typedefs which are needed by cominterop.c global.
7342
7343 2009-02-12  Mark Probst  <mark.probst@gmail.com>
7344
7345         * generic-sharing.c: Don't take the loader lock to guard image
7346         mempool allocs.
7347
7348 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7349
7350         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
7351         called without the loader lock which is required to guard MonoImage:tokens.
7352
7353 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7354
7355         * class.c:
7356         * metadata.c:
7357         * method-builder.c:
7358         * marshal.c:
7359         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
7360
7361 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7362
7363         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7364         Rework the code to use regular mono_image_alloc/0.
7365
7366         * loader.c: Rework the code to use regular mono_image_alloc/0.
7367
7368         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7369
7370 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
7371
7372         * object-internals.h : Fixing a typo in the 
7373           MonoReflectionComVisibleAttribute struct.
7374
7375         * marshal.c (cominterop_com_visible): Check the implemented 
7376           interfaces for ComImport.
7377
7378         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
7379           assume that bools should be treated as VARIANTBOOLs.
7380
7381         * marshal.c (emit_marshal_boolean): Adding cases for 
7382           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
7383
7384         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
7385           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
7386
7387         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
7388           should be treated as VARIANTBOOLs.    
7389
7390         Code is contributed under MIT/X11 license.
7391
7392 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7393
7394         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
7395         allocation with the image lock.
7396
7397 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7398
7399         This patch is the last of a series to remove explicit reference of MonoImage::mempool
7400         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
7401
7402         * object.c: Add mono_string_to_utf8_image.
7403
7404         * object-internals.h: Export mono_string_to_utf8_image.
7405
7406         * reflection.c: Rework all explicit references to the the image mempool to go thought
7407         the mono_image_alloc set of functions.
7408
7409 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7410
7411         This patch is the third of a series to remove explicit reference of MonoImage::mempool
7412         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
7413         and generics-sharing.c.
7414
7415         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
7416         as first argument. Note that this function remains broken as it doesn't perform locking around the
7417         mempool allocation.
7418
7419         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
7420
7421         * image.c: Add g_slist_append_image.
7422
7423         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
7424         the supplied image for allocation. Move code into mono_metadata_field_info_full.
7425
7426         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
7427         Fix all related code to do the same.
7428
7429         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
7430
7431         * metadata-internals.h: Fix the signatures.
7432
7433 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7434
7435         This patch is the second of a series to remove explicit reference of MonoImage::mempool
7436         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
7437         and similar to work using MonoImage.
7438
7439         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
7440         MonoMemPool.
7441
7442         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
7443
7444         * class.c (mono_metadata_signature_deep_dup): Same.
7445
7446         * class.c (inflate_generic_type): Same.
7447
7448         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
7449
7450         * metadata.c (mono_metadata_signature_dup_full): Same.
7451
7452         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
7453         mono_metadata_signature_dup_full.
7454
7455         * metadata.c (mono_metadata_type_dup): Same.
7456
7457         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
7458
7459         * reflection.c: Same.
7460
7461         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
7462
7463         * metadata-internals.h: Fix the signatures.
7464
7465         * class-internals.h: Same.
7466
7467 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7468
7469         This patch is the first of a series to remove explicit reference of MonoImage::mempool
7470         and use mono_image_alloc set of functions instead. 
7471
7472         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
7473         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
7474         of a MonoMemPool.
7475
7476         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
7477
7478         * class.c (g_list_prepend_mempool): Removed.
7479
7480         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
7481
7482         * image.c: Add g_list_prepend_image.
7483
7484         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
7485
7486         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
7487
7488
7489 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7490
7491         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
7492         mono_image_unlock.
7493
7494         * image.c (mono_image_init): Init the lock field.
7495  
7496         * image.c (mono_image_init): Cleanup the lock field.
7497
7498         * image.c: Add mono_image_(un)lock functions.
7499
7500 2009-02-11  Mark Probst  <mark.probst@gmail.com>
7501
7502         * class.c, class-internals.h: mono_method_get_context_general()
7503         combines the functionality of mono_method_get_context() and
7504         mini_method_get_context().
7505
7506         * generic-sharing.c, domain-internals.h:
7507         mono_method_construct_object_context() and
7508         mono_domain_lookup_shared_generic() moved from mini.
7509
7510         * icall.c (ves_icall_InternalInvoke): Handle the case where the
7511         method doesn't have the correct instantiation because it's shared
7512         generic code.  Fixes #473999.
7513
7514 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
7515
7516         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
7517
7518         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
7519         
7520 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7521
7522         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
7523
7524         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
7525
7526         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
7527         and recheck the cache for dups after it.
7528
7529         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
7530
7531         Fixes one of the deadlocks found in #473150.
7532
7533 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
7534
7535         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
7536           For Win32, add additional break conditions for accept.
7537
7538         Code is contributed under MIT/X11 license.
7539
7540 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
7541
7542         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
7543         lazily initialize the native wrapper cache.
7544         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
7545         cache, since they are different from the normal wrappers.
7546
7547         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
7548
7549         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
7550         AOT compiled native wrappers.
7551
7552 2009-02-09  Geoff Norton  <gnorton@novell.com>
7553
7554         * appdomain.h:
7555         * security-core-clr.c: Allow enabling core-clr from the embedding
7556         API.
7557
7558 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7559
7560         * socket-io.c: when requesting all the local ips, if there are no
7561         interfaces up and running, MS returns 127.0.0.1.
7562
7563 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7564
7565         * mono-perfcounters-def.h: processor time is an inverse time.
7566         Fixes bug #468625.
7567
7568 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7569
7570         * socket-io.c: an empty host name returns the list of local IPs.
7571         Fixes bug #386637 part 1/2.
7572
7573 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
7574
7575         * verify.c (mono_class_interface_implements_interface): Call
7576         mono_class_setup_interfaces ().
7577         (merge_stacks): Ditto.
7578
7579 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7580
7581         * class.c (mono_class_setup_interfaces): New function to lazily initalize
7582         klass->interfaces.
7583         (mono_generic_class_get_class): Don't initalize klass->interfaces.
7584         (mono_generic_class_get_class): Ditto.
7585
7586 2009-02-06  U-QUACK\miguel  <miguel@quack>
7587
7588         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
7589         they live in security.c
7590
7591         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
7592         another bit from Paolo's code.
7593
7594 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7595
7596         * object.c (build_imt_slots): Add a small optimization to avoid inflating
7597         methods which will be discarded by add_imt_builder_entry ().
7598
7599         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
7600         need to be boxed.
7601
7602         * loader.c: Add a statistics for the size of the memberref signature cache.
7603         
7604         * loader.c (find_cached_memberref_sig): New helper function.
7605         (cache_memberref_sig): Ditto.
7606
7607         * loader.c: Cache the result of parsing memberref signatures, since otherwise
7608         they will be parsed again for every generic instantiation, leading to unbounded
7609         memory growth.
7610
7611 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7612
7613         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
7614         parameters of generic methods.
7615
7616         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
7617         after the original method is copied to the inflated method.
7618         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
7619
7620         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
7621         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
7622
7623         * class.c metadata.c: Update after the changes above.
7624
7625 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7626
7627         * metadata-verify.c: Simplified error handling and added
7628         section table validation.
7629
7630 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7631
7632         * class-internals.h (MonoClassExt): New structure containing rarely used
7633         fields of MonoClass.
7634         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
7635         through a new 'ext' field.
7636
7637         * class.c (mono_class_alloc_ext): New helper function to allocate 
7638         class->ext.
7639
7640         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
7641
7642 2009-02-05  Mark Probst  <mark.probst@gmail.com>
7643
7644         * object.c (mono_object_get_virtual_method): Properly inflate
7645         generic methods.  Fixes #472692.
7646
7647 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7648
7649         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
7650         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
7651         for the parent type, the created type must be ready to be used on a generic
7652         instantiation.
7653         We fill this_arg/byval_arg if the parent is a generic instance to make sure
7654         we won't have duplicated entries in generic_inst_cache.
7655
7656         Fixes #469553.
7657
7658 2009-02-05  Miguel De Icaza  <miguel@novell.com>
7659
7660         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
7661         replace with plain BSD per the comments on the bug MONO77637.
7662
7663 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7664
7665         * class.c (mono_class_get_generic_class): New accessor function.
7666         (mono_class_get_generic_container): Ditto.
7667
7668         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
7669         fields, similar to the ones in MonoMethod.
7670
7671         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
7672         (mono_class_create_from_typedef): Set klass->is_generic if needed.
7673
7674         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
7675         
7676         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
7677         the same information as element_class->byval_arg.
7678
7679         * class.c reflection.c: Remove references to class->byval_arg.
7680
7681         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
7682         klass->enum_basetype directly.
7683
7684         * verify.c metadata.c object.c icall.c reflection.c: Use 
7685         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
7686         directly.
7687
7688 2009-02-04  Miguel de Icaza  <miguel@novell.com>
7689
7690         * icall-def.h: Remove internal calls for sockets when
7691         DISABLE_SOCKET is defined, file system writing features when the
7692         OS only support reading and not writing data and Policy support if
7693         the Policy is disabled.
7694         
7695         * image.c (do_mono_image_open): Apply Paolo's patches for using
7696         mono_file_map_ APIs here.
7697
7698         * assembly.c: Add support for platforms to avoid prefix
7699         auto-detection. 
7700
7701 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
7702
7703         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
7704         warning.
7705
7706         * class.c (mono_class_inflate_generic_class): New helper function.
7707
7708         * class.c: Use mono_class_inflate_generic_class in a few places. Add
7709         statistics for inflated methods/classes.
7710
7711         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
7712
7713         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
7714         the call is made from Delegate.CreateDelegate () for the invoke method of
7715         a delegate.
7716
7717         * loader.c: Add a statistics for the memory occupied by inflated signatures.
7718
7719         * metadata.c (mono_metadata_signature_size): New helper function.
7720
7721         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
7722         generic instances.
7723
7724         * metadata.c (inflated_method_in_image): Avoid calling 
7725         mono_method_signature () if the method does not already have a signature.
7726
7727 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7728
7729         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
7730         valuetype is compatible with target type, check by inheritance as a
7731         VT is not really compatible with System.ValueType, for example.
7732
7733         * verify.c (do_invoke_method): Improve error message.
7734
7735         * verify.c (do_box_value): If boxing a nullable, use the type argument
7736         on stack instead.
7737
7738         * verify.c (do_newobj): Improve error message.  
7739
7740         Fixes #469549.
7741
7742 2009-02-03  Miguel de Icaza  <miguel@novell.com>
7743
7744         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
7745
7746 2009-02-03  Mark Probst  <mark.probst@gmail.com>
7747
7748         * generic-sharing.c: Don't hold domain lock when calling
7749         instantiate_other_info().  Fixes #471958.
7750
7751         * domain-internals.h, loader.c: Describe locking policy of domain
7752         lock vs loader lock.
7753
7754 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7755
7756         * verify.c (mono_delegate_signature_equal): Make it possible to check
7757         first-arg-bound delegates to static method.
7758
7759         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
7760         static methods with the first arg bound.
7761
7762         Fixes #469529.
7763
7764 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7765
7766         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
7767         errors.
7768
7769         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
7770         under strict mode. Any type, when boxed can be seen as a reference type.
7771
7772         Fixes #469528.
7773
7774 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7775
7776         * object.h: The lower bound of an array is a signed integer value.
7777         Introduce mono_array_lower_bound_t typedef. It should be used instead of
7778         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
7779
7780         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
7781         calculate the upper bound.
7782         
7783         Fixes #471252.
7784
7785 2009-02-02  Miguel de Icaza  <miguel@novell.com>
7786
7787         From Paolo's work, refactored, cleared up:
7788         
7789         * threadpool.c, icall.c: ifdef code that requires a working socket
7790         stack.
7791
7792         * metadata.c (mono_metadata_field_info): Do not attempt to return
7793         a value from a function declared as void.
7794
7795         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
7796         from the console stack.
7797
7798         * assembly.c: use strrchr instead of rindex.
7799
7800         * class.c, object.c, marshal.c, icall.c, reflection.c: include
7801         alloca.h on systems that have it.
7802
7803         * environment.c: Avoid code that uses stuff from
7804         HAVE_SYS_UTSNAME_H
7805         
7806         * appdomain.c: Include sys/time.h.
7807
7808         * console-io.c: include sys/ioctl.h if it is available.
7809
7810 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
7811
7812         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
7813
7814         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
7815         the method builder.
7816
7817         * marshal.c: Set mb->skip_visibility instead of setting it on the method
7818         after it was created and cached, as the later is not thread safe.
7819         
7820 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7821
7822         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
7823         called while the debugging module is not initialized. Fixes #471669.
7824
7825 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
7826
7827         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
7828
7829         Fixes #471255.
7830
7831 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7832
7833         * generic-sharing.c (lookup_or_register_other_info): Make sure the
7834         loader lock is not taken while the templates lock is held.  Fixes
7835         #471089.
7836
7837 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7838
7839         * metadata.c (type_in_image): Added a check to fix a monodis
7840         crash.
7841
7842 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7843
7844         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
7845         nullable arguments.
7846
7847         * object.c (mono_runtime_invoke_array): Ditto.
7848         
7849         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
7850         freeing wrappers of dynamic methods.
7851
7852         * loader.c (mono_free_method): Call it. Fixes #463323.
7853         
7854         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
7855         methods taking vtype/byref arguments, to fix yet another bug caused by
7856         the sharing of runtime invoke wrappers. Partly fixes #471259.
7857
7858 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
7859
7860         * debug-mono-symfile.c (check_line): Return NULL instead of returning
7861         <first file in file table>:1 when the IL offset does not have an associated
7862         line number.
7863
7864 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
7865
7866         * mono-debug.c (mono_debug_lookup_locals): New function to return local
7867         variable info for a method.
7868
7869         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
7870         
7871 2009-01-30  Jb Evain  <jbevain@novell.com>
7872
7873         * pedump.c: reuse code from monodis to make sure pedump honors
7874         MONO_PATH, which is needed to verify net_2_1 assemblies.
7875
7876 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
7877
7878         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
7879         there is no line number info.
7880
7881 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
7882
7883         Avoid some MonoType allocations
7884         * reflection.c (mono_reflection_initialize_generic_parameter):
7885         Reuse MonoType from param->pklass rather than allocating one.
7886         (mono_dynamic_image_free): Update to changes.
7887
7888 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7889
7890         Rearrange some code to improve consistency
7891         * reflection.c (mono_reflection_setup_generic_class): Move body ...
7892         (mono_reflection_initialize_generic_parameter): ... here.
7893
7894 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
7895
7896         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
7897         with type constraints as an experiment.
7898
7899         * boehm-gc.c (on_gc_notification): Update mono_stats.
7900
7901 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7902
7903         Avoid some allocations
7904         * class-internals.h (_MonoGenericInst::type_argv): Convert from
7905         pointer to tail array to avoid extra allocation.
7906         * metadata.c (free_generic_inst): Update to changes.
7907         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
7908         on-stack struct.
7909
7910 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
7911
7912         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
7913         return TRUE if the two type objects are the same.
7914
7915 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7916
7917         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
7918         (mono_class_native_size): Use klass->marshal_info->min_align instead of
7919         klass->min_align, since klass->min_align contains the managed alignment,
7920         while the native alignment can be different, like for longs on x86.
7921         Fixes #469135.
7922
7923         * class-internals.h (MonoMarshalType): Add a min_align field.
7924
7925 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
7926
7927         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
7928         the 1.0 format.
7929
7930 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7931
7932         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
7933         some comments about the usage of the used_regs field.
7934
7935         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
7936         Fixes #469217.
7937
7938 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
7939
7940         * appdomain.c: return NULL instead of throwing FileNotFoundException
7941         when LoadAssembly() fails.
7942
7943 2009-01-23  Mark Probst  <mark.probst@gmail.com>
7944
7945         * metadata.c (mono_metadata_generic_param_equal): Only compare the
7946         image if the owner is NULL.  Fixes the AOT failures.
7947
7948 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
7949
7950         * metadata.c (mono_metadata_load_generic_params): Initialize the 
7951         MonoGenericParam structure using memset so the image field is initialized
7952         as well.
7953
7954 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7955
7956         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
7957         a plain store.
7958
7959 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
7960
7961         * class.c (mono_class_setup_vtable_general): In the generic instance
7962         optimization, set method->slot for abstract virtual methods. Fixes part of
7963         #467834.
7964
7965 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7966
7967         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
7968         which signals that the unloading has started but all appdomain services must
7969         remain operational.
7970
7971         * appdomain.c (mono_domain_unload): The initial state for unloading now
7972         is unloading_start and we switch to unloading after the managed call to
7973         AppDomain::DomainUnload has finished.
7974
7975         The new unloading state has to be created because managed code in the
7976         DomainUnload event can depend on things like the threadpool still working.
7977         The domain must remain fully functional while the event executes.
7978
7979         This shown as an issue due to Process::WaitForExit, which waits for
7980         async reads of stdout and stderr to complete. Since those are processed
7981         in the threadpool the code deadlocks because the DomainUnload callback 
7982         waits for the async read finished event, which should have been set by a
7983         threadpool job but has been discarded due to the domain been in unload
7984         state.
7985
7986 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7987
7988         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
7989         image must match.
7990
7991 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7992
7993         * reflection.c (resolve_object): For fields, inflate the class and
7994         then get the field in the inflated class.
7995
7996 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7997
7998         * object-internals.h (struct _MonoException): Added a comment
7999         explaining the new use of trace_ips.
8000
8001 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8002
8003         * generic-sharing.c (inflate_other_data): Inflate array methods
8004         correctly.
8005
8006         * loader.c, class-internals.h: Rename search_in_array_class() to
8007         mono_method_search_in_array_class() and make it non-static.
8008
8009 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8010
8011         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
8012         Hopefully fixes #458168.
8013
8014 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8015
8016         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
8017         as it is performed elsewhere.
8018
8019         Code is contributed under MIT/X11 license
8020
8021 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8022
8023         * mono-perfcounters-def.h: Add counters for asp.net requests total and
8024         requests queued.
8025         * object.c (mono_raise_exception): Increment the exceptions total
8026         counter when an exception is thrown.
8027         * class-internals.h: Add a location for storing the total number of
8028         asp.net requests served.
8029         * mono-perfcounters.c: Implement update support for asp.net counters
8030         from the class libraries. Implement read support for asp.net counters
8031         and exceptions total counter.
8032
8033 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8034
8035         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
8036         accessing klass->methods. Fixes #467385.
8037
8038 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8039
8040         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
8041         for byval arguments without an [Out] attribute. Fixes #467212.
8042
8043         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
8044         Fix compilation under android.
8045         
8046         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
8047         processed, scan them directly after they are copied, to achieve better locality
8048         and cache usage.
8049
8050         * socket-io.c: Applied patch from Koushik Dutta
8051         (koush@koushikdutta.com). Disable IPV6 when running under android.
8052
8053 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8054
8055         * icall.c (ves_icall_InternalExecute): Add write barriers.
8056
8057         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
8058         the GC code.
8059
8060         * sgen-gc.c: Implement write barriers in IL code.
8061
8062 2009-01-17  Geoff Norton  <gnorton@novell.com>
8063
8064         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
8065
8066 2009-01-17  Geoff Norton  <gnorton@novell.com>
8067
8068         * image.c: When unloading the image->references table, there can be gaps
8069         in it.  Ensure that we iterate every entry to avoid leaking assembly references
8070         when unloading an appdomain.
8071
8072 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
8073
8074         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
8075         speed up ptr-in-nursery checks.
8076
8077         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
8078         threads_lock () to prevent deadlocks.
8079
8080         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
8081         does not need to be scanned during minor collections, since writes to it
8082         must use write barriers.
8083
8084 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
8085
8086         * metadata-verify.c: Add pe nt header verification.
8087         
8088 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8089
8090         * gc.c: Fix a few warnings when using SGEN.
8091
8092 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
8093
8094         * metadata-verify.c: Add pe optional header verification.
8095
8096 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8097
8098         * sgen-gc.c: Add support for user defined marker functions, used by
8099         MonoGHashTable to avoid registering a GC root for every hash node.
8100
8101 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8102
8103         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
8104         non-pinned roots into separate hashes to avoid having to traverse them
8105         in functions which are only interested in one kind.
8106
8107 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8108
8109         * metadata-verify.c: Add pe header machine field verification.
8110         
8111 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8112
8113         * metadata-verify.c: Add pe header size verification.
8114
8115 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8116
8117         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
8118         using the GC, they don't contain references.
8119
8120         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
8121
8122 2009-01-13  Geoff Norton  <gnorton@novell.com>
8123
8124         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
8125         AppDomains created on the native side can be cleaned up on the native side.
8126
8127 2009-01-13  Geoff Norton  <gnorton@novell.com>
8128
8129         * appdomain.c: Ensure that we call mono_context_init for the embedding api
8130         as well as the managed api.
8131
8132 2009-01-13  Geoff Norton  <gnorton@novell.com>
8133
8134         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
8135         with a MonoAppDomain initialized against it.
8136
8137 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8138
8139         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
8140         
8141         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
8142
8143         * marshal.c: Avoid setting the exception clauses after a method has been entered 
8144         into the wrapper caches. Fixes #465700.
8145
8146         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
8147         method builder.
8148         (mono_mb_create_method): Set the clauses from the method builder.
8149
8150 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
8151
8152         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
8153         Patch from Makoto Kishimoto.
8154
8155 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8156
8157         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
8158         encoding them as ROOT_DESC_COMPLEX.
8159         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
8160
8161 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
8162
8163         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
8164         no longer point to the nursery.
8165
8166         * sgen-gc.c: Add a few comments/FIXMEs.
8167         
8168         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
8169
8170         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
8171         initialization of the various _method variables thread safe. Fixes
8172         #465377.
8173
8174 2009-01-12  Mark Probst  <mark.probst@gmail.com>
8175
8176         * domain.c, domain-internals.h: Remove the shared_generics_hash
8177         and its lookup functions.
8178
8179 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
8180
8181         * socket-io.c:  Fixing the MSVC build. 
8182
8183         Code is contributed under MIT/X11 license.
8184
8185 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
8186
8187         * metadata-verify.c: Add pe header watermark verification.
8188
8189 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8190
8191         * metadata-verify.c: Add lfanew verification.
8192
8193 2009-01-12  Jb Evain  <jbevain@novell.com>
8194
8195         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
8196         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
8197
8198 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
8199
8200         * socket-io.c: Fix the build.
8201
8202         * environment.c: Fix an #ifdef.
8203
8204 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8205
8206         * threadpool.c (async_invoke_thread): Handle the wait function returning
8207         WAIT_IO_COMPLETION as well.
8208         (async_invoke_io_thread): Ditto.
8209
8210 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
8211
8212         * threads.c: Fixing the Windows build.
8213
8214         Code is contributed under MIT/X11 license.
8215
8216 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8217  
8218         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
8219         interrupt a wait.
8220         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
8221         the thread to wait again.
8222
8223 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8224
8225         * metadata-verify.c: Initial skeleton of the metadata verifier.
8226
8227         * pedump.c: Add support for the metadata verifier.
8228
8229         * verify-internal.h: Export the whole assembly metadata verifier function.
8230
8231 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8232
8233         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
8234
8235 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8236
8237         * Makefile.am: Upgrade dtrace-prelink.sh location.
8238
8239 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8240
8241         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
8242         well. Otherwise the shutdown deadlock that happens on unix will can happen
8243         as well.
8244         If the main thread code finishes too fast it's possible that the finalizer
8245         thread won't have executed yet, won't record itself as the finalizer thread
8246         and the shutdown sequence will wait on it forever.
8247
8248 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8249
8250         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
8251         with MSVC.
8252
8253 2009-01-08  Miguel de Icaza  <miguel@novell.com>
8254
8255         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
8256         Robert Jordan for pointing this out.
8257
8258 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
8259
8260         * icall.c
8261         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
8262         ves_icall_System_IO_DriveInfo_GetDriveType.
8263
8264 2009-01-07  Miguel de Icaza  <miguel@novell.com>
8265
8266         * icall.c: Wrap calls to mono_strtod in CriticalSection
8267         invocations when using eglib, to work around #464316.
8268
8269 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8270
8271         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
8272         return value of GetCurrentDirectory to never access unitialized memory.
8273
8274 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8275
8276         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
8277         return value of GetCurrentDirectory and expand the buffer if needed.
8278
8279         Fixes #459094.
8280
8281 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
8282
8283         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
8284           Adding a call to mono_init_com_types.
8285
8286         Code is contributed under MIT/X11 license.
8287
8288 2009-01-07  Geoff Norton  <gnorton@novell.com>
8289
8290         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
8291         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
8292         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
8293         be the value of the ip buffer.
8294
8295 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8296
8297         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
8298         interfaces_packed here.
8299
8300         Fixes part of #463294.
8301
8302 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8303
8304         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
8305
8306         Fixes part of #463294.
8307
8308 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8309
8310         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
8311         is a boxed complex as well.
8312
8313         Fixes part of #463294.
8314
8315 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8316
8317         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
8318         control if a methodspec should be created for the generic method definition from external assemblies.
8319         Caching of methodspec is done using the handleref hash table.
8320
8321         Fixes #462592.
8322
8323 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
8324
8325         * loader.c (find_method): When searching the interfaces of a class
8326         check the transitive closure of implemented interfaces.
8327
8328         Fixes #463303.
8329
8330 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8331
8332         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
8333         
8334 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8335
8336         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
8337         interfaces calculation to fill_valuetype_array_derived_types.
8338
8339         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
8340         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
8341         for example.
8342
8343         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
8344         interfaces for valuetypes if needed.    
8345
8346         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
8347         for their basetype as well. Types are array expanded if rank is > 0.
8348
8349         Fixes #400716.
8350
8351 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
8352
8353         * socket-io.h : Changing the signature of
8354           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
8355           the blocking state.
8356
8357         * icall-def.h :  Changing the signature of
8358           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
8359
8360         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
8361           For Windows only.  Avoid blocking when calling accept by
8362           querying for a connection via select.  The loop also queries
8363           the thread state every 1000 micro seconds for the thread
8364           stop state.  This will avoid the process hanging on shutdown
8365           when using a TcpChannel that is never connected to.
8366
8367         Code is contributed under MIT/X11 license.
8368
8369 2008-12-30  Marek Safar  <marek.safar@gmail.com>
8370
8371         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
8372
8373 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8374
8375         * class.c (get_implicit_generic_array_interfaces): Extract common
8376         code to a helper function making it a lot easier on the eyes.
8377
8378 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8379
8380         * class.c (get_implicit_generic_array_interfaces): If the internal
8381         enumerator is an interface inflate System.Object instead of itself.
8382
8383         Fixes #461261.
8384
8385 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
8386
8387         * object.c (mono_runtime_invoke_array): Don't assert with
8388         byref nullable types.
8389
8390         * marshal.c (mono_marshal_get_runtime_invoke): To handle
8391         byref nullables we unbox the object and store it on the
8392         stack. 
8393         We can't use the boxed object since it is the T of Nullable<T>
8394         and the boxed representation of a nullable it's underlying type
8395         or null.
8396         We could cheat and create a boxed nullable and use the same
8397         machinery of other byref VTs but this feels like a hack and
8398         using the stack has the bonus of reducing heap pressure.
8399
8400         Fixes #461941.
8401
8402 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
8403
8404         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
8405         return value.
8406
8407         Fixes #461867.
8408
8409 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
8410
8411         * icall-def.h : Adding an internal call definition for 
8412           System.Environment.internalBroadcastSettingChange.
8413
8414         * icall.c : Adding a Windows only implementation to broadcast a 
8415           WM_SETTINGCHANGE when an environment variable has changed.
8416
8417         Code is contributed under MIT/X11 license.
8418
8419 2008-12-19  Mark Probst  <mark.probst@gmail.com>
8420
8421         * class.c, class-internals.h: Made
8422         mono_class_has_parent_and_ignore_generics() non-static.
8423
8424 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
8425
8426         * image.c: deal with the mmap failing when loading an image.
8427
8428 2008-12-17  Geoff Norton  <gnorton@novell.com>
8429
8430         * threadpool.c: Ensure that the io_queue_lock is initialized
8431         in all circumstances, as we always attempt to cleanup against it.
8432
8433 2008-12-17  Miguel de Icaza  <miguel@novell.com>
8434
8435         * icall.c (ves_icall_System_Environment_get_Platform): For
8436         compatibility reasons for existing client code we will keep
8437         returning 4 for a while.   
8438
8439         For how long will depend on the documentation being updated, and
8440         for us to give client code a chance to be updated.
8441
8442         This reverts the original decison on #433108 since we did not
8443         catch roughly 33 instances of the broken code in our own source
8444         code base, we did not catch failures on the buildbots, and QA did
8445         not bring this as a problem.
8446
8447         Only today I found some customer's code breaking due to our own
8448         class libraries not being fully updated and tracked it down to
8449         this change.  I am reverting it because if we could not even get
8450         our story straight in our own code base, how can we hope that our
8451         end user code be fixed?
8452
8453         As of this morning, our Wiki page that documents how to detect
8454         Unix had not been fixed.    
8455
8456 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
8457
8458         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
8459
8460         * class.c (mono_class_get_fields): Handle loading errors.
8461
8462 2008-12-12 Mark Mason <mmason@upwardaccess.com>
8463
8464         * 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.
8465         
8466 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
8467
8468         * mono-perfcounters.c: avoid warning.
8469
8470 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8471
8472         * reflection.c (ensure_runtime_vtable): Work on generic instances and
8473         make sure all interfaces have MonoClass::interface_id set.
8474
8475         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
8476         method table is property set.
8477
8478 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8479
8480         * class.c: New function mono_class_setup_interface_id that setup
8481         MonoClass::interface_id if needed.
8482
8483         * class-internals.h: Export new function.
8484
8485 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8486
8487         * class.c: Add code to sanity check the vtable after setup_vtable_general
8488         has done it's work.
8489
8490 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
8491
8492         * icall.c: make Assembly.GetExecutingAssembly work properly when
8493         reflection is used to invoke the method.
8494         Bug #321781 fixed.
8495
8496 2008-12-11  Mark Probst  <mark.probst@gmail.com>
8497
8498         * metadata/generic-sharing.c: Look for constraints in all type
8499         arguments, not just the first one.
8500
8501 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8502
8503         * appdomain.c: return the correct CodeBase for an Assembly instance
8504         that was loaded from the shadow-copy directories.
8505         Bug #458190 fixed.
8506
8507 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
8508
8509         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
8510
8511         * sgen-gc.c (check_object): New debugging helper function.
8512
8513         * object.c: Fix calls to mono_value_copy_array ().
8514
8515 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8516
8517         * class.c (mono_class_setup_fields): If working on an inflated class
8518         first check if the generic definition did init with success.
8519
8520         Fixes #445361.
8521
8522 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8523
8524         pedump.c (main): Fix a warning.
8525
8526 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
8527
8528         * object-internals.h : Adding a definition for 
8529           MonoReflectionComVisibleAttribute.
8530
8531         * marshal.c (cominterop_com_visible) :  Method added to check the 
8532           ComVisible attribute of a class.
8533
8534         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
8535           cominterop_raise_hr_exception added to consolidate common code 
8536           to raise hr exceptions.
8537
8538         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
8539           if a managed class should support IDispatch.
8540
8541         * marshal.c 
8542           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
8543           Added additional checks for managed object when getting 
8544           an IDispatch interface.
8545
8546         Code is contributed under MIT/X11 license.
8547
8548 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8549
8550         pedump.c (main): Handle mono_get_method () returning NULL. 
8551
8552 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8553
8554         * marshal.h: Fix a warning.
8555
8556 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
8557
8558         * marshal.c : Adding cominterop_release_all_rcws to release all
8559           runtime callable wrappers held by the runtime.
8560
8561         * marshal.h : Adding declaration for cominterop_release_all_rcws.
8562           
8563         Code is contributed under MIT/X11 license.
8564
8565 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8566
8567         * metadata.c (mono_image_alloc_lock): New helper function.
8568         (mono_image_alloc0_lock): Ditto.
8569
8570         * metadata.c: Use the alloc_lock () helper functions for allocating
8571         memory from the image mempool.
8572
8573 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
8574
8575         * class.c (mono_class_from_generic_parameter): Document it's
8576         locking behavior. Fix double checked locking here, we stored in
8577         param->pklass a partially initialized MonoClass and no membar was used.
8578
8579 2008-12-05  Marek Habersack  <mhabersack@novell.com>
8580
8581         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
8582         (3) functions are present in the C library use them to do the
8583         job. If they are absent, make sure that the sum of int_part and
8584         dec_part is rounded before returning. This is necessary due to the
8585         division of dec_part by the power of 10 before the final addition
8586         is performed - if the result is not rounded in some cases it will
8587         yield invalid results.
8588
8589 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
8590
8591         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
8592         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
8593         instruction instead of a pointer constant.
8594
8595 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
8596
8597         * loader.c (mono_method_get_header): Do most of the work outside the
8598         loader lock, to avoid assembly load hook deadlocks.
8599
8600         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
8601         (mono_metadata_parse_type_full): Ditto.
8602
8603 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
8604
8605         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
8606         Make the stack depth fixed. Ensure proper argument passing to the backtrace
8607         funtions. Finally, use a lock to produce well ordered output.
8608
8609         The lock looks silly, as all calls to the corlib mempool should be guarded
8610         with the loader lock, but for some reason this fact doesn't help. 
8611
8612         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
8613
8614 2008-12-02  Mark Probst  <mark.probst@gmail.com>
8615
8616         * socket-io.c: 64 bit big-endian fixes.
8617
8618 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
8619
8620         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
8621         targets that require strict compatibility between the types.
8622
8623         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
8624         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
8625         Kill the strict argument and create a new one valuetype_must_be_boxed.
8626
8627         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
8628         state that all valuetypes must be boxed.
8629
8630         Fixes #448560.
8631
8632 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
8633
8634         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
8635         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
8636
8637         Contributed under MIT/X11 license.
8638
8639 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
8640
8641         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
8642         the inflate_generic_type machinery should handle it.
8643
8644         This avoids a crash when the field's flags is zero and it's type is
8645         a primitive.
8646         What happens is that mono_metadata_parse_type_full will see that opt_attrs
8647         is zero and will return one of the cached built-in primitive types. Since
8648         those types live in read-only memory, the code that copies it crashes.  
8649
8650 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8651
8652         * object.c: Don't put function descriptors into generalized IMT
8653         thunks.
8654
8655 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8656
8657         * class.c: Enable generic code sharing on PPC64.
8658
8659 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8660
8661         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
8662         from mini/mini.c.
8663
8664         * generic-sharing.c: Allocate the method template slists from the
8665         image mempool so it doesn't leak.
8666
8667 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
8668
8669         * class.c (generic_array_methods): Release the linked list.
8670
8671 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8672
8673         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
8674         invocation to g_utf16_to_utf8().
8675
8676 2008-11-26  Mark Probst  <mark.probst@gmail.com>
8677
8678         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
8679         arguments on big endian archs.
8680
8681 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8682
8683         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
8684         the type name (test added in corlib).
8685
8686 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8687
8688         * pedump.c: initialize perf. counters. Fixes a segv.
8689
8690 2008-11-25  Martin Baulig  <martin@ximian.com>
8691
8692         * mono-debug-debugger.c
8693         (mono_debugger_runtime_invoke): Return the exception object if an
8694         exception was thrown.  Visual Studio displays the exception object
8695         in the locals window.
8696
8697 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8698
8699         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
8700         ftnptr.
8701
8702 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8703
8704         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
8705         MONO_TYPE_U are sizeof (gpointer), too.
8706
8707 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8708
8709         * marshal.c (mono_type_native_stack_size): Fixed size and
8710         alignment for reference types.
8711
8712 2008-11-23  Mark Probst  <mark.probst@gmail.com>
8713
8714         * class.c (mono_class_generic_sharing_enabled): Disable generic
8715         code sharing for PPC64.
8716
8717 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
8718
8719         * icall.c (mono_method_get_equivalent_method): Make sure
8720         method->klass->methods is inited before looping over it.
8721
8722 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
8723
8724         * object.c: when calling ExecuteAssembly in a newly created domain,
8725         the configuration file and application base are already set up.
8726         Bug #446353 take 2 fixed.
8727
8728 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
8729
8730         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
8731         Fixes #444715. Fix a warning.
8732
8733 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
8734
8735         * appdomain.c: write the full path of the assembly to the .ini file
8736         created when "shadow-copying"
8737         Bug #446353 fixed.
8738
8739 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
8740
8741         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
8742         if signature==FALSE.
8743
8744 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8745
8746         * marshal.h : Fix the cygwin build.
8747            marshal.c:12442: undefined reference to `_IID_IMarshal'
8748           
8749         Code is contributed under MIT/X11 license.
8750
8751 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8752
8753         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
8754           free threaded marshaler when QueryInterface is called on a COM callable
8755           wrapper requesting the IMarshal interface.
8756           
8757         Code is contributed under MIT/X11 license.
8758
8759 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
8760
8761         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
8762
8763         * reflection.c (mono_type_get_object): Special case the very common
8764         void type.
8765
8766         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
8767         hold typeof(void).
8768
8769 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
8770
8771         * process.h : Adding method declaration for
8772           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8773           
8774         * process.c : Adding implementation for
8775           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8776           
8777         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
8778           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8779
8780         Code is contributed under MIT/X11 license.
8781
8782 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
8783
8784         * appdomain.c (unload_thread_main): Clean up threadpool by
8785         calling mono_thread_pool_remove_domain_jobs.
8786
8787         * domain-internals.h (struct _MonoDomain): Add new fields to
8788         help coordinate the cleanup of the threadpool.
8789
8790         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
8791         that cleans up the threadpool of all jobs associated with an appdomain.
8792         It does that by cleaning up the queues and making sure all active
8793         threads are accounted.
8794
8795         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
8796         unloaded or in the process of. Take this is such way that there is
8797         no race condition between another thread starting the unload and the
8798         current thread acknowledging it.
8799
8800         * threadpool.c (async_invoke_thread): Same.
8801
8802         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
8803         firing the new thread.
8804
8805         * threadpool.c (start_tpthread): Same.
8806
8807         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
8808
8809         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
8810
8811 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
8812
8813         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8814         Add support for DuplicateHandle.
8815         
8816         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8817         Add support for DuplicateHandle.
8818         
8819         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8820         Add support for DuplicateHandle.
8821
8822         Code is contributed under MIT/X11 license.
8823
8824 2008-11-06  Mark Probst  <mark.probst@gmail.com>
8825
8826         * class-internals.h: Make min_align into a whole byte.
8827
8828         * class.c: Set min_align for SIMD types to 16.
8829
8830 2008-11-05  Geoff Norton  <gnorton@novell.com>
8831
8832         * attach.c: Default the attacher to enabled for all cases including
8833         embedded.
8834
8835 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
8836
8837         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
8838         change r117650.
8839
8840 2008-11-04  Mark Probst  <mark.probst@gmail.com>
8841
8842         * monitor.c, monitor.h: New function for querying offsets of
8843         members of MonoThreadsSync.
8844
8845 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8846
8847         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
8848         to speed up this function and to avoid the boundless memory growth caused by
8849         the signature_dup () calls.
8850
8851 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
8852
8853         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
8854         wrapper.
8855
8856         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
8857         by 1 bit.
8858
8859         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
8860
8861 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8862
8863         * appdomain.c:
8864         * domain-internals.h: made mono_set_private_bin_path_from_config()
8865         "internal".
8866         * object.c: call the above function after setting the configuration
8867         file path for the root domain.
8868         Fixes bug #314478.
8869
8870 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8871
8872         * assembly.c: when the assembly is loaded from an absolute path, end
8873         basedir with a directory separator.
8874         Bug #440781 fixed.
8875
8876 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8877
8878         * monitor.c (mono_monitor_get_fast_enter_method): If
8879         CompareExchange is not available, don't create the fastpath
8880         instead of asserting.  (The method is missing in the 1.1 profile.)
8881
8882 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8883
8884         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
8885
8886         * monitor.c, monitor.h: Code for generating Monitor.Enter and
8887         Monitor.Exit IL fastpaths.
8888
8889 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8890
8891         * class.c (mono_class_create_from_typedef): Added Vector2ul.
8892
8893 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8894
8895         * class.c (mono_class_create_from_typedef): Added Vector2l.
8896
8897 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
8898
8899         * class.c (mono_class_create_from_typedef): Added Vector2d.
8900
8901 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
8902
8903         * appdomain.c: translate \ into / for cache_path.
8904         * domain-internals.h: new mono_is_shadow_copy_enabled().
8905         * icall.c: (fill_reflection_assembly_name) do the same path
8906         manipulations that get_code_base does.
8907         (get_code_base) use mono_is_shadow_copy_enabled.
8908
8909 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
8910
8911         * appdomain.c: shadow-copied assemblies go to CachePath +
8912         ApplicationName when both are set. DynamicBase has nothing to do with
8913         shadow copies.
8914         Bug #406877 fixed.
8915
8916 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
8917
8918         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
8919         STANDALONESIG table.
8920
8921         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
8922         standalone signatures.
8923
8924         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
8925         comparison code: instead of comparing the signatures using a custom
8926         equals function, transform them to a common signature and compare that. This
8927         works better with AOT.
8928
8929 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
8930
8931         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
8932
8933         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
8934         call for generic instances.
8935         (mono_class_setup_properties): Call setup_properties () before accessing
8936         gklass->properties.
8937
8938         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8939         over the virtual methods of a class using metadata if possible, avoiding the
8940         creation of MonoMethod's for non-virtual methods.
8941         
8942         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8943         get_virtual_methods () to iterate over the virtual methods of classes.
8944
8945 2008-10-25  Martin Baulig  <martin@ximian.com>
8946
8947         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
8948
8949 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8950
8951         * class.c (mono_class_create_from_typedef): Added Vector4i.
8952
8953 2008-10-24  Mark Probst  <mark.probst@gmail.com>
8954
8955         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
8956         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
8957         special-casing applies to eliminate the call completely.
8958
8959 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8960
8961         * class.c (mono_class_create_from_typedef): Added Vector8s.
8962
8963 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
8964
8965         * class.c (mono_class_create_from_typedef): Added Vector16sb.
8966
8967 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8968
8969         * icall.c: get rid of annoying warning.
8970
8971 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8972
8973         * threadpool.c: in 1.x, if you change the background status of the
8974         threadpool thread, it's not reset.
8975         Remove unnecessary calls to SetState.
8976
8977 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8978
8979         * threadpool.c: asynchronously create a set of idle threads upon first
8980         use of the threadpool. SetMinThreads will now start the appropriate
8981         number of idle threads if they are not already running. The default is
8982         1 threadpool thread per CPU. Increased the maximum number of threads
8983         per CPU to 10.
8984
8985 2008-10-22  Martin Baulig  <martin@ximian.com>
8986
8987         Revert r116521 from Zoltan, it breaks the debugger:
8988
8989         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8990         over the virtual methods of a class using metadata if possible, avoiding the
8991         creation of MonoMethod's for non-virtual methods.
8992         
8993         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8994         get_virtual_methods () to iterate over the virtual methods of classes.
8995
8996 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8997
8998         * threads.c: when creating a threadpool thread, set its state to
8999         'background'.
9000         * threadpool.c: reset the background state of a threadpool thread
9001         after finishing each work item
9002         Bug #437888 fixed.
9003
9004 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9005
9006         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
9007         
9008         * class.c (mono_class_setup_vtable_general): Add an optimized version for
9009         generic instances which works by inflating the methods in the container
9010         class's vtable.
9011
9012         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
9013         variant which doesn't make a copy if no inflation was done.
9014         (mono_class_setup_fields): Use it.
9015
9016         * metadata.c (mono_metadata_get_shared_type): New helper function to
9017         return a shared instance of a given MonoType.
9018
9019         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
9020         a copy of most non-generic types.
9021
9022 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
9023
9024         * threadpool.c: remove one more GetSystemInfo () call.
9025
9026 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9027
9028         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
9029         use the code in mono-proclib.h to get processor information.
9030
9031 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9032
9033         * appdomain.c: fixed the logic that determines whether assemblies in a
9034         directory are "shadow-copied" or not. Bug #433483 fixed.
9035
9036 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9037
9038         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
9039         warning.
9040
9041 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9042
9043         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
9044         returning a vtype.
9045
9046         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
9047         reflection.c: Use mono_field_get_name () for accessing a field's name.
9048
9049         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
9050         class.c
9051
9052         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
9053         field.
9054
9055         * loader.c (find_method_in_class): Reenable the metadata optimization by
9056         not using it for generic instances.
9057
9058         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
9059         data/def_type fields from MonoClassField into a separate structure.
9060         (struct MonoClassField): Remove data/def_type fields.
9061         (struct _MonoClass): Add a 'field_def_values' array to store the default
9062         values/RVA for fields.
9063
9064         * class.c reflection.c: Update after the changes.
9065         
9066         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
9067         for accessing field->data.
9068
9069         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
9070
9071         * loader.c (find_method_in_class): Revert the last change for now as
9072         it breaks Mono.C5 unit tests.
9073
9074         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
9075         'field_generic_types' and 'field_objects' which contain the information
9076         previously stored in MonoInflatedField.
9077         (MonoInflatedField): Delete.
9078         (struct _MonoClassField): Delete 'generic_info' field.
9079
9080         * reflection.c: Store the information which was previously in 
9081         field->generic_info in MonoDynamicGenericClass instead.
9082
9083         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
9084         MonoClassField changes.
9085
9086 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
9087
9088         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
9089         store the value inside the data array of the MonoMethodWrapper.
9090         This saves memory, is faster and fixes the lifetime issues (methods
9091         were never removed from the hash previously). May also fix bug#436996.
9092
9093 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9094
9095         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
9096         generic instances, compute the type from the generic definition instead of
9097         looking in field->generic_info.
9098
9099         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
9100         for inflated fields, the only user was get_fieldref_token () which no
9101         longer needs it.
9102
9103         * class.c (mono_class_init): Revert the last change as it seems to cause
9104         crashes.
9105
9106         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
9107         bytes on 64 bit platforms.
9108
9109         * object.c (mono_class_create_runtime_vtable): Fix a warning.
9110         
9111         * object.c (mono_class_create_runtime_vtable): Don't initalize
9112         field->data/field->def_type here, it is done lazily by 
9113         mono_class_get_field_default_value ().
9114
9115         * icall.c (ves_icall_get_enum_info): Call 
9116         mono_class_get_field_default_value () instead of directly accessing
9117         field->data and field->def_type.
9118
9119         * object.c (get_default_field_value): Ditto.
9120
9121         * class.c (mono_field_get_data): Ditto.
9122         
9123         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
9124         call for generic instances.
9125
9126         * loader.c (find_method_in_class): If klass != from_class, then inflate
9127         the method with the context of from_class, since the caller assumes this.
9128
9129 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
9130
9131         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
9132         for accessing method->slot.
9133
9134 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
9135
9136         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
9137
9138 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
9139
9140         * class.c (mono_method_get_vtable_index): Use
9141         mono_method_get_vtable_slot () for accessing method->slot.
9142
9143         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
9144         accessing klass->methods.
9145
9146         * class.c (mono_method_get_vtable_slot): New helper function.
9147         (mono_class_get_vtable_entry): Ditto.
9148         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
9149         accessing method->slot.
9150
9151         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
9152         method to get_inflated_method ().
9153
9154         * class.c (mono_class_get_inflated_method): New helper method to obtain
9155         a method of an inflated class without calling setup_methods ().
9156         (mono_class_get_cctor): Use get_inflated_method.
9157
9158         * generic-sharing.c (mono_class_get_method_generic): Ditto.
9159         
9160         * marshal.c image.c: Lazily create all the marshal caches.
9161
9162         * image.c (mono_image_init): Move initialization of runtime_invoke
9163         caches to marshal.c.
9164
9165         * marshal.c (get_cache): New helper function to lazily initialize a 
9166         wrapper cache.
9167         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
9168
9169         * debug-helpers.c (mono_method_full_name): Include generic arguments.
9170
9171 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
9172
9173         * loader.c: fixed check for interface type.
9174
9175 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
9176
9177         * appdomain.c: check for NULL setup before it's referenced.
9178
9179 p
9180 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
9181
9182         * class.c: remove the unused old vtable setup code.
9183
9184 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
9185
9186         * class.c: don't depend on interface order in
9187         setup_interface_offsets (bug #435777).
9188         * reflection.c: sort the InterfaceImpl table (patch from
9189         Jb Evain  <jbevain@novell.com>).
9190
9191 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
9192
9193         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
9194         the low level assemblies lock.
9195
9196 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
9197
9198         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
9199         object.c, reflection.c, socket-io.c, threads.c: introduced
9200         mono_framework_version () to return the major framewrok version,
9201         changed the code that was using more complex patterns to use it.
9202         Return the correct value for PlatformID for OSX.
9203
9204 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
9205
9206         * icall-def.h, process.h, process.c: added an icall to get info about
9207         processes using mono-proclib.
9208
9209 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
9210
9211         * mono-perfcounters.c: use the mono-proclib functions to
9212         access process information.
9213
9214 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
9215
9216         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
9217         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
9218         reflection.c: remove rawbuffer usage: mmap support is more sanely
9219         provided by utils/mono-mmap.
9220
9221 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
9222
9223         * gc.c: use posix semaphores when possible so that
9224         mono_gc_finalize_notify() is signal safe.
9225
9226 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
9227
9228         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
9229         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
9230         be #ifdef-ed out, the linker will remove the rest.
9231
9232         * marshal.c: Implement DISABLE_COM.
9233
9234         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
9235
9236 2008-10-11  Miguel de Icaza  <miguel@novell.com>
9237
9238         * locales.c (string_invariant_compare_char): Optimization: do not
9239         call g_unichar_type unless we actually need the information.
9240
9241 2008-10-10  Mark Probst  <mark.probst@gmail.com>
9242
9243         * object.c, class-internals.h: Also create remoting trampolines
9244         for generic methods.  Pass the domain to the remoting trampoline
9245         creation function, too.
9246
9247 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
9248
9249         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
9250
9251 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9252
9253         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
9254         Vector4ui.
9255
9256 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
9257
9258         * assembly.c:
9259         * locales.c: remove the use of g_strdown. Fixes bug #322313.
9260
9261 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
9262
9263         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
9264         for the least possible amount of time (extending the fix in r113458).
9265
9266 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9267
9268         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
9269
9270 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
9271
9272         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
9273         as possible simd intrinsic types.
9274         Optimized the test to check for the common prefix first.
9275
9276 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
9277
9278         * class.c: back out part of a broken optimization committed on
9279         May 23th (bug #433908).
9280
9281 2008-10-09  Mark Probst  <mark.probst@gmail.com>
9282
9283         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
9284         Win32.  Should fix #432388 for most cases until we have the new
9285         profiler on Win32.
9286
9287 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
9288
9289         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
9290         instead of using inst->id so the hash is stable for AOT.
9291
9292 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
9293
9294         * appdomain.c:
9295         * icall.c: create a .ini file for shadow-copied assemblies that
9296         contains the location of the original assembly. Use this to return the
9297         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
9298         Also fix the number of '/' for windows when returning the CodeBase.
9299         Fixes bug #430920.
9300
9301 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9302
9303         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
9304
9305         Code is contributed under MIT/X11 license.
9306
9307 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9308
9309         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
9310           if if the class vtable needs initialized.
9311
9312         Code is contributed under MIT/X11 license.
9313
9314 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9315
9316         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
9317           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
9318           STRING->BSTR, and CLASS->INTERFACE.
9319
9320         Code is contributed under MIT/X11 license.
9321
9322 2008-10-07  Marek Habersack  <mhabersack@novell.com>
9323
9324         * sysmath.h: changed the declaration of the
9325         ves_icall_System_Math_Round2 icall by adding an extra
9326         away_from_zero parameter.
9327
9328         * sysmath.c (ves_icall_System_Math_Round2): added support for
9329         away from zero rounding. The icall now takes an extra boolean
9330         parameter to signal that away from zero operation is requested.
9331
9332 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9333
9334         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
9335         the delegate klass so it can work with full-aot.
9336         (mono_marshal_get_delegate_end_invoke): Ditto.
9337         (mono_marshal_get_delegate_invoke): Ditto.
9338
9339 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
9340
9341         * gc.c, attach.h, attach.c: remove a bad pattern:
9342         add_finalizer_callback () is not implemented correctly, it can't
9343         without adding more overhead to the finalizer loop and it's not
9344         even needed, since we know exactly what we need to call, so there is
9345         no need to do so through an expensive function pointer.
9346
9347 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
9348
9349         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
9350         for the no-gc case.
9351         * attach.c (mono_attach_init): Remove the #ifdef.
9352
9353 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
9354
9355         * attach.c (mono_attach_init): Don't use
9356         mono_gc_add_finalizer_thread_callback when compiling without GC.
9357         Fixes #432306.
9358         
9359         Code is contributed under MIT/X11 license.
9360
9361 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
9362
9363         * class.c (mono_class_create_from_typedef): Remove the 
9364         #ifndef DISABLE_SIMD stuff.
9365
9366 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
9367
9368         * class-internals.h (MonoClass): Added simd_type bit field.
9369
9370         * class.c (mono_class_create_from_typedef): Check if type is a simd
9371         intrinsic.
9372
9373 2008-10-03  Mark Probst  <mark.probst@gmail.com>
9374
9375         * object.c (mono_method_add_generic_virtual_invocation): Only add
9376         instantiations to the thunk whose count is at least as large as
9377         the threshold.
9378
9379 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
9380
9381         * icall.c: changed the Type of the exception thrown when trying to
9382         invoke a constructor on an abstract class. Part of the fix for bug
9383         #324185.
9384
9385 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9386
9387         * class.c, class-internals.h (mono_method_get_vtable_index): New
9388         function which returns the index into the vtable and properly
9389         handles inflated virtual generic methods.
9390
9391 2008-10-01  Mark Probst  <mark.probst@gmail.com>
9392
9393         * object.c, domain.c, object-internals.h, domain-internals.h:
9394         Generalize IMT thunk machinery to also handle thunks for virtual
9395         generic method invokes.  When a virtual generic method is invoked
9396         more than a number of times we insert it into the thunk so that it
9397         can be called without lookup in unmanaged code.
9398
9399         * generic-sharing.c, class-internals.h: Fetching a
9400         MonoGenericInst* for a method from an (M)RGCTX.
9401
9402 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
9403
9404         * marshal.c (emit_marshal_string): Applied a variant of a patch by
9405         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
9406         marshalling. Fixes #431304.
9407
9408 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
9409
9410         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9411           handle when ref is specified without In or Out.
9412
9413         Code is contributed under MIT/X11 license.
9414
9415 2008-09-30  Mark Probst  <mark.probst@gmail.com>
9416
9417         * loader.c (mono_get_method_constrained): Don't expand method with
9418         the class's context, because it's already a method of that class.
9419
9420 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
9421
9422         * attach.c : should be correct build fix.
9423
9424 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
9425
9426         * attach.c: Fix the previous change.
9427
9428 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
9429
9430         * attach.c : quick w32 build fix.
9431
9432 2008-09-27  Miguel de Icaza  <miguel@novell.com>
9433
9434         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
9435         crashes MonoDevelop: #430455.
9436
9437 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
9438
9439         * domain-internals.h (struct _MonoDomain): Move most fields used only by
9440         the JIT do MonoJitDomainInfo in ../mini/mini.h.
9441
9442         * domain.c: Remove initialization/cleanup of the removed fields.
9443
9444 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9445
9446         * class.c (mono_class_generic_sharing_enabled): Enable generic
9447         code sharing for PPC.
9448
9449 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
9450
9451         * attach.c : Fixing the Windows builds.
9452
9453         Code is contributed under MIT/X11 license.
9454
9455 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9456
9457         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
9458         the default generic sharing mode to 'all'.
9459
9460 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9461
9462         * generic-sharing.c, class-internals.h: New function for checking
9463         whether a method needs a static RGCTX invoke wrapper.  A few
9464         funtions moved from mini/generic-sharing.c.
9465
9466         * icall.c: New function used.
9467
9468 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9469
9470         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9471         Static RGCTX invoke wrapping applies to value type methods, too.
9472
9473         * class.c (mono_class_setup_vtable_general): In generic-shared
9474         value types, wrap methods with a static RGCTX invoke wrapper.
9475
9476 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9477
9478         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
9479         osx build.
9480
9481 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9482
9483         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
9484         register a callback which is called when the finalizer thread is woken
9485         up.
9486         (finalizer_thread): Call the callback if it exists.
9487
9488         * attach.h attach.c: New files, implementing the attach mechanism.
9489
9490         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
9491         
9492         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
9493         by the previous change.
9494
9495 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
9496
9497         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
9498         loader.c, marshal.c, metadata-internals.h, metadata.c,
9499         method-builder.c, object.c, reflection.c: introduced specific functions
9500         to allocate from the domain and image mempools and cleaned up most of
9501         the code to use them (still missing a few in reflection.c).
9502         Keep the loader bytes counter updated.
9503
9504 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
9505
9506         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
9507         loader-related counters.
9508
9509 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
9510
9511         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
9512         added more MS-compatible counters.
9513
9514 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
9515
9516         * class.c (mono_class_setup_fields): Call setup_fields before accessing
9517         class->blittable. Fixes #428217.
9518
9519 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
9520
9521         * reflection.c (mono_image_get_field_on_inst_token): Call 
9522         field_encode_signature () since that handles custom modifiers too.
9523         Fixes #424663.
9524
9525 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
9526
9527         * reflection.c (add_custom_modifiers): New helper function to merge custom
9528         modifiers stored in objects to a MonoType.
9529         (fieldref_encode_signature): Encode custom modifiers.
9530         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
9531         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
9532
9533 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
9534
9535         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
9536         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
9537         64-bit IL only images because imports are not resolved for IL only images.
9538         Special thanks to Bill Holmes for finding this bug and testing the patch.
9539         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
9540
9541         Contributed under MIT/X11 license.
9542
9543 2008-09-19  Miguel de Icaza  <miguel@novell.com>
9544
9545         * mono-config.c (dllmap_start): Add support for the bits keyword
9546         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
9547
9548 2008-09-19  Mark Probst  <mark.probst@gmail.com>
9549
9550         * reflection.c (inflate_mono_method): When the class the method is
9551         to be inflated for is itself not inflated, just return the method.
9552
9553 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
9554
9555         * mono-perfcounters.c: use more user friendly process instance names.
9556
9557 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
9558
9559         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9560           handle "[in] ref" and "[in][out] ref" cases.
9561
9562         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
9563           to mono_mb_create_method.  This was causing problems calling native to
9564           managed passing Variants by value.
9565
9566         Code is contributed under MIT/X11 license.
9567
9568 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
9569
9570         * class.c (can_access_internals): Call mono_assembly_load_friends ()
9571         before accessing the friend_assembly_names field.
9572
9573         * assembly.c (mono_assembly_load_friends): Make this callable multiple
9574         times.
9575         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
9576         called lazily when it is needed.
9577
9578         * metadata-internals.h (struct _MonoAssembly): Add 
9579         'friend_assembly_names_inited' flag.
9580
9581 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
9582
9583         * mono-perfcounters-def.h: fix the types of a few counters.
9584         * mono-perfcounters.c: implemented the instance names getter
9585         and a few bugfixes.
9586
9587 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
9588
9589         * culture-info-table.h : regenerated.
9590
9591 2008-09-17  Robert Jordan  <robertj@gmx.net>
9592
9593         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
9594         context bound objects. Fixes #415577.
9595
9596         Code is contributed under MIT/X11 license.
9597
9598 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
9599
9600         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
9601         implementation (bug #423582).
9602
9603 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
9604
9605         * object.c (mono_object_get_virtual_method): Handle the case method->slot
9606         is not set. Fixes #426309.
9607
9608 2008-09-16  Jb Evain  <jbevain@novell.com>
9609
9610         * class.c (mono_class_from_name): fix the exported type look up
9611         when the type is defined in a referenced assembly.
9612
9613 2008-09-16  Jb Evain  <jbevain@novell.com>
9614
9615         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
9616         increment the next index counter on each iteration to make that work
9617         for more than one type forwarder. Unmanaged part to fix #422929.
9618
9619 2008-09-15  Mark Probst  <mark.probst@gmail.com>
9620
9621         * object-internals.h: enum ComInterfaceType in
9622         MonoInterfaceTypeAttribute is guint32, not guint16.
9623
9624 2008-09-12  Mark Probst  <mark.probst@gmail.com>
9625
9626         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
9627         writing code.
9628
9629 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9630
9631         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
9632         not gboolean.
9633
9634 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9635
9636         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
9637         Endianness fixes for MonoSymbolFileOffsetTable.
9638
9639 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9640
9641         * process.c (complete_path) : Removing quotes from the 
9642           input path.  The glib file routines do not handle file paths
9643           that have quotes around them.
9644
9645         Code is contributed under MIT/X11 license.
9646
9647 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9648
9649         * socket-io.h : Adding a comment to provide locations where 
9650           changes to MonoSocketAsyncResult need to be synced.
9651
9652         Code is contributed under MIT/X11 license.
9653
9654 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
9655
9656         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
9657         parameters as well. Fixes #425001.
9658
9659 2008-09-08  Miguel de Icaza  <miguel@novell.com>
9660
9661         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
9662         windows build.
9663
9664 2008-09-07  Miguel de Icaza  <miguel@novell.com>
9665
9666         * console-io.c: Add support for tracking the window size if it
9667         changes.
9668
9669         The setup is very simple: the TtySetup function will now return a
9670         pointer to a location in memory that tracks the current console
9671         size.  The managed code checks its current value every time its
9672         queried against the last value set, and updates accordingly.
9673
9674         With this setup we can work with multiple consoles, and we do not
9675         require to poke into managed code from a signal handler.
9676
9677         Additionally, the environment for COLUMNS and LINES is now handled
9678         in unmanaged code.
9679
9680         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
9681
9682 2008-09-07  Mark Probst  <mark.probst@gmail.com>
9683
9684         * marshal.c (mono_type_native_stack_size): Treat
9685         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
9686
9687 2008-09-04  Jb Evain  <jbevain@novell.com>
9688
9689         * class.c (mono_class_is_assignable_from): fix assignability of nullables
9690         to nullables.
9691
9692 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
9693
9694         * verify.c (verify_type_compatibility_full): Revert change
9695         to allow converting a native int to unmanaged pointer be verifiable
9696         under non-strict mode.
9697         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
9698
9699         * verify.c: Added some TODOs.
9700
9701 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
9702
9703         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
9704           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
9705           Changed to use GlobalAlloc for the memory returned on Windows platforms.
9706
9707         Code is contributed under MIT/X11 license.
9708
9709 2008-09-02  Jb Evain  <jbevain@novell.com>
9710
9711         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
9712
9713 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
9714
9715         reflection.c (typebuilder_setup_fields): Handle classes with
9716         explicit size.
9717
9718 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
9719
9720         class.c (mono_class_setup_events): Add memory barrier due to
9721         double checked locking.
9722         
9723         class.c (mono_class_setup_properties): Same.
9724
9725 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
9726
9727         * class.c (mono_class_is_assignable_from): Fix the build.
9728         
9729         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
9730         before accessing klass->interface_bitmap. Fixes #421744.
9731
9732 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
9733
9734         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
9735         the runtime into no-exec mode, useful when running the AOT compiler.
9736
9737         * appdomain.c gc.c object.c: Avoid executing managed code when running
9738         in no-exec mode.
9739         
9740         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
9741
9742         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
9743         special case when the mono_assembly_loaded () returns NULL because the 
9744         search hook is not installed.
9745
9746 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
9747
9748         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
9749         crashes in bstr marshalling on linux.
9750
9751 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9752
9753         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
9754         with more than one parameter.
9755
9756 2008-08-24  Miguel de Icaza  <miguel@novell.com>
9757
9758         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
9759         start/stop flow control as well when turning off ICANON (allows
9760         C-s and C-q to be read by Console.ReadKey).
9761
9762 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9763
9764         * class.c (mono_class_init): Move the initialization of nested classes
9765         into mono_class_get_nested_types (). Fixes #418433.
9766
9767         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
9768         flag.
9769
9770         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
9771         iterating tough the nested classes of a class.
9772
9773 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
9774
9775         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
9776         on arm.
9777
9778 2008-08-22  Miguel de Icaza  <miguel@novell.com>
9779
9780         * console-io.c (sigcont_handler): Support signal chaining for
9781         SIGCONT.
9782
9783         (console_set_signal_handlers): Use best practices with sigaction,
9784         clear the structure before using it. 
9785
9786 2008-08-22  Robert Jordan  <robertj@gmx.net>
9787
9788         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
9789         Fix the Windows build.
9790
9791 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
9792
9793         * class.c (mono_class_generic_sharing_enabled): Make the default
9794         sharing mode 'corlib'.
9795
9796 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
9797
9798         * console-io.c (console_set_signal_handlers): Fix a warning.
9799
9800         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
9801         method normally, the JIT will take care of avoiding recursion.
9802
9803 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
9804
9805         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
9806
9807         Code is contributed under MIT/X11 license.
9808
9809 2008-08-20  Miguel de Icaza  <miguel@novell.com>
9810
9811         * console-io.c (sigcont_handler): We need to restore the entire
9812         termios state, not only the original settings, as things like echo
9813         can be controlled after this (Booish exposes this issue with its
9814         own ReadLine implementation).
9815
9816         Additionally, we need to set the terminal back into keypad_xmit
9817         mode.
9818         
9819         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
9820         string as a paramter as well.   Otherwise we get different
9821         keyboard sequences.
9822
9823 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
9824
9825         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
9826         delegates with byref out parameter passing. Fixes #351520.
9827
9828         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
9829         a generic context.
9830         (mono_type_get_desc): Add the type arguments for GENERICINST.
9831         (mono_method_full_name): Stringify the class name using mono_type_full_name
9832         so it picks up generic arguments.
9833
9834 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
9835
9836         * console-io.c: Removed debug output.
9837
9838 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
9839
9840         reflection.c (mono_reflection_create_runtime_class): Alloc
9841         the nested classes linked list using the dynamic image mempool.
9842         Fixes leak in corlib compilation.
9843
9844 2008-08-19  Miguel de Icaza  <miguel@novell.com>
9845
9846         * console-io.c: Fix incredibly annoying behavior on the console
9847         after resuming execution after control-z.   This affected every
9848         console application.
9849
9850 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
9851
9852         * mempool-internals.h: Header for mono private mempool functions. The first
9853         two function are for allocating glib linked lists using pools.
9854
9855         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
9856
9857         * Makefile.am: Added mempool-internals.h.
9858
9859 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
9860
9861         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
9862         (mono_domain_free): Ditto.
9863
9864         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
9865         be used by the JIT to store its domain-specific information, instead of putting
9866         it directly into MonoDomain.
9867
9868         * domain.c (mono_install_create_domain_hook): New helper function to install
9869         a hook which initializes domain->runtime_info.
9870
9871         * domain.c (mono_install_free_domain_hook): Ditto.
9872         
9873 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
9874
9875         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
9876         asserting if the ares parameter is null.
9877
9878         * mono-perfcounters.c: Fix warnings.
9879
9880         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
9881         is not needed, don't check for interruptions either.
9882         (mono_marshal_get_delegate_end_invoke): Ditto.
9883
9884 2008-08-15  Marek Habersack  <mhabersack@novell.com>
9885
9886         * mono-perfcounters.c (predef_readonly_counter): added support for
9887         reading the ASP.NET Requests Queued counter from another process.
9888
9889 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
9890
9891         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
9892         MonoImage to simplify the AOT code.
9893
9894 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
9895
9896         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
9897         marshalling. Fixes #416078.
9898
9899 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9900         
9901         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
9902         it is set, looking up the icall address is deferred to the JIT, since 
9903         in embedded scenarios, the icall might not be registered in the runtime
9904         doing the AOT compilation. Backported from the 2.0 branch.
9905
9906 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9907
9908         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
9909         Fixes #415621.
9910
9911 2008-08-05  Marek Habersack  <mhabersack@novell.com>
9912
9913         * Makefile.am: added support for cross-compilation.
9914
9915 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
9916
9917         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
9918
9919 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9920
9921         * mono-perfcounters.c: jitted methods and jitted bytes counters.
9922
9923 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
9924
9925         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
9926         mono-perfcounters.c: performance counters implementation.
9927
9928 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
9929
9930         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
9931         to gpointer, letting the AOT code decide what to store in it.
9932
9933 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
9934
9935         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
9936           mono_class_setup_methods if the methods are not initialized.
9937
9938         Code is contributed under MIT/X11 license.
9939
9940 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9941
9942         * verify.c: Remove some debug code I commited by accident.
9943
9944         * verify.c (mono_method_is_valid_in_context): Change the return value
9945         to make possible to distinguish between invalid and unverifiable.
9946
9947         * verify.c (verifier_load_method): Don't return NULL for unverifiable
9948         methods.
9949
9950 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9951
9952         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
9953         constraints. Fixes regression in gtest-253.
9954
9955 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9956
9957         * verify.c (mono_verifier_verify_class): Don't allow generic types
9958         with explicit layout.
9959
9960         * verify.c (mono_method_verify): Check locals and argument types.
9961
9962 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
9963
9964         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
9965         wait if the thread is in StopRequested state.
9966
9967         * class.c (mono_class_from_name): Refactor the module searching code into
9968         a separate function so it can be reused in the AOT case too.
9969
9970 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
9971
9972         * verify.c (mono_type_is_valid_in_context): Improve the error message.
9973         Check both the type and it's generic type definition for loader errors.
9974         
9975         * verify.c (mono_method_is_valid_in_context): Don't generate another
9976         error when a type errors occur, this leads to the wrong exception been
9977         thrown.
9978
9979 2008-07-28  Dick Porter  <dick@ximian.com>
9980
9981         * icall-def.h
9982         * process.c
9983         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
9984         New internal calls to duplicate and close a process handle.
9985
9986 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
9987
9988         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
9989
9990 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
9991
9992         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
9993
9994 2008-07-27  Robert Jordan  <robertj@gmx.net>
9995
9996         * class.c (mono_class_init): Don't compute class.has_finalize for
9997         valuetypes. Fixes #412477.
9998
9999 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
10000
10001         * verify.c: Implement constraint equivalence checking.
10002         This is required when a generic parameter is used as
10003         argument to a constrained one.
10004
10005         Fixes #410637.
10006
10007 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
10008
10009         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10010
10011         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
10012
10013         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
10014         synch with managed object layout.
10015
10016 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10017
10018         * verify.c (do_branch_op): Handle valuetypes and generic
10019         arguments properly.
10020
10021         * verify.c (do_cmp_op): Same.
10022
10023         Fixes #410383.
10024
10025 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10026
10027         * generic-sharing.c: Fix memory leaks.
10028
10029         * class.c, class-internals.h: Make
10030         mono_class_inflate_generic_type_with_mempool() non-static.
10031
10032 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10033
10034         * pedump.c (dump_verify_info): Dump full class name.
10035
10036 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10037
10038         * generic-sharing.c: Removed some old code that didn't do anything.
10039
10040 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
10041         * profiler.c: Added runtime_initialized_event,
10042         mono_profiler_install_runtime_initialized and
10043         mono_profiler_runtime_initialized. This new hook tells the profiler
10044         when the runtime is sufficiently initialized to be able to call
10045         mono_thread_attach on the root appdomain.
10046         * profiler.h, profiler-private.h: Likewise.
10047
10048 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10049
10050         * verify.c (do_cast): Do boxing for generic arguments as well.
10051
10052         * class.c (is_nesting_type): Drop generic instantiations before
10053         checking for nesting.
10054
10055         * class.c (can_access_instantiation): Allow access to generic
10056         arguments.
10057
10058 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10059
10060         * verify.c (verify_class_for_overlapping_reference_fields):
10061         On some cases, the field size might be zero, guard against that.
10062         Fix the explicit layout check to work as expected.
10063
10064 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
10065
10066         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
10067         mono_thread_resume () during shutdown, since the thread we want to abort
10068         might be suspended.
10069
10070 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
10071
10072         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
10073         warning.
10074
10075         * debug-mono-symfile.c: Fix a warning.
10076
10077         * mono-perfcounters.c (get_cpu_times): Fix a warning.
10078
10079         * object.c (mono_class_vtable): Check if exception_type is set, and return
10080         NULL as defined by the function comments.
10081
10082 2008-07-22  Mark Probst  <mark.probst@gmail.com>
10083
10084         * mempool.c: Use malloc for every single mempool allocation if the
10085         configure option is set.  This makes it easier to track mempool
10086         allocations with tools like Valgrind.
10087
10088 2008-07-22  Jb Evain  <jbevain@novell.com>
10089
10090         * reflection.c (create_dynamic_mono_image): emit the same
10091         metadata version that SL2 does when creating a SL2 image.
10092
10093 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
10094
10095         * icall-def.h:
10096         * icall.c: New icall System.Enum:get_hashcode. This function
10097         avoids the overhead of boxing the enum to the underlying type.
10098
10099 2008-07-21  Mark Probst  <mark.probst@gmail.com>
10100
10101         * reflection.c (mono_method_get_object): Don't let static RGCTX
10102         invoke wrappers get into MonoReflectionMethods.
10103
10104 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
10105
10106         * object-internals.h:
10107         * object.c: New mono_runtime_class_init_full function
10108         that makes throwing the exception optinal.
10109
10110         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
10111         for the case where the exception object is supplied.
10112
10113 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
10114
10115         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
10116         old ld versions.
10117
10118         Contributed under MIT/X11 license.
10119
10120 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10121
10122         * string-icalls.c (ves_icall_System_String_InternalSplit):
10123         Optimize array allocation by caching the MonoClass of the
10124         array type.
10125
10126         * icall.c (ves_icall_Type_GetMethodsByName): Same.
10127
10128         * reflection.c (mono_param_get_objects): Same.
10129
10130 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10131
10132         * icall-def.h:
10133         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
10134         It inflates the given type using the class context.
10135
10136 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
10137
10138         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
10139         the vtable if it already exists.
10140
10141         * object-internals.h: Add mono_class_try_get_vtable as part of the
10142         internal API.
10143
10144         * reflection.c (mono_type_get_object): Use the MonoObject from the
10145         vtable when possible. Reduces locking contention on reflection heavy
10146         code.
10147
10148 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
10149
10150         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
10151         g_bit_nth_msf () since that macro is not implemented in eglib.
10152
10153 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
10154
10155         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
10156         on platforms which do not support it.
10157
10158 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
10159
10160         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
10161
10162 2008-07-11  Martin Baulig  <martin@ximian.com>
10163
10164         * mono-debug-debugger.h
10165         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
10166
10167         * mono-debug-debugger.c
10168         (_mono_debugger_interruption_request): New global volatile variable.
10169         (mono_debugger_check_interruption): New public function.
10170
10171         * threads.c
10172         (mono_thread_current_check_pending_interrupt): Call
10173         mono_debugger_check_interruption().
10174         (mono_thread_interruption_checkpoint_request): Likewise.
10175
10176 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10177
10178         * verify.c: Add more type checks for loaded types. Verify the result
10179         handle from ldtoken.
10180
10181 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10182
10183         * loader.c (field_from_memberref): Don't crash if the field
10184         wasn't found.
10185
10186 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10187
10188         * verify.c: Verify if type and method instantiations
10189         don't have invalid VAR or MVAR arguments.
10190
10191 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10192
10193         * verify.c: Fix double free of function pointer list.
10194
10195 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10196
10197         * object.c (mono_string_to_utf8): Comment the new code as it
10198         breaks under eglib.
10199
10200 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
10201
10202         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
10203
10204 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
10205
10206         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
10207           is not throw too many times.
10208
10209         Code is contributed under MIT/X11 license.
10210
10211 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
10212
10213         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
10214         debugging is turned off.
10215
10216 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
10217
10218         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
10219
10220 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10221
10222         * class-internals.h, class.c: Added new generic sharing option:
10223         Share only stuff in System.Collections.Generic, which is now the
10224         default.
10225
10226 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10227
10228         * generic-sharing.c, class-internals.h: New function for getting a
10229         generic method in a generic class given the corresponding method
10230         for a different instantiation of the class.  Partly refactored
10231         from mini-trampolines.c.
10232
10233         * class.c: Make sure generic methods have a class_inst if they are
10234         part of a generic class.
10235
10236         * metadata.c (mono_type_stack_size_internal): Handle type
10237         variables.
10238
10239 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10240
10241         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
10242         Signifies whether information on the this/vtable/mrgctx variable
10243         is available.
10244
10245 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10246
10247         * object.c, object-internals.h, icall.c: New function
10248         mono_delegate_ctor_with_method(), which does the same as
10249         mono_delegate_ctor(), but takes an explicit method argument
10250         instead of taking the method from the jit info.
10251
10252         * marshal.c: When creating a delegate with an inflated method take
10253         the "this" argument as the target class for the castclass.
10254
10255 2008-07-03  Mark Probst  <mark.probst@gmail.com>
10256
10257         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
10258         mono_jit_info_table_find() to perform very badly in some cases.
10259
10260 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
10261
10262         * icall.c (type_from_typename): Handle 'string'.
10263
10264         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
10265         wrappers into the wrapper_hash, since the key is not a MonoMethod.
10266
10267 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
10268
10269         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
10270
10271         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
10272         number of available managed allocator types.
10273
10274         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
10275         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
10276
10277 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
10278
10279         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
10280         which is a low level lock protecting just the 'jit_code_hash' hash table.
10281
10282         * domain.c: Initialize+cleanup jit_code_hash_lock.
10283         
10284 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10285
10286         * coree.c (mono_load_coree): Set coree_module_handle global variable only
10287         after initialization.
10288
10289         * coree.h: Make MonoFixupExe internal.
10290
10291         Contributed under MIT/X11 license.
10292
10293 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10294
10295         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
10296         because that is platform independent. Check NumberOfRvaAndSizes in PE32
10297         as well.
10298         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
10299         image being loaded is a CLI image and _CorValidateImage gets called.
10300
10301         * coree.h: Add MonoLoadImage.
10302
10303         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
10304         instead of LoadLibrary.
10305
10306         Contributed under MIT/X11 license.
10307
10308 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
10309
10310         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
10311         for any primitive type.
10312
10313 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
10314
10315         * object.c (mono_array_new_specific): Optimize this and the other allocation
10316         functions a bit.
10317         
10318         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
10319         domains too if mono_dont_free_domains is set.
10320
10321         * domain-internals.h (mono_dont_free_domains): New internal option controlling
10322         whenever to free appdomain data after it has been unloaded.
10323
10324         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
10325         
10326 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
10327
10328         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
10329         (mono_method_get_equivalent_method): Fix a warning.
10330
10331         * object.c (mono_message_init): Avoid looking up array types for each call.
10332
10333 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
10334
10335         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
10336         call.
10337
10338         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
10339         even more.
10340
10341         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
10342         each iteration.
10343
10344         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
10345         fields of an enum.
10346
10347 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
10348
10349         * object.c (mono_value_box): Fix boxing of nullables.
10350
10351 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
10352
10353         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
10354         mono_module_handle that is defined by the linker; no initialization required.
10355         * coree.h: Remove mono_module_handle, add __ImageBase, update
10356         mono_image_open_from_module_handle.
10357         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
10358         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
10359         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
10360         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
10361         to 4 GB away from image base address. IA64 version is not tested but was very
10362         easy to implement and should work if we ever need it.
10363         * domain.c (mono_init_internal): Avoid system error message boxes.
10364         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
10365         with has_entry_point. Handle do_mono_image_load fauilre correctly.
10366         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
10367         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
10368         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
10369
10370         Contributed under MIT/X11 license.
10371
10372 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10373
10374         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
10375         as part of the private mono API.
10376         
10377         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
10378         Do proper argument checking for methods that belong to generic classes.
10379         Do proper type resolution for GMFH/2.
10380         Fixes #377324.
10381         
10382 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10383
10384         * verify.c (do_switch): Fix a memory corruption bug with
10385         the jump index is out of bound.
10386
10387 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10388
10389         * verify.c: Disable debug code.
10390
10391 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10392
10393         * reflection.c (mono_image_get_methodbuilder_token): Use
10394         mono_image_get_methodspec_token_for_generic_method_definition
10395         instead of mono_image_get_memberref_token. We cache more memberef
10396         entries now.
10397
10398 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10399
10400         * verify.c: Inflate exception clause types.
10401         Fixes #402606.
10402         
10403 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10404
10405         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
10406         name.
10407
10408         * reflection.c (mono_image_get_ctorbuilder_token): Same.
10409
10410         * reflection.c (mono_image_create_method_token): Same.
10411
10412 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10413
10414         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
10415         It does the same as mono_image_get_methodref_token but works on
10416         MethodBuilder.
10417
10418         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
10419         and always generate a methodspec. This follows the old behavior and fixes
10420         the regressions in System.Core. 
10421
10422 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
10423
10424         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
10425         don't event mono_class_get () succeeds. Fixes #402182.
10426
10427 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10428
10429         * metadata-internals.h: Added MonoDynamicImage::methodspec
10430         hashtable to store methodspec tokens created for MethodBuilders.
10431
10432         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
10433         MethodBuilders as open instantiations if a methodspec was requested.
10434
10435         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
10436
10437         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
10438
10439         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
10440
10441         Fixes bug #349190.
10442
10443 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10444
10445         * loader.c (method_from_methodspec): Avoid crashing if the
10446         method lookup fails.
10447
10448 2008-06-20  Dick Porter  <dick@ximian.com>
10449
10450         * socket-io.c (get_socket_assembly): Cope with Moonlight network
10451         classes being in a different assembly.  Fixes bug 399184.
10452
10453 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
10454
10455         * loader.c (mono_loader_init): Make this callable multiple times.
10456         (mono_dllmap_insert): Call mono_loader_init () so this works even before
10457         the runtime is initialized. Fixes #401755.
10458
10459 2008-06-19  Dick Porter  <dick@ximian.com>
10460
10461         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
10462         Fixes bug 349688.
10463
10464 2008-06-19  Dick Porter  <dick@ximian.com>
10465
10466         * socket-io.c:
10467         * icall-def.h: Implement Socket generic Send() and Receive()
10468         methods.  Fixes bug 395168.
10469
10470 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
10471
10472         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
10473
10474         Contributed under MIT/X11 license.
10475
10476 2008-06-18  Martin Baulig  <martin@ximian.com>
10477
10478         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
10479         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
10480         set to 80.0.  The debugger <-> runtime interface is now frozen as
10481         well.   
10482
10483         * mono-debug.c
10484         (mono_debug_debugger_version): Bump to 4.
10485
10486 2008-06-18  Martin Baulig  <martin@ximian.com>
10487
10488         * debug-mono-symfile.c
10489         (load_symfile): Don't check the minor version.
10490
10491         * debug-mono-symfile.h: Bump the version number to 50.0.
10492
10493 2008-06-18  Martin Baulig  <martin@ximian.com>
10494
10495         * debug-mono-symfile.c
10496         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
10497         minimum required version.
10498
10499 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10500
10501         * reflection.c (mono_custom_attrs_from_property): Fix support for
10502         retriveving cattrs of dynamic inflated generic types.
10503
10504         * reflection.c (mono_custom_attrs_from_event): Same.
10505
10506         * reflection.c (mono_custom_attrs_from_field): Same;
10507
10508         * reflection.c (typebuilder_setup_events): Same cattrs of events.
10509
10510         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
10511         Moved to metadata.c.
10512
10513         * metadata.c: New functions to retrive the equivalent field, event
10514         of property from the generic type definition.
10515
10516         * metadata-internals.h: Added new functions from metadata.c.
10517
10518 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10519
10520         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
10521         to cached in a mempool is used.
10522
10523         * metadata.c (free_generic_class): In some situations field generic_info type
10524         is not properly dup'ed and leads to double free'ing.
10525
10526         Fixes #400643.
10527
10528 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10529
10530         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
10531         this arguments (will be needed later for generic methods).
10532         Collect stats.
10533
10534 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10535
10536         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10537         Create a static RGCTX invoke wrapper for methods which require it.
10538
10539 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10540
10541         * object.c, class-internals.h: New function for checking whether
10542         an individual field is special static.
10543
10544 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
10545
10546         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
10547         linear search since the table is sorted.
10548
10549         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
10550         Fixes #324180.
10551
10552 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
10553
10554         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
10555         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
10556
10557         * gc.c (mono_domain_finalize): Allow an infinite timeout.
10558
10559         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
10560         
10561         * threads.c (mono_thread_request_interruption): Get rid of locking, use
10562         InterlockedCompareExchange to query and modify 
10563         thread->interruption_requested.
10564
10565         * object-internals.h (struct _MonoThread): Change interruption_requested
10566         to a gint32 so it can be modified by atomic operations. Add 
10567         'critical_region_level' from the managed side, change small_id to a guint32,
10568         add new set of 'unused' fields.
10569
10570         * appdomain.c: Bump corlib version.
10571
10572 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
10573
10574         * class.c (mono_class_from_name): Search modules as well. Fixes
10575         #322332.
10576
10577 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10578
10579         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
10580         templates.  Templates are generalized with an additional type_argc
10581         argument.  RGCTX templates have type_argc==0, MRGCTX templates
10582         have type_argc>0.
10583
10584         * domain-internals.h, domain.c: New hash table for looking up
10585         MRGCTXs.
10586
10587         * metadata.c, metadata-internals.h: Rename hash and equal
10588         functions for MonoGenericInst's and make them public.
10589
10590         * class-internals.h: New data structures for the MRGCTX.  Macros
10591         for distinguishing slots in the RGCTX and the MRGCTX.
10592
10593 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10594
10595         * object.c (mono_method_get_imt_slot): Put the same methods of
10596         different instantiations of the same generic interface in the same
10597         IMT slots, to make generic sharing simpler.
10598
10599 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10600
10601         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
10602
10603         * metadata.c (mono_metadata_field_info_with_mempool): Added.
10604         This function works just like mono_metadata_field_info, but
10605         accept a mempool as argument to be used allocating memory.
10606
10607         * marshal.c (mono_marshal_load_type_info): Use new function
10608         to load marshal data into image mempool.
10609
10610 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10611
10612         * class.c (mono_class_inflate_generic_type_with_mempool):
10613         This function allows to inflate a generic type using
10614         a mempool.
10615
10616         * class.c (inflate_generic_type): Take a mempool as argument
10617         and use it to do type dup'ing.
10618
10619         * class.c (mono_class_setup_fields): Field type for generic
10620         generic classes are allocated from the image mempool.
10621
10622         * metadata.c (free_generic_class): Inflated field type is
10623         now allocated in the image mempool.
10624
10625 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10626
10627         * threads.c (thread_cleanup): Free MonoThread::name.
10628
10629 2008-06-12  Marek Habersack  <mhabersack@novell.com>
10630
10631         * appdomain.c (ensure_directory_exists): avoid unnecessary
10632         mkdir(2) calls when the shadow directory already exists.
10633         (mono_make_shadow_copy): copy also satellite assemblies from the
10634         private bin directories.
10635
10636 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10637
10638         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
10639         
10640         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
10641         a page boundary. Fixes #396219.
10642
10643 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10644
10645         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
10646         due to double-checked locking.
10647
10648 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10649
10650         * assembly.c (build_assembly_name): Release memory on failure.
10651
10652         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
10653
10654 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10655
10656         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
10657         memory on failure.
10658
10659 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10660
10661         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
10662         memory on failure.
10663
10664 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10665
10666         * loader.c (field_from_memberref): Check if field signature type is equal
10667         to the non-inflated type of the field. Fixes #398980.
10668
10669 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10670
10671         * assembly.c (mono_assembly_load_from_full): Call 
10672         mono_assembly_load_friends () outside the assemblies lock, since it can
10673         acquire the loader lock. Fixes #323696.
10674
10675         * reflection.c (resolve_object): Inflate the inst with the context for
10676         FieldOnTypeBuilderInst. Fixes #399010.
10677
10678 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10679
10680         * reflection.c (mono_image_get_field_on_inst_token): Don't
10681         inflate the field to encode it's signature. If it's a
10682         VAR or MVAR it should stay that way in the signature.
10683         Fixes #399047.
10684
10685 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10686
10687         * reflection.c (resolve_object): Release memory of inflated types.
10688
10689 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10690
10691         * loader.c (mono_method_get_signature_full): Remove assert about
10692         loading a methodspec to a generic method. We have such methods, such as
10693         System.Threading.Interlocked::CompareExchange<T>.
10694         This assert was removed since it crashes the verifier when it checks
10695         methods calling CompareExchange<T>.
10696
10697 2008-06-10  Marek Safar  <marek.safar@gmail.com>
10698
10699         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
10700         of Type array and not MonoType.
10701
10702 2008-06-10  Marek Habersack  <mhabersack@novell.com>
10703
10704         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
10705         <lupus@ximian.com>
10706
10707 2008-06-10  Martin Baulig  <martin@ximian.com>
10708
10709         * debug-mono-symfile.h
10710         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
10711         changes to the file format, but we were generating incorrect
10712         source file indices in the line number table due to a bug, which
10713         made backtraces report an incorrect source file.
10714
10715 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10716
10717         * mono-debug.c: Moved mono_debug_free_method_jit_info from
10718         mini/debug-mini.c to here.
10719
10720         * mono-debug.c (il_offset_from_address): Free memory from find_method.
10721
10722         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
10723         use it to release structs returned by mono_debug_find_method.
10724
10725 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
10726
10727         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
10728         since it needs to set method->slot for all interface methods.
10729
10730 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10731
10732         * class-internals.h: Forgot to add.
10733
10734 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10735
10736         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
10737
10738         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
10739         Lookup the custom attributes from property_hash.
10740
10741         * reflection.c (mono_save_custom_attrs): Save the custom attributes
10742         in property_hash. Allocate all data using the image mempool.
10743
10744         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
10745         for dynamic_custom_attrs to checks if the image is dynamic.
10746
10747 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10748
10749         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
10750         assemblies array.
10751         
10752         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
10753         runtime functions while holding the domain assemblies lock.
10754
10755 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10756
10757         * verify.c: Reapplied the last bit of the reverted changes.
10758
10759 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10760
10761         * verify.c: Reapplied more of the reverted changes.
10762
10763 2008-06-09  Martin Baulig  <martin@ximian.com>
10764
10765         * debug-mono-symfile.c (load_symfile): Check the major version
10766         first; if it's wrong, don't print the minor version in the error message.
10767
10768 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10769
10770         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
10771         lock instead of the domain lock to avoid deadlocks, since the thread might
10772         already hold the loader lock.
10773
10774         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
10775         (mono_thread_attach): Ditto.
10776
10777         * monitor.c: Use a TLS variable for holding the current thread id instead
10778         of calling pthread_self ().
10779         (mono_monitor_init_tls): New internal function to initialize the TLS
10780         variable.
10781         (mono_monitor_try_enter_internal): Put the owner == id check after the
10782         owner == 0 check.
10783
10784         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
10785         missed optimizations when using gcc-4.3.
10786
10787 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
10788
10789         * reflection.c (mono_dynamic_image_free): Free the memory
10790         used by MonoGenericParam in MonoDynamicImage::gen_param.
10791
10792         * reflection.c (mono_reflection_setup_generic_class): Allocate
10793         container from mempool.
10794
10795         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
10796         container from mempool.
10797
10798 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10799
10800         * threads.c (mono_set_pending_exception): New internal function to set the
10801         pending exception of the current thread.
10802         (mono_thread_get_and_clear_pending_exception): Check for 
10803         thread->pending_exception as well.
10804
10805         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
10806
10807         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
10808         it can trigger a collection.
10809
10810 2008-06-06  Martin Baulig  <martin@ximian.com>
10811
10812         Merged the `debugger-kahalo' branch.
10813
10814         * mono-debug.h
10815         (MONO_DEBUGGER_VERSION): Bumped to 72.
10816
10817         * debug-mono-symfile.h
10818         (MonoSymbolFileMethodIndexEntry): Removed.
10819         (MonoSymbolFileMethodEntry): New public typedef.
10820         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
10821         (MonoSymbolFileSourceEntry): Remove everything except `index' and
10822         `data_offset'.
10823         (MonoSymbolFileMethodEntry): Removed.
10824         (MonoSymbolFileLexicalBlockEntry): Removed.
10825         (MonoSymbolFileLineNumberEntry): Removed.
10826         (MonoDebugLexicalBlockEntry): Removed.
10827         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
10828         removed `num_il_offsets' and `il_offsets'.
10829         (MonoSymbolFile): Replace `version' with `major_version' and
10830         `minor_version'.
10831         (MONO_SYMBOL_FILE_VERSION): Replace with
10832         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
10833         `MONO_SYMBOL_FILE_MINOR_VERSION'.
10834
10835         * debug-mono-symfile.c
10836         (mono_debug_symfile_lookup_location): Add support for the new line
10837         number table format.
10838
10839 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10840
10841         * metadata.c (free_generic_class): Release the inflated
10842         MonoClass of dynamic generic classes if it's not a generic
10843         type definition.
10844
10845 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10846
10847         * verify.c: Reapplied more of the reverted changes.
10848
10849 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10850
10851         * reflection.c (lookup_custom_attr): Clean the cached flag or
10852         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
10853         for SRE types.
10854
10855 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10856
10857         * verify.c: Reapplied a small part of the reverted changes.
10858
10859 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10860
10861         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10862
10863         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
10864         previously in managed code.
10865         (mono_monitor_exit): Ditto.
10866         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
10867
10868         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
10869         the managed definition.
10870
10871 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10872
10873         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
10874
10875 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10876
10877         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
10878         
10879         * monitor.c: Add some micro optimizations.
10880
10881         * icall.c (type_from_typename): Handle 'bool'.
10882
10883 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10884
10885         * verify.c: Implement constructor verification per P III 1.8.1.4.
10886         Fixes #396716.
10887
10888 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10889
10890         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
10891         holding the assemblies lock here too.
10892
10893 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10894
10895         * verify.c: Kill stack_top function.
10896
10897 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10898
10899         * verify.c: Kill stack_get function.
10900
10901 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10902
10903         * verify.c (mono_method_verify): Last change broke the build. Fixed.
10904
10905 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10906
10907         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
10908         more reliable.
10909
10910         * verify.c (mono_method_verify): Inflate params and locals to avoid
10911         mismatch when checking for compatibility.
10912
10913 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
10914
10915         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
10916         Length prefix should be size in bytes. Fix bug #339530.
10917         
10918         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
10919         Length prefix should be size in bytes. Fix bug #339530.
10920
10921         Code is contributed under MIT/X11 license.
10922
10923 2008-06-05  Bill Holmes <billholmes54@gmail.com>
10924
10925         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
10926
10927         Contributed under MIT/X11 license.
10928
10929 2008-06-05  Martin Baulig  <martin@ximian.com>
10930
10931         * mono-debug-debugger.c
10932         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
10933
10934 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
10935
10936         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
10937         while holding the assemblies lock to prevent deadlocks. Handle the case
10938         where the search hook returns NULL but the assembly was still loaded.
10939         Fixes #323696.
10940
10941         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
10942         modify domain state.
10943
10944 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
10945
10946         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
10947         * Makefile.am (pedump_LDADD): Post-process object files and
10948         add dtrace-generated object file, if necessary.
10949
10950         Code is contributed under MIT/X11 license.
10951
10952 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10953
10954         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
10955
10956 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10957
10958         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
10959
10960 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10961
10962         * threads.c: Try to free everything from the delayed free table
10963         when shutting down threads, and set the variable to NULL after the
10964         table is freed so that calling
10965         mono_thread_hazardous_try_free_all() when shutting down the root
10966         domain doesn't crash.
10967
10968 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10969
10970         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
10971         the caller if resulting type was inflated.
10972
10973         * class.c (mono_class_create_from_typespec): Free the MonoType if it
10974         was inflated.
10975
10976         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
10977
10978
10979 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
10980
10981         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
10982         class library tests.
10983
10984         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
10985         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
10986         #396989.
10987
10988 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10989
10990         * domain.c, domain-internals.h: The JIT infos are now freed by the
10991         JIT info table code.  They are freed immediately if there only a
10992         single JIT info table in circulation.  If there is more, the free
10993         is delayed via a queue.
10994
10995         * threads.c, threads-types.h: New hazard pointer function for
10996         freeing all freeable delayed items in one sitting.
10997
10998 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10999
11000         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
11001
11002         * reflection.c (typebuilder_setup_properties): Same.
11003
11004         * reflection.c (typebuilder_setup_events): Same.
11005
11006 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11007
11008         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
11009         and use it for allocating memory.
11010
11011         * reflection.c (mono_marshal_spec_from_builder): Same.
11012
11013         * reflection.c: Change code to use new signatures.
11014
11015         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
11016
11017 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11018
11019         * decimal.c (rescale128): Put back one line which was accidently commented
11020         out.
11021         
11022         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
11023         to cause crashes.
11024
11025 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11026
11027         * reflection.c (mono_reflection_generic_class_initialize): Name must
11028         be always malloc'ed so we can free it later on. Do this for field, property
11029         and event.
11030
11031         * metadata.c (free_generic_class): Free field, property and event names.
11032
11033 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11034
11035         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
11036         instead of g_memdup.
11037
11038         * reflection.c (typebuilder_setup_fields): Same.
11039
11040 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11041
11042         * decimal.c (rescale128): Optimize this function a bit more.
11043
11044 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11045
11046         * metadata.c (free_generic_class): Release some memory from
11047         SRE generic classes.
11048
11049 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11050
11051         * reflection.c (mono_image_get_generic_field_token): No reference
11052         to name is kept, free it.
11053
11054         * reflection.c (mono_reflection_generic_class_initialize): Free
11055         more memory of the inflated field.
11056
11057 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11058
11059         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
11060         code.
11061
11062 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11063
11064         * reflection.c (mono_dynamic_image_free): Release memory used by
11065         MonoDynamicImage::array_methods elements.
11066
11067         * reflection.c (assembly_add_win32_resources): Release memory after
11068         encoding.
11069
11070 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11071
11072         * decimal.c (log2_32): Use an optimized version for this function too.
11073         
11074         * decimal.c (log2_64): Fix this on 32 bit machines.
11075
11076 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11077
11078         * class.c (mono_dup_array_type): Implement allocation using a mempool.
11079
11080         * class.c (mono_metadata_signature_deep_dup): Same.
11081
11082         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
11083         a mempool.
11084
11085         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
11086
11087         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
11088
11089         * metadata-internals.h: Added mono_metadata_signature_dup_full.
11090
11091         * class-internals.h: Update signatures to take a MonoMemPool.
11092
11093 2008-06-02  Dick Porter  <dick@ximian.com>
11094
11095         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
11096         * icall-def.h: Add
11097         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
11098         FormatMessage API to get the error text.  Fixes bug 321827.
11099
11100 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11101
11102         * decimal.c: Add some micro optimizations to make decimal operations faster.
11103
11104 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
11105
11106         * reflection.c (method_encode_clauses): Take a mempool
11107         as parameter and use it to allocate the clause array.
11108
11109         * reflection.c (mono_image_get_field_on_inst_token): Free
11110         the inflated type after encoding it.
11111
11112         * reflection.c (mono_dynamic_image_free): Free each element
11113         of MonoDynamicImage::gen_params.
11114
11115         * reflection.c (reflection_methodbuilder_to_mono_method):
11116         Allocate the generic param array from the mempool.
11117         Allocate signature params from the mempool.
11118
11119         * reflection.c (mono_reflection_generic_class_initialize):
11120         Free inflated fields after been used.
11121
11122 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11123
11124         * icall.c: Reapply the memory leak fixes as they no
11125         longer make mono crash.
11126
11127 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11128
11129         * reflection.c (mono_type_get_object): Don't store the suplied
11130         MonoType with type_hash. A caller which pass a type that
11131         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
11132         might end with a pointer to freed memory.
11133         The solution is to use byval_arg or this_arg from the associated
11134         MonoClass of the supplied type.
11135
11136 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
11137
11138         * icall.c: Revert the rest of the last change as it breaks the build too.
11139
11140 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11141
11142         * icall.c: Revert a leak fix as it's breaking the build.
11143
11144 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11145
11146         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
11147
11148 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11149
11150         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
11151
11152 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11153
11154         * icall.c: Fix some memory leaks.
11155
11156 2008-05-29  Dick Porter  <dick@ximian.com>
11157
11158         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
11159         async socket operations from the pending list when a socket
11160         closes.  Leaving it until the threadpool services the event
11161         exposes a race condition when a socket descriptor is reused.
11162         Fixes bug 377589.
11163
11164 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11165
11166         * object.c: Fix negative index check for array alocation.
11167
11168 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11169
11170         * icall.c, marshal.c: Delegate wrappers should skip visibility.
11171         This check is performed by the verifier for IL created delegates
11172         and by Delegate::CreateDelegate for programatically created ones.
11173         Fixes #372406.
11174
11175 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11176
11177         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
11178         Fix code to use mono_array_size_t instead of int.
11179
11180         Based on patch by Luis F. Ortiz.
11181         Contributed under X11 license.
11182         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11183
11184 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11185
11186         * icall.c: Added ves_icall_System_Array_GetLongLength and
11187         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
11188         arrays.
11189
11190         * icall.h: Export both new functions.
11191
11192         Based on patch by Luis F. Ortiz.
11193         Contributed under X11 license.
11194         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11195
11196 2008-05-28  Martin Baulig  <martin@ximian.com>
11197
11198         The debugger now requires exactly r103463.
11199
11200         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
11201         This version is not supported by the debugger, wait for 72.
11202
11203 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11204
11205         * object.h: Changed array related functions to use
11206         mono_array_size_t instead of guint32. Forgot to commit this file.
11207
11208         Patch by Luis F. Ortiz.
11209         Contributed under X11 license.
11210         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11211
11212
11213 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11214
11215         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
11216         don't define it. Use the number literal instead.
11217
11218 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11219
11220         * icall.c: Changed array related functions to use
11221         mono_array_size_t instead of guint32.
11222
11223         * icall.c (ves_icall_System_Array_GetLength): Check for length
11224         overflow under MONO_BIG_ARRAYS.
11225
11226         Based on patch by Luis F. Ortiz.
11227         Contributed under X11 license.
11228         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11229
11230 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11231
11232         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
11233
11234         Based on patch by Luis F. Ortiz.
11235         Contributed under X11 license.
11236         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11237
11238 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11239
11240         * object.c, object.h: Changed array related functions to use
11241         mono_array_size_t instead of guint32.
11242
11243         Patch by Luis F. Ortiz.
11244         Contributed under X11 license.
11245         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11246
11247 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11248
11249         * object.h: Introduced mono_array_size_t typedef. This must be used
11250         in all places an array length is expected. This is 64bits wide if
11251         MONO_BIG_ARRAYS is enabled.
11252
11253         Patch by Luis F. Ortiz.
11254         Contributed under X11 license.
11255         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11256
11257 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
11258
11259         * security-manager.c class.c: Set the class exception info by calling
11260         mono_class_set_failure ().
11261
11262         * class.c (mono_class_get_exception_data): New accessor function.
11263         (mono_class_set_failure): Store exception_data in the property hash.
11264
11265         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
11266         the struct as a property.
11267
11268         * loader.c (mono_get_method_full): Store the lookup result for method
11269         tokens in method_cache, the others in methodref_cache to decrease the memory
11270         usage of hash tables.
11271
11272         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
11273         (mono_image_init): method_cache is lazy inited now.
11274
11275         * metadata-internals.h (struct _MonoImage): Change method_cache to
11276         a MonoValueHashTable, add a separate methodref_cache.
11277
11278 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
11279
11280         * number-formatter.h: Fix tables to avoid arithemtic overflow in
11281           Double.ToString as exposed by Bug #383531.
11282
11283 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
11284
11285         * number-formatter.h: Make some tables static.
11286
11287         * class.c (mono_method_set_generic_container): New accessor function.
11288         (mono_method_get_generic_container): Ditto.
11289
11290         * class-internals.h (struct _MonoMethod): Remove rarely used 
11291         'generic_container' field, store it in the property hash instead. Add 
11292         'is_generic' boolean field instead.
11293
11294         * image.c (mono_image_init): Initialize property_hash.
11295         (mono_image_close): Destroy property_hash.
11296
11297         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
11298         hold rarely used fields of runtime structures belonging to this image.
11299
11300         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
11301         to get/set method->generic_container.
11302
11303         * loader.c (mono_get_method_from_token): Avoid loading the method header for
11304         generic methods.
11305
11306 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
11307
11308         * class.c (mono_class_inflate_generic_method_full): Don't increase
11309         mono_stats.inflated_method_count for methods found in the cache.
11310
11311         * threads.c (mono_thread_request_interruption): Add a comment about 
11312         QueueUserAPC ().
11313
11314 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
11315
11316         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
11317         interface_offsets_packed table.
11318         
11319         * class.c (mono_class_init): Remove some dead code.
11320
11321         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
11322         mono_class_setup_vtable () when CAS is active to detect security problems.
11323
11324 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
11325
11326         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
11327
11328         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
11329         parameters as it's irrelevant for delegate checking.
11330
11331 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
11332
11333         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
11334
11335         * class.c (mono_class_init): Control the creation of a generic vtable using
11336         a global which is true by default, but set to false by the runtime startup code.
11337         
11338         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
11339         Disabled for now since it breaks the embedding API.
11340         Move the setup of class->methods for arrays to mono_class_setup_methods ().
11341         (mono_class_setup_methods): Add a memory barrier.
11342
11343         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
11344         when mono_class_init () doesn't compute the generic vtable.
11345         
11346 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
11347         * profiler.c: Added mono_profiler_install_statistical_call_chain,
11348         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
11349         to support call chains (backtrace) in the stat profiler.
11350         * profiler.c, profiler-private.h: Likewise.
11351
11352 2008-05-22  Mark Probst  <mark.probst@gmail.com>
11353
11354         * generic-sharing.c: Init generic class when a method of it is
11355         requested via a runtime generic context.
11356
11357 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
11358
11359         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
11360
11361         * reflection.c (mono_type_get_object): Add a FIXME.
11362
11363         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
11364
11365         * class.c (mono_class_get_method_by_index): New helper function, returning an
11366         entry in the class->methods array.
11367
11368 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11369
11370         * class.c (mono_class_init): Only do the array optimization for szarrays. 
11371         Avoid creating a generic vtable for generic instances as well.
11372         (mono_class_get_method_from_name_flags): Don't search in the metadata for
11373         generic instances.
11374
11375 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
11376
11377         * loader.c (mono_get_method_constrained): Inflate the signature
11378         with class context. Fix #325283.
11379
11380 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11381
11382         * object.c (mono_class_create_runtime_vtable): Add a comment.
11383
11384         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
11385         where needed.
11386         (setup_interface_offsets): Handle the case when this is called twice for arrays.
11387         (mono_class_setup_vtable_general): Add an assert.
11388         (mono_class_init): Avoid creating a generic vtable for arrays.
11389
11390         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
11391         here, let mono_class_init () do that.
11392
11393         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
11394         interfaces in mscorlib.
11395
11396         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
11397         interfaces. Add some comments.
11398         (mono_class_init): Call mono_class_setup_methods () here since it is no
11399         longer called by mono_class_setup_vtable ().
11400
11401         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
11402         not set in class->vtable.
11403         (mono_class_create_runtime_vtable): Reenable the disabled code.
11404
11405         * object.c (mono_class_create_runtime_vtable): Disable the last change for
11406         now as it causes some test failures.
11407
11408         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
11409         if using the vtable trampoline. Also remove some strange code which put the
11410         generic methods themselves into the vtable slots. Remove the AOT init_vtable
11411         stuff as it is no longer needed.
11412
11413 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
11414
11415         * pedump.c: Give make --verify all option check code as well.
11416         Using --verify code won't check for metadata now.
11417
11418 2008-05-19  Martin Baulig  <martin@ximian.com>
11419
11420         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
11421
11422         * mono-debug.c
11423         (_mono_debug_using_mono_debugger): New global variable; it's set
11424         directly by the debugger, so mono_debug_using_mono_debugger() also
11425         works after attaching.
11426
11427 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
11428
11429         * object.c (mono_class_create_runtime_vtable): Use memory barriers
11430         as we do double checked locking on MonoClass::runtime_info and
11431         MonoClassRuntimeInfo::domain_vtables.
11432
11433 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
11434
11435         * debug-helpers.c (print_field_value): Fix a warning.
11436
11437 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
11438
11439         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
11440         set in the AOT case.
11441
11442 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11443
11444         * class.c (mono_class_setup_vtable_general): Use memory barriers
11445         as we do double checked locking on MonoClass::vtable.
11446
11447 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11448
11449         * reflection.c (resolve_object): Inflate only if the generic context
11450         is not null. Fixes #389886.
11451
11452 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
11453
11454         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
11455         instead of g_free.
11456
11457         Code is contributed under MIT/X11 license.
11458
11459 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11460
11461         * class.c: Revert unrelated change.
11462
11463 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11464
11465         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
11466         a generic instantiation, use mono_class_from_mono_type instead of playing
11467         with MonoType directly.
11468
11469 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11470
11471         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
11472         checks must ignore generic instantiations, so mono_class_has_parent is not
11473         suitable. Fixes #390128.
11474
11475 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
11476
11477         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
11478         it to avoid registering tokens during metadata generation. Fixes #390023.
11479
11480 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11481
11482         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
11483         consistent.
11484
11485         Contributed under MIT/X11 license.
11486
11487 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11488
11489         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
11490         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
11491         to fixup the EXE image.
11492         (mono_cleanup): Use mono_close_exe_image.
11493         (mono_close_exe_image): New function.
11494         * image.c: Include "marshal.h".
11495         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
11496         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
11497         counting when the image is loaded outside of mono_image_open_full. Set status
11498         based on GetLastError.
11499         * coree.c: Include required headers. Add init_from_coree.
11500         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
11501         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
11502         (_CorExeMain): Set init_from_coree.
11503         (CorExitProcess): Only call ExitProcess for now.
11504         (CorBindToRuntimeEx): New stub implementation.
11505         (CorBindToRuntime): New function.
11506         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
11507         (MonoFixupExe): ILONLY executables require no fixups.
11508         (mono_set_act_ctx): New function to set activation context.
11509         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
11510         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
11511         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
11512         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
11513         as MONO_INTERNAL.
11514         * domain-internals.h: Add mono_close_exe_image.
11515
11516         Contributed under MIT/X11 license.
11517
11518 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
11519
11520         * metadata.c (mono_metadata_compute_size): Correctly calculate field
11521         size for generic param and event tables. Fixes #388977.
11522
11523 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
11524
11525         * loader.c (mono_method_signature): Use memory barriers because of the double
11526         checked locking pattern.
11527
11528         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
11529         aborting or aborted as well. Fixes #376391.
11530         
11531         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
11532         existing runtime state in the Suspend handler during shutdown.
11533
11534 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
11535
11536         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
11537
11538         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
11539         which are starting up or shutting down.
11540
11541         * threads.c (mono_threads_set_shutting_down): Don't return a value since
11542         this function never returns if the runtime is already shutting down.
11543
11544         * icall.c (ves_icall_System_Environment_Exit): Update after 
11545         mono_threads_set_shutting_down () signature change.
11546         
11547 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
11548
11549         * class.c: Added can_access_instantiation to verify if the instantiation
11550         is visible. Fix access check for nested types as they returned TRUE
11551         before doing type and generic instantiation visibility checks.
11552
11553 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11554
11555         * reflection.c (mono_reflection_create_generic_class): The created type
11556         must have a different container from its TypeBuilder. Otherwise they
11557         will end sharing generic arguments, which is wrong.
11558
11559         Due to the sharing, making a generic instance of the created type using
11560         the TypeBuider generic arguments resulted in the generic type definition
11561         been returned, which is wrong as well.
11562
11563         As a bonus the code was leaking the type_params array. This memory should
11564         be allocated from the image mempool.
11565
11566         This fixes bug #354047.
11567
11568 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11569
11570         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
11571         to here         as they are now used in assembly.c new code.
11572         Added a skipverification flag to MonoAssembly.
11573         New internal function mono_assembly_has_skip_verification.
11574
11575         * assembly.c: New function mono_assembly_has_skip_verification. It checks
11576         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
11577         part of #387274.
11578
11579 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11580
11581         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
11582         needed. Fixes #387034.
11583
11584         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
11585
11586 2008-05-06  Miguel de Icaza  <miguel@novell.com>
11587
11588         * assembly.c (mono_assembly_load_reference): Prevent crash while
11589         disassembling Silverlight 2.0 executables while we still do not
11590         have GACed libraries.
11591
11592 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11593
11594         * reflection.c: Special case generic type definitions as well. Fixes #383444.
11595
11596 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
11597
11598         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
11599         of the dynamic case. Fixes #387404.
11600
11601 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11602
11603         *verify.c (mono_verifier_is_class_full_trust): If under
11604         verify_all and the verifier mode was not set, only
11605         gac and corlib types are fulltrust. This makes --verify-all
11606         usable to detect unverifiable code, which is the expected
11607         use case.
11608
11609 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11610
11611         * verify.h: Ops, commited the header with debug
11612         enabled.
11613
11614 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11615
11616         * verify.c (merge_stack): Use the new value on unverifiable
11617         stack merges.
11618
11619         * verify.c (verify_type_compatibility_full): Comparison
11620         of nullable types can't use mono_class_is_assignable_from.
11621
11622         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
11623         that makes all verification errors be reported.
11624
11625         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
11626         mono_method_verify.
11627
11628 2008-05-05  Robert Jordan  <robertj@gmx.net>
11629
11630         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
11631         support for value types. See #386415.
11632
11633         * object.c: comments.
11634
11635         Code is contributed under MIT/X11 license.
11636
11637 2008-05-05  Martin Baulig  <martin@ximian.com>
11638
11639         * debug-mono-symfile.h
11640         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
11641         for old pre-terrania symbol files.
11642
11643 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11644
11645         * mono-config.c: Add ppc64 architecture.
11646
11647         Code is contributed under MIT/X11 license.
11648
11649 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11650
11651         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
11652           PPC64 uses function descriptors as well.
11653
11654         Code is contributed under MIT/X11 license.
11655
11656 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
11657
11658         * object.c (compute_class_bitmap): Ignore literal static fields.
11659
11660         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
11661         var has an invalid format.
11662         (describe_ptr): Add some sanity checks for the vtable.
11663         (add_nursery_frag): Clear unused nursery fragments.
11664         (major_collection): Clear all remaining nursery fragments.
11665
11666 2008-05-03  Robert Jordan  <robertj@gmx.net>
11667
11668         * image.c, metadata-internals.h: add thunk_invoke_cache.
11669
11670         * marshal.c, marshal.h: implement
11671         mono_marshal_get_thunk_invoke_wrapper ().
11672
11673         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
11674
11675         Code is contributed under MIT/X11 license.
11676
11677 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11678
11679         * verify.c (do_leave): Empty the stack.
11680
11681 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11682
11683         * class.c (mono_class_is_assignable_from): Variance
11684         doesn't work between reference and value types. For example,
11685         given type C<T+>, C<int32> is not assignable to C<object>.
11686         Break the argument checking loop on first error. 
11687
11688 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
11689
11690         * icall.c : base64_to_byte_array() needs some more strict
11691           check for sequence of '=' characters. Patch by Santa
11692           Marta (http://deee.g.hatena.ne.jp/santamarta).
11693
11694           Contributed under MIT/X11 license.
11695           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
11696
11697 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
11698
11699         * domain.c: Disable LoadLibrary support to fix Win32 build.
11700
11701         Code is contributed under MIT/X11 license.
11702
11703 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
11704
11705         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
11706         to help with cache behaviour.
11707
11708 2008-05-01  Miguel de Icaza  <miguel@novell.com>
11709
11710         * appdomain.c (mono_domain_from_appdomain): Add new accessor
11711         method. 
11712
11713 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
11714
11715         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
11716
11717 2008-05-01  Dick Porter  <dick@ximian.com>
11718
11719         * process.c (process_get_fileversion): Only pass 16 bits of
11720         language ID to VerLanguageName.  Fixes bug 381204.
11721
11722 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11723
11724         * verify.c (mono_method_verify): Fix the comparison
11725         operator for code bounds check.
11726
11727 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11728
11729         * verify.c (mono_method_verify): Check the bounds of
11730         all access of the code array.
11731
11732 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
11733
11734         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
11735
11736 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
11737
11738         * image.c (mono_image_strong_name_position): Fix return value when the rva is
11739         not valid.
11740
11741 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
11742
11743         * loader.c (mono_get_method_from_token, mono_method_signature): Add
11744         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
11745         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
11746         fixup main EXE images when using mono.exe for mixed-mode assembly support.
11747         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
11748         mono_runtime_load.
11749         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
11750         runtime initialization from metadata.
11751         * assembly.c: Remove obsolete ceGetModuleFileNameA.
11752         (mono_set_rootdir): Use mono_get_module_file_name.
11753         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
11754         handles.
11755         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
11756         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
11757         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
11758         MonoCLIImageInfo. Add support for module handles.
11759         (load_cli_header): Update mono_cli_rva_image_map signature.
11760         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
11761         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
11762         (mono_image_rva_map): Add support for module handles.
11763         (mono_image_ensure_section_idx): Add support for module handles.
11764         (mono_image_close): Add support for module handles.
11765         (do_load_header): Add support for module handles.
11766         (mono_image_open_from_module_handle): New function for internal use.
11767         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
11768         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
11769         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
11770         handles.
11771         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
11772         * image.h: Add mono_image_fixup_vtable.
11773         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
11774         support.
11775         * coree.h: New file.
11776         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
11777         unsupported native code.
11778         (mono_marshal_set_callconv_from_modopt): New function splitted from
11779         mono_marshal_get_managed_wrapper.
11780         (mono_marshal_get_managed_wrapper): Use
11781         mono_marshal_set_callconv_from_modopt.
11782         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
11783         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
11784         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
11785         that results in a deadlock when the runtime is loaded in _CorDllMain.
11786         * Makefile.am: Add coree.c and coree.h.
11787
11788         Contributed under MIT/X11 license.
11789
11790 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11791
11792         * generic-sharing.c: Search for type arguments in array element
11793         types as well.
11794
11795 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11796
11797         * class-internals.h, generic-sharing.c: New, small runtime generic context.
11798
11799         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
11800
11801         * object.c: Don't setup the RGCTX when the vtable is created,
11802         because we're setting it up lazily now.
11803
11804 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
11805
11806         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
11807         64 bit support.
11808
11809 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11810
11811         * verify.c (verify_class_for_overlapping_reference_fields): 
11812         If class is under fulltrust allow reference types to overllap
11813         if they have the same RVA.
11814
11815 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11816
11817         * pedump.c: Added new flag valid-only, that makes the verifier
11818         behaves just like --security=validil. It won't fail type load
11819         due to unverifiable restrictions.
11820
11821 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11822
11823         * class-internals.h (struct MonoMethod): Added a verification_success
11824         field to cache verifier executions. Reduced MonoMethod:slot size by
11825         one bit.
11826
11827 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
11828
11829         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
11830         instead of a 'vt' argument to save an indirection and to allow these to be used
11831         for valuetypes.
11832         (scan_vtype): New helper function to scan an area using a gc descriptor.
11833         (mono_gc_wbarrier_value_copy): Implement this.
11834         (handle_remset): Add support for REMSET_VTYPE.
11835         (find_in_remset_loc): Ditto.
11836         (mono_gc_base_init): Allow some debugging options to be controlled through the
11837         use of the MONO_GC_DEBUG env variable.
11838         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
11839         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
11840
11841 2008-04-23  Martin Baulig  <martin@ximian.com>
11842
11843         * domain.c (mono_domain_create): Move the call to
11844         mono_debug_domain_create() down, after allocating the domain id.
11845
11846 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11847
11848         verify.c (verify_class_for_overlapping_reference_fields): Skip
11849         static fields while verifying for overlapping fields as they
11850         don't matter at all.
11851
11852 2008-04-23  Marek Habersack  <mhabersack@novell.com>
11853
11854         * domain-internals.h: added a declaration of
11855         mono_make_shadow_copy.
11856
11857         * assembly.c (mono_assembly_open_full): shadow copying of
11858         assemblies moved to here, so that all the assemblies within the
11859         application domain's private binary directories can be
11860         processed. Fixes bug #380546
11861
11862         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
11863         mono_make_shadow_copy and made non-static. The decision whether
11864         to shadow-copy an assembly is made based on its location - it's
11865         copied if it's in one of the private application domain binary
11866         directories and its different to the target file in the shadow
11867         directory. Fixes bug #380546
11868
11869 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
11870
11871         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
11872
11873         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
11874         types.
11875
11876         * reflection.c (mono_image_create_token): Handle 
11877         Method/ConstructorOnTypeBuilderInst.
11878         (resolve_object): Ditto.
11879         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
11880         so it can be called from resolve_object. Also handle the case when the inflated
11881         class already has its methods setup.
11882
11883 2008-04-21  Martin Baulig  <martin@ximian.com>
11884
11885         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
11886
11887 2008-04-20  Geoff Norton  <gnorton@novell.com>
11888
11889         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
11890         pointer dereference.
11891
11892 2008-04-15  Marek Habersack  <mhabersack@novell.com>
11893
11894         * appdomain.c (try_load_from): if IOMAP is in effect, call the
11895         portability API to look up the assembly file. Fixes behavior in
11896         situations when the application has a bin/ directory, but the
11897         assembly search patch refers to Bin/ (and thus the requested file
11898         name is Bin/SomeLibrary.dll). Fixes bug #379888
11899
11900 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
11901
11902         verify.c (mono_type_is_generic_argument): Extracted this check
11903         from a dozen places to here.
11904
11905         verify.c: Fixed all issues related to boxing generic arguments
11906         and their constraints.
11907
11908 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
11909
11910         verify.c (mono_class_interface_implements_interface): Fix win32 build.
11911
11912 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
11913
11914         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
11915         isn't finished yet. Fixes #363447.
11916
11917 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
11918
11919         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
11920         Fixes #346419.
11921
11922 2008-04-13  Jb Evain  <jbevain@novell.com>
11923
11924         * domain.c: update the 2.1 profile versions.
11925         Merged from the Moonlight 2 branch.
11926
11927 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
11928
11929         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
11930         mscorlibs for the non-refonly case as well.
11931
11932         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
11933         in mono_assembly_load_from_full (). Fixes #378924.
11934
11935 2008-04-11  Geoff Norton  <gnorton@novell.com>
11936
11937         * icall.c: The global extern environ doesn't exist on Mac.  We
11938         need to call NSGetEnviron instead.
11939
11940 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11941
11942         verify.c: Add generic method constraint verification.
11943
11944 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11945
11946         class.c (mono_class_inflate_generic_method_full): Add a long
11947         explanation to the is_mb_open hack. Remove the FIXME.
11948
11949 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11950
11951         * verify.c (mono_method_verify): Mark all unknown opcodes
11952         as invalid. Mark jmp as unverifiable.
11953
11954 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11955
11956         * verify.c: Add code to do type constraint verification on class instances.
11957
11958         * verify.c (mono_verifier_verify_class): Use the type constraint 
11959         verification code.
11960
11961 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11962
11963         * class.c (mono_class_get_field_default_value): Don't pass cindex
11964         as hint to mono_metadata_get_constant_index. The local is not initialized
11965         and should contain garbage most of the time. This could only work
11966         with a lot of luck.
11967
11968 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11969
11970         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
11971
11972 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11973
11974         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
11975
11976         * class.c (mono_class_from_generic_parameter): Save the token of the
11977         generic param in MonoClass::sizes.generic_param_token.
11978
11979         * reflection.c (mono_custom_attrs_from_class): If the class type is
11980         VAR or MVAR retrieve the attributes of the generic param.
11981
11982 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11983
11984         * class.c (mono_class_init): Do class verification if the verifier
11985         is enabled.
11986
11987 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11988
11989         * verify-internal.h: Added mono_verifier_verify_class.
11990
11991         * verify.c: Added mono_verifier_verify_class. It checks for
11992         classes with explicit layout that have overlapping reference fields.
11993
11994         * pedump.c: Init the verifier state prior to verification. Fixed
11995         command line arguments.
11996
11997 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11998
11999         * Makefile.am: Added verify-internals.h, hopefully fix the build.
12000
12001 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
12002
12003         * verify-internals.h: Fix a warning.
12004
12005 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12006
12007         * verify-internals.h: New header with the verifier configuration
12008         extracted from mini.c.
12009
12010         * verify.c: Implemented the new functions exported by verify-internals.h.
12011
12012 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12013
12014         * verify.c: Add proper verification of ckfinite.
12015
12016 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12017
12018         * verify.c (do_conversion): Improved error message to something
12019         more meanfull.
12020
12021         * verify.c (check_is_valid_type_for_field_ops): Fix to work
12022         with primitive types.
12023
12024 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12025
12026         * verify.c: Added tail prefix checking. Marked icall
12027         as unverifible.
12028
12029 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12030
12031         * verify.c: Fix the detection of branches to the middle
12032         of an instruction.
12033
12034 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
12035
12036         * verify.c: Implemented verification of volatile. and
12037         unaligned. prefix. Check if a type is valid after retrieving it.
12038
12039 2008-04-01  Dick Porter  <dick@ximian.com>
12040
12041         * process.c (process_get_fileversion): If there's no string block,
12042         set the file language to en_US.  Fixes the other new part of bug
12043         374600.
12044
12045 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
12046
12047         * class.c: New functions mono_method_can_access_field_full and
12048         mono_method_can_access_method_full. They perform type visibility
12049         and type site check.
12050
12051         * class-internal.h: Added exported functions.
12052
12053         * verify.c: Use new functions to implement proper visibility checks.
12054
12055 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
12056
12057         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
12058
12059 2008-03-28  Dick Porter  <dick@ximian.com>
12060
12061         * process.c (process_get_fileversion): Use the first language ID
12062         we see, rather than insisting on an invariant language.  Fixes bug
12063         374600.
12064
12065 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
12066
12067         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
12068         the streams to fix reading of invalid memory later.
12069
12070         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
12071         to ease debugging.
12072
12073 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
12074
12075         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
12076         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
12077
12078 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
12079         * threads.h: Added MonoThreadManageCallback type and
12080         mono_thread_set_manage_callback prototype
12081         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
12082         (used to store the mono_thread_manage callback).
12083         * threads.c: Added mono_thread_set_manage_callback, and handle
12084         "MonoThread->manage_callback" in build_wait_tids.
12085
12086 2008-03-26  Dick Porter  <dick@ximian.com>
12087
12088         * process.c (process_get_fileversion): Set FileVersionInfo strings
12089         to Empty when the resource doesn't have the particular info.
12090         Fixes bug 355717.
12091
12092 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
12093
12094         * verify.c (mono_method_verify): Proper prefix validation.
12095
12096 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
12097
12098         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
12099         itself in a separate argument instead of throwing them. Fixes #373448.
12100
12101         * appdomain.c: Bump corlib version.
12102
12103 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
12104
12105         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
12106
12107 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
12108
12109         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
12110         version macros.
12111
12112 2008-03-20  Mark Probst  <mark.probst@gmail.com>
12113
12114         * generic-sharing.c, class-internals.h: Code for putting
12115         reflection types into the runtime generic context.
12116
12117 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
12118
12119         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
12120         Fixes #340662. 
12121
12122
12123 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
12124
12125         * verify.c (VerifyContext): Added instruction prefix data to the struct.
12126
12127         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
12128
12129         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
12130
12131         * verify.c (do_cast): Let the result value keep the boxed status.
12132
12133         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
12134
12135 2008-03-17  Jb Evain  <jbevain@novell.com>
12136
12137         * reflection.c: when running on a 2.0 runtime, emit
12138         unconditionally the #~ header version as 2.0, and the
12139         CLI header version as 2.5, for symmetry's sake with csc.
12140
12141 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12142
12143         * class.c: Remove the unused cache_interface_offsets stuff.
12144
12145         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
12146         profiler.c: Fix warnings.
12147
12148 2008-03-16  Mark Probst  <mark.probst@gmail.com>
12149
12150         * generic-sharing.c, class-internals.h: Support for putting
12151         methods into the runtime generic context.
12152
12153 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12154
12155         * class.c (mono_class_setup_fields): Ignore calls made to this function for
12156         classes which are generic instances of not-yet finished typebuilders. Fixes
12157         #351172.
12158
12159         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
12160
12161 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
12162
12163         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
12164
12165         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
12166         field, replace it with a hash table in MonoDynamicImage.
12167
12168         * reflection.c (inflate_mono_method): Access the generic definition object from
12169         image->generic_def_objects instead of imethod->reflection_info.
12170
12171         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
12172
12173         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
12174         
12175         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
12176         function in reflection.c so it is easier to keep in sync with the dynamic image
12177         creation code.
12178
12179         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
12180         mono_image_close ().
12181
12182 2008-03-15  Mark Probst  <mark.probst@gmail.com>
12183
12184         * class.c (mono_class_generic_sharing_enabled): Disable generic
12185         sharing for all architectures except AMD64 and x86 to fix build.
12186
12187 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12188
12189         * verify.c: Use the generic definition MonoGenericContext when available.
12190         Remove code for checking generics instance compatibility in favor of
12191         mono_class_is_assignable_from.
12192
12193 2008-03-14  Mark Probst  <mark.probst@gmail.com>
12194
12195         * marshal.c, marshal.h, metadata-internals.h, image.c,
12196         wrapper-types.h: New wrapper for invoking a shared static method
12197         without having to pass the runtime generic context argument.
12198
12199 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12200
12201         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
12202
12203 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
12204
12205         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
12206         
12207         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
12208         create a token from a FieldOnTypeBuilderInst.
12209         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
12210         (resolve_object): Ditto.
12211
12212         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
12213         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
12214
12215 2008-03-14  Martin Baulig  <martin@ximian.com>
12216
12217         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
12218
12219         * debug-mono-symfile.h
12220         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
12221         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
12222
12223 2008-03-10  Martin Baulig  <martin@ximian.com>
12224
12225         * debug-mono-symfile.h
12226         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
12227         `lexical_block_table_offset'.
12228         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
12229         `lexical_blocks'.
12230         (MonoSymbolFile): Added `version'.
12231
12232         * mono-debug.h
12233         (MonoDebugLexicalBlockEntry): Removed.
12234         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
12235         `lexical_blocks'.
12236
12237         * mono-debug.c (mono_debug_add_method): Don't compute lexical
12238         blocks here; the debugger now does this internally.
12239
12240 2008-02-27  Martin Baulig  <martin@ximian.com>
12241
12242         * object.c (mono_runtime_exec_main): Call
12243         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
12244         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
12245
12246 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12247
12248         * verify.c (verify_type_compatibility_full): Allow native int to be converted
12249         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
12250
12251 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12252
12253         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
12254         ldftn with a virtual method.
12255
12256 2008-03-13  Geoff Norton  <gnorton@novell.com>
12257
12258         * decimal.c:  Only include memory.h if the platform has it.
12259
12260 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
12261
12262         * assembly.c, class.c, metadata-internals.h: make sure public key
12263         tokesns are compared in a case-insensitive way. Also, all
12264         the lookups in the GAC use a lowercase public key token
12265         (gaacutil already does the lowercasing on install). Fixes
12266         bug #369541.
12267
12268 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
12269
12270         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
12271         and return value.
12272
12273 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
12274
12275         * image.c: when someone loads a mscorlib from a file, return the
12276         currently loaded mscorlib (fixes bug #369253).
12277
12278 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12279
12280         * class.c: handle types with no parents by forcing them to have
12281         System.Object as a parent and marking them as broken (this currently
12282         allows the first part of bug #369173 to work as well, likely because
12283         we don't check for typeload exceptions everywhere yet).
12284
12285 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
12286
12287         * class.c: more complete check that types belong to corlib
12288         (fixes second part of bug #369173).
12289
12290 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
12291
12292         * generic-sharing.c:  Including glib.h for the MSVC builds to define
12293           "inline" to "__inline" before including mono-membar.h.
12294           
12295         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
12296           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
12297           MSVC builds.
12298
12299         Contributed under MIT/X11 license.
12300
12301 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12302
12303         * verify.c (do_invoke_method): Remove return type validation.
12304
12305         * verify.c (do_ret): Do return type validation at return site instead of
12306         call site.
12307
12308 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12309
12310         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
12311
12312         * verify.c: Some todos cleaned and improved a few error messages.
12313
12314 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
12315
12316         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
12317
12318 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
12319
12320         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
12321         system types correctly.
12322
12323         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
12324         function.
12325
12326 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12327
12328         * assembly.c (build_assembly_name): Fix a warning.
12329
12330 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
12331
12332         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
12333         the called function takes an object type argument. Fixes storing or
12334         valuetypes across remoting as well as reducing memory usage.
12335         * image.c, metadata-internals.h: remove now unused ldfld_remote and
12336         stfld_remote wrapper caches.
12337
12338 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12339
12340         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
12341         is not found.
12342
12343         * reflection.c (mono_image_register_token): New helper function to save
12344         a token->object mapping.        
12345
12346         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
12347         managed code.
12348
12349         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
12350         one dimension arrays. Fixes #367670.
12351         (mono_reflection_get_type_internal): Ditto.
12352
12353 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
12354
12355         * marshal.c: mono_load_remote_field_new() always returns object.
12356         so use the proper signature (fixes bug #366445).
12357
12358 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12359         
12360         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
12361         add an 'inline_failure' flag instead.
12362
12363 2008-03-04  Mark Probst  <mark.probst@gmail.com>
12364
12365         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
12366         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
12367         contains the location of "this", used for exception handling.
12368
12369 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12370
12371         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
12372         their size on all platforms for perf reasons.
12373
12374 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12375
12376         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
12377         object-internal.h
12378
12379         * object-internal.h: Same.
12380
12381 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12382
12383         * reflection.h: Fix the build I just broke.
12384
12385 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12386
12387         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
12388         Test if a token is valid, this remove explicit usage of 
12389         MonoDynamicImage::tokens from the verifier code.
12390
12391         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
12392
12393         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
12394         instead of direct access to MonoDynamicImage::tokens.
12395
12396 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12397
12398         * verify.c (token_bounds_check): Fix the build I just broke.
12399
12400 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12401
12402         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
12403
12404         * verify.c (verifier_load_method): Fixed the errors message.
12405
12406         * verify.c (mono_method_verify): Fixed a debug message.
12407
12408 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
12409
12410         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
12411         mono-perfcounters.h, class-internals.h: support for predefined
12412         writable counters, query of categories and counters, bugfixes.
12413
12414 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12415
12416         * verify.c (do_refanytype): Verify the refanytype opcode.
12417
12418         * verify.c (mono_method_verify): Use do_refanytype.
12419
12420 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12421
12422         * verify.c (do_mkrefany): Verify the mkrefany opcode.
12423
12424         * verify.c (mono_method_verify): Use do_mkrefany.
12425
12426 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
12427
12428         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
12429         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
12430         implementation.
12431
12432 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12433
12434         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
12435         the type load exception.
12436
12437 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
12438
12439         * verify.c: Added a few FIXME for method signatures
12440
12441         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
12442         of mono_method_get_signature and get vararg call working. Removed unused
12443         checks for return value.
12444
12445         * verify.c (do_refanyval): Verify the refanyval opcode.
12446
12447         * verify.c (mono_method_verify): Implemented verification of arglist and
12448         use do_refanyval.
12449
12450 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12451
12452         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
12453         vtypes to marshal.c.
12454
12455         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
12456         it works for AOT as well.
12457
12458 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12459
12460         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
12461         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
12462         the system time is adjusted.
12463
12464 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
12465
12466         * icall.c, icall-def.h: use the new time functions (fixes the
12467         non-monotonic behaviour of TickCount).
12468
12469 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
12470
12471         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
12472         it breaks the build.
12473         
12474         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
12475         cattr is not finished yet.
12476
12477 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12478
12479         * verify.c: Proper token validation for field, method and type.
12480
12481 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12482
12483         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
12484
12485         * loader.c (method_from_memberref): Generate type load error instead of method missing
12486         if the type is not found.
12487
12488 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
12489
12490         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
12491         some of the conversions caused the generation of a marshal directive exception.
12492
12493 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12494
12495         verify.c: Report which exception should be thrown by the JIT.
12496         Added a lot of FIXME notes.
12497
12498 2008-02-22  Mark Probst  <mark.probst@gmail.com>
12499
12500         * generic-sharing.c: Runtime generic context slots are not
12501         instantiated on init anymore.  Instead, provide function to do the
12502         instantiating on demand.
12503
12504         * class-internals.h: Added vtable to runtime generic context.
12505         Macros for encoding direct and indirect slot offsets in one
12506         guint32.
12507
12508 2008-02-21  Mark Probst  <mark.probst@gmail.com>
12509
12510         * object.c, generic-sharing.c: Moved some generic sharing code
12511         from object.c to generic-sharing.c.
12512
12513         * generic-sharing.c: Added support for extensible runtime generic
12514         context.
12515
12516         * metadata-internals.h: Two new hash tables in MonoImage for
12517         extensible runtime generic context support.
12518
12519         * domain.c: Unregister generic vtables upon domain unloading.
12520
12521         * image.c: Destroy new hash tables upon image unloading.
12522
12523         * metadata.c: Unregister generic subclasses upon image unloading.
12524
12525         * class-internals.h: New data structure for runtime generic
12526         context template.  New fields in the runtime generic context for
12527         extensible part.
12528
12529         * Makefile.am: Added generic-sharing.c.
12530
12531 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12532
12533         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
12534         there is a pending loader exception, raise it.
12535
12536         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12537         same.
12538
12539         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
12540         same.
12541
12542         Fixes #363450.
12543
12544 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
12545
12546         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
12547
12548         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
12549         
12550         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
12551         ref-only requests for compatibility with MS.
12552
12553 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12554
12555         * reflection.c (mono_custom_attrs_from_method): Don't silently
12556         return an empty list for generic method instances.
12557         (mono_custom_attrs_from_param): Likewise.
12558
12559 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
12560             Raja R Harinath  <harinath@hurrynot.org>
12561
12562         Fix #354757
12563         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
12564         * class.c (mono_class_inflate_generic_method_full): Initialize it
12565         when a fully-open method is instantiated.
12566         * metadata.c (inflated_method_equal, inflated_method_hash): Update
12567         to new field.
12568         * reflection.c (inflate_mono_method): Don't create a temporary context.
12569
12570 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12571
12572         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
12573         Compute correct value, to prepare for imethod->reflection_info going away.
12574
12575 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
12576
12577         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
12578
12579 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12580
12581         * verify.c: Implement skip visibility flag.
12582
12583 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12584
12585         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
12586         which contains an extra field to tell the kind of exception that should be thrown.
12587
12588         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
12589
12590 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
12591
12592         * loader.c (mono_method_get_param_names): Initialize 'klass' after
12593         'method' is updated.
12594
12595 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
12596
12597         * class.c (mono_class_layout_fields): Set class->min_align for classes using
12598         explicit layout as well. Fixes #360375.
12599
12600 2008-02-11  Geoff Norton  <gnorton@novell.com>
12601
12602         * loader.c: Guard and dereference against inflated generic methods
12603
12604 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
12605
12606         * class.c: Include Retargetable spec in assembly name.
12607         * assembly.c: Always include PublicKeyToken spec in assembly name
12608         (with value "null" if assembly is not signed), and include
12609         Retargetable spec.
12610         * icall-def.h: Added icall for Assembly.get_fullname.
12611         * icall.c: Added icall returning the fullname of an assembly.
12612
12613 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
12614
12615         * class.c (mono_class_setup_vtable_general): Add a missing call to
12616         mono_class_setup_methods () which is needed in the AOT case.
12617
12618 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
12619
12620         * verify.c (mono_type_get_stack_name): Added. Return the name for the
12621         stack type of the given MonoType.
12622
12623         * verify.c (verify_type_compatibility_full): Handle the void type.
12624
12625         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
12626         way stack merging works.
12627
12628         * verify.c (store_local): Improved verification message.
12629
12630         * verify.c (do_branch_op): If the merging is invalid, the method
12631         is unverifiable and not invalid. Improved error message.
12632
12633         * verify.c (merge_stacks): Properly merge a boxed valuetype and
12634         a reference type diferent than System.Object. Improved error
12635         message.
12636
12637 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
12638
12639         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
12640
12641         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
12642         type of an enum even if the argument is byref.
12643
12644         * verify.c: Replace all explicit uses of enumtype and enum_basetype
12645         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
12646
12647         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
12648
12649         *verify.c (verify_type_compatibility_full): Make enum types
12650         compatible with their base types.
12651
12652         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
12653         types are compatible for the special case of a boxed valuetype and
12654         System.Object.
12655
12656         * verify.c (verify_stack_type_compatibility): The function
12657         is_compatible_boxed_valuetype was extracted from here.
12658
12659         * verify.c (push_arg): Only set ctx->has_this_store if the method
12660         is not static.
12661
12662         * verify.c (do_ldelem): Fixed a typo in an error message and added
12663         strict check for mixing int32 and native int as the array type
12664         and ldelem type.
12665
12666         * verify.c (merge_stacks): Consider boxed valuetypes in the
12667         compatibility checks.
12668
12669 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
12670         * profiler.h: (MonoGCEvent): Added start-stop the world events.
12671
12672 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12673         *class.c: use_new_interface_vtable_code: renamed the env var to have
12674         a "MONO_" prefix, and fix the logic to enable it by default.
12675
12676 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12677         *class.c:
12678         mono_class_setup_vtable_general: rewrote the way in which interface
12679         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
12680         makes the code more maintainable.
12681         For now the old code is still there, and can be activated setting
12682         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
12683
12684 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
12685
12686         * verify.c: guarded some debug functions around and #ifdef.
12687
12688         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
12689
12690 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
12691
12692         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
12693         changes for now since they seem to break too many things.
12694
12695 2008-02-05  Mark Probst  <mark.probst@gmail.com>
12696
12697         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
12698         mono_marshal_find_nonzero_bit_offset): Added macro and function
12699         for finding the byte- and bit-offset of a bitfield within a
12700         struct.
12701
12702 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
12703
12704         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
12705         (mono_marshal_get_struct_to_ptr): Ditto.
12706
12707         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
12708         cctor_signature.
12709
12710 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
12711
12712         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
12713         between methods for non-corlib types.
12714
12715 2008-02-02  Geoff Norton  <gnorton@novell.com>
12716
12717         * loader.c (mono_method_get_param_names): Populate the parameter name for 
12718         generic parameters as well. (Fixes #342536)
12719
12720 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
12721
12722         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
12723
12724         * verify.c (do_invoke_method): Fix for calling with byref structs.
12725
12726         * verify.c (do_cast): push a boxed value type based on the type token and not
12727         the type of stack.
12728
12729 2008-01-31  William Holmes  <billholmes54@gmail.com>
12730
12731         * process.c (process_module_string_read): Check the size returned form 
12732           VerQueryValue to avoid out of memory exception. 
12733
12734 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
12735
12736         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
12737         Handle properly modules which are not in the moduleref table. Fixes
12738         #356938.
12739
12740 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
12741
12742         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
12743         the dynamic case which is now in managed code.
12744         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
12745
12746         * marshal.c (mono_string_to_bstr): Fix a warning.
12747         (init_com_provider_ms): Ditto.
12748
12749         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
12750
12751         * exception.c (mono_get_exception_out_of_memory): New helper function.
12752
12753 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
12754
12755         * marshal.c: Add support for BSTR marshalling
12756         using other COM systems.
12757
12758         Code is contributed under MIT/X11 license.
12759
12760 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12761
12762         * object.c (mono_runtime_invoke_array): reverted previous
12763         commit as it breaks the build.
12764
12765 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12766
12767         * object.c (mono_runtime_invoke_array): Verify arguments for
12768         invalid types. Fixes #348522.
12769
12770 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12771
12772         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
12773         non-final virtual calls using call. 
12774
12775         * verify.c (do_invoke): fixed some TODOs.
12776
12777         * verify.c (push_arg): set has_this_store for "ldarga 0".
12778
12779 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
12780
12781         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
12782         which belong to an inflated class. Fixes #356531.
12783
12784 2008-01-26  Robert Jordan  <robertj@gmx.net>
12785
12786         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
12787         which resort to FindFirstFile when a certain error condition
12788         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
12789         Code is contributed under MIT/X11 license.
12790
12791 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
12792
12793         * marshal.c (emit_marshal_string): Fix out string marshalling
12794         to use specified encoding. Fixes #323900.
12795
12796         Code is contributed under MIT/X11 license.
12797
12798 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
12799
12800         * class.c (mono_class_inflate_generic_method_full): Don't modify
12801         iresult->context after cache check.
12802
12803 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
12804
12805         * class.c (mono_class_inflate_generic_method_full): Change the
12806         struct assignments to memcpy for better visibility and add some comments.
12807
12808 2008-01-23  Dick Porter  <dick@ximian.com>
12809
12810         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
12811         procedure, and make it work on windows.
12812
12813 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
12814
12815         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
12816         a MonoReflectionTypeBuilder since it is always of that type.
12817
12818         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
12819
12820         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
12821
12822         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
12823         
12824         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
12825
12826         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
12827
12828         * reflection.c (mono_reflection_create_runtime_class): Remove already created
12829         instantiations from the type cache.
12830
12831 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12832
12833         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
12834
12835         * verify.c (do_unbox_value): push a controled mutability managed pointer.
12836
12837 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12838
12839         * verify.c (do_ldstr): added, verifies if the #US token is valid.
12840
12841         * verify.c (mono_method_verify): removed old TODO
12842
12843 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12844
12845         * verify.c (do_newobj): add visibility check.
12846
12847 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12848
12849         * verify.c (do_load_function_ptr): add visibility check.
12850
12851 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
12852         *class.c:
12853         mono_generic_class_get_class: hook profiler events.
12854         mono_field_get_offset: added to support heap-shot in the new profiler.
12855         *class.h: exported mono_field_get_offset.
12856         * reflection.c:
12857         mono_reflection_setup_internal_class: hook profiler events.
12858
12859 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
12860
12861         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
12862         argument here too and use it to avoid checking for pending exceptions if 
12863         possible.
12864
12865 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
12866
12867         * assembly.c (build_assembly_name): add arg for passing the assembly
12868         flags. Do not consider a PublicKey with value "null" valid.
12869         (mono_assembly_name_parse_full): added boolean argument that will be
12870         set if the assembly name contains a PublicKeyToken spec. Added support
12871         for the Retargetable spec for which only Yes or No are allowed as valid
12872         value. Consider assembly name invalid if Retargetable spec is set, but
12873         either version, culture or public key (token) are not specified.
12874         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
12875         with implementation in assembly.c.
12876         * icall.c (fill_reflection_assembly_name): also copy assembly flags
12877         from MonoAssemblyName.
12878         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
12879         introduced argument for mono_assembly_name_parse_full to know if the
12880         assembly name has a PublicKeyToken spec, and if it has instruct
12881         fill_reflection_assembly_name to use default value for keyToken (if
12882         PublicKeyToken is null).
12883
12884 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12885
12886         * verify.c (mono_method_verify): fixed ovf ops with
12887         float values. They are unverifiable now.
12888
12889 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12890
12891         * class.c (set_failure_from_loader_error): add BadImageException to the
12892         list of exceptions that can cause a type to fail to load.
12893
12894         * class.c (mono_class_get_exception_for_failure): same.
12895
12896 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
12897
12898         * verify.c (in_any_exception_block): added, check if offset
12899         is part of any exception handling clause.
12900
12901         * verify.c (get_stack_type): added VAR and MVAR types.
12902
12903         * verify.c (do_stobj): better error messages.
12904
12905         * verify.c (do_cpobj): added, check cpobj.
12906
12907         * verify.c (do_initobj): added, check initobj.
12908
12909         * verify.c (do_sizeof): added, check sizeof.
12910
12911         * verify.c (do_localloc): added, check localloc.
12912
12913         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
12914
12915 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
12916
12917         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
12918         save_lmf/restore_lmf opcodes.
12919
12920         * threads.c (mono_threads_install_notify_pending_exc): New function to
12921         install a callback notifying the JIT there is a pending exception on a thread.
12922         (mono_thread_request_interruption): Call the new callback.
12923         (mono_thread_get_and_clear_pending_exception): New function to return the
12924         exception pending on a thread.
12925
12926         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
12927         to turn off checking for pending exceptions.
12928         (mono_marshal_get_native_wrapper): Ditto.
12929
12930 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12931
12932         * threads-types.h: Get rid of the unnecessary extern declarations.
12933
12934 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
12935
12936         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
12937         return field from parent class if not private.
12938         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
12939         returns fields from parent class if they are not private.
12940         (method_nonpublic): added function to determine if a given method
12941         should be considered non-public. Returns false for private methods
12942         on parent class, and internal methods from parent on the 1.0 profile.
12943         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
12944         use method_nonpublic function to determine whether method should be
12945         returned.
12946         (property_accessor_public): use newly introduced method_nonpublic
12947         function to determine whether accessor is non-public. 
12948         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
12949         event from parent class if not private. Only return static event if
12950         Static flag is set, and only return static event from parent class if
12951         FlattenHierarchy flag is set.
12952         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
12953         include non-private events from parent class.
12954
12955 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12956
12957         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
12958         warning.
12959
12960 2008-01-16  Wade Berrier <wberrier@novell.com>
12961
12962         * security.c: Add assembly.h header to appease some warnings
12963
12964 2008-01-16  Dick Porter  <dick@ximian.com>
12965
12966         * process.c (process_module_string_read): Remove trailing null
12967         when saving string.
12968
12969 2008-01-16  Mark Probst  <mark.probst@gmail.com>
12970
12971         * class-internals.h: A new data structure describing the layout of
12972         a runtime generic context (MonoRuntimeGenericContextTemplate).
12973
12974         * metadata-internals.h: Added a hash table to MonoDomain that maps
12975         from open generic classes to their runtime generic context
12976         templates.
12977
12978         * object.c: Building of the runtime generic context, including
12979         proper handling of generic type arguments of superclasses.
12980         Building of the runtime generic context according to the template.
12981
12982 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
12983
12984         * class.c (mono_class_setup_fields): Set field.count for generic instances.
12985         Fixes #350856.
12986
12987         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
12988         mono_portability_find_file (). Fixes #325466.
12989         (mono_image_get_public_key): Fix a warning.
12990
12991 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
12992
12993         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
12994         Fixes #353550.
12995         (mono_class_from_name_case): Ditto.
12996
12997 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
12998
12999         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
13000           common storage for the tables used in the System/NumberFormatter class.
13001
13002 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
13003
13004         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
13005
13006 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
13007
13008         * verify.c (get_boxable_mono_type): check if the token is valid.
13009
13010         * verify.c (set_stack_value): changed to add an error if an
13011         invalid type is set on stack. Changed all callers due to signature change.
13012
13013         * verify.c (do_stobj): implement stobj validation.
13014
13015 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
13016
13017         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
13018         set container->is_method, it was set earlier.
13019
13020         * metadata.c (type_in_image): Handle MVARs which belong to not finished
13021         generic methods.
13022
13023         * reflection.c (mono_reflection_initialize_generic_parameter): Set
13024         is_method of the generic container to TRUE for methods.
13025
13026 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13027
13028         * metadata.c (type_in_image): Handle type parameters properly.
13029
13030         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
13031         memory ownership of this structure.
13032
13033 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
13034
13035         * verify.c (get_boxable_mono_type): make typedref types been just
13036         unverifiable. check for void type.
13037
13038         * verify.c (do_unbox_any): added, verify opcode unbox.any.
13039
13040         * verify.c (do_load_function_ptr): accept method spec tokens.
13041
13042 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13043
13044         * marshal.c (mono_class_native_size): Always set *align even if this is called
13045         recursively.
13046
13047 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
13048
13049         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
13050         out-of-date.
13051
13052 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
13053
13054         * verify.c: removed some old unused tables. A huge bunch of small fixes
13055         to things found while testing the verifier with mono basic.
13056
13057         * verify.c (dump_stack_value): dump null literal flag to.
13058
13059         * verify.c (verify_type_compatibility_full): fix comparison
13060         for types that have a generic super type.
13061
13062         * verify.c (verify_stack_type_compatibility): fix compatibility
13063         between null literals and reference types. fix compatibility between
13064         boxed valuetypes and object. fix corner case test for enums.
13065
13066         * verify.c (do_cmp_op): proper verification of cgt.un in case
13067         of reference types.
13068
13069         * verify.c (do_invoke_method): fix error message.
13070
13071         * verify.c (do_store_indirect
13072
13073         * verify.c (check_is_valid_type_for_field_ops): proper verification
13074         of managed pointers to valuetypes and boxed valuetypes. proper verification
13075         of null literals.
13076
13077         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
13078         allow token to be a reference type.
13079
13080         * verify.c (do_cast): proper handling of boxes valuetypes.
13081
13082         * verify.c (do_stelem): proper handling of storing a boxed valuetype
13083         in object[].
13084
13085         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
13086         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
13087         fixed the decoding of unbox_any
13088
13089 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
13090
13091         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
13092
13093 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
13094
13095         * verify.c (do_newobj): do delegate verification.
13096
13097         * verify.c (verify_delegate_compatibility): perform delegate
13098         verification.
13099
13100         * verify.c (verify_ldftn_delegate): perform tests related to
13101         ldftn delegates.
13102
13103         * verify.c (mono_delegate_signature_equal): perform the
13104         slightly diferent signature comparison required by delegates.
13105
13106         * metadata.c (mono_metadata_type_equal_full): added and exported
13107         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
13108         allows signature only comparison.
13109
13110         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
13111         as MONO_INTERNAL.
13112
13113 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
13114
13115         * verify.c: added a bunch of stack_slot_* functions to
13116         make access to stack slot type easier. This is required to
13117         allow optional flags, like null literal, boxed value and
13118         this pointer.
13119         All access paths to IlStackDesc::stype have been changed 
13120         to use these new funcions.
13121         Removed a bunch of unused functions and cleared all warnings.
13122         This patch introduces the usage of the this pointer and 
13123         boxed value flags.
13124
13125 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
13126
13127         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
13128
13129 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
13130
13131         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
13132         match managed version.
13133
13134         * appdomain.c: Bump corlib version.
13135         
13136         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
13137         argument.
13138
13139 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
13140
13141         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
13142         Set public key token to zero-length byte array if assembly is not
13143         strongnamed.
13144
13145 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13146
13147         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
13148         writing a vtype array elem.
13149
13150 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
13151
13152         * assembly.c (build_assembly_name): return FALSE if length of token is
13153         not 16 (if not "null").
13154         (mono_assembly_name_parse_full): return FALSE if value of version,
13155         culture, token or key is 0.
13156         * icall.c (fill_reflection_assembly_name): add boolean arguments to
13157         specify whether public key and public key token must be set to default
13158         value (zero-length byte array) if not available. Set versioncompat to
13159         SameMachine. If public key is available or the default is set, then
13160         set PublicKey flag.
13161         (ves_icall_System_Reflection_Assembly_FillName): if no public key
13162         is available, use empty byte array as default value. On the 2.0
13163         profile, use default value for public key token if not set.
13164         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
13165         profile, use default value for public key if not set. On the 2.0
13166         profile, use default value for public key token if not set.
13167         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
13168         default values for public key and public key token.
13169
13170 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13171
13172         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
13173         field to keep it in synch with the managed object.
13174
13175         * marshal.c (emit_marshal_object): Add support for byref marshalling of
13176         delegates. Fixes #351520.
13177
13178         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
13179         contains defined memory.
13180         
13181         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
13182
13183         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
13184         
13185         * sgen-gc.c (check_consistency): New helper function to do a consistency check
13186         of the GC data structures.
13187
13188         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
13189
13190         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
13191         
13192         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
13193         barrier.
13194         (mono_array_clone_in_domain): Ditto.
13195         (mono_array_clone_in_domain): Ditto.
13196
13197         * threads.c (start_wrapper): Register the thread start argument as a GC root.
13198         (cache_culture): Use a write barrier.
13199
13200         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
13201         (ves_icall_get_property_info): Ditto.
13202
13203         * object.h (MONO_STRUCT_SETREF): New macro.
13204
13205         * class-internals.h (MonoStats): Add some GC statistics.
13206
13207         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
13208
13209 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
13210
13211         * exception.c (mono_exception_from_name_two_strings):
13212         Break from loop after method is found.
13213
13214 2008-01-04  Dick Porter  <dick@ximian.com>
13215
13216         * process.c (process_module_string_read): Rename variable to
13217         reflect correct usage, after fixing bug 345972.
13218
13219 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
13220
13221         * verify.c (mono_type_create_fnptr_from_mono_method): 
13222         created a MonoType function pointer instance to be used during
13223         verification. The verifier releases this memory at end.
13224
13225         * verify.c (mono_method_is_constructor): extracted repeated
13226         checks for constructor into a single class.
13227
13228         * verify.c (do_push_field): use new extracted method
13229         for constructor check.
13230
13231         * verify.c (do_newobj): same.
13232
13233         * verify.c (do_ldftn): renamed to do_load_function_ptr
13234         and make it verify ldvirtftn too.
13235
13236         * verify.c (mono_method_verify: proper verification
13237         of ldvirtftn. release created MonoMethod instances.
13238
13239 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13240
13241         * verify.c (token_bounds_check): added.
13242
13243         * verify.c (do_ldftn): added.
13244
13245         * verify.c (mono_method_verify): proper verificartion of ldftn.
13246
13247 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13248
13249         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
13250         than the table row count. It's the resposibility of the caller to
13251         make the bounds check and raise the correct error.
13252
13253         * metadata.c (mono_metadata_decode_row_col): Same.
13254
13255         * loader.c (mono_get_method_from_token): perform bounds check
13256         on token for methoddef table.
13257
13258 2007-12-29  Miguel de Icaza  <miguel@novell.com>
13259
13260         * icall.c
13261         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
13262         assert into a negative result, the managed code already coped with
13263         that.
13264
13265         Some folks on Windows reported this error. 
13266
13267 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
13268
13269         * appdomain.c: Bump corlib version.
13270         * icall.c:
13271         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
13272         CultureInfo.CreateCulture to create CultureInfo for name.
13273         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
13274         create CultureInfo for name. Fixes bug #347174.
13275
13276 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13277
13278         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
13279         flags.
13280
13281         * verify.c (is_valid_branch_instruction): allow branching to the
13282         first instruction of the protected block.
13283
13284         * verify.c (is_valid_cmp_branch_instruction): same.
13285
13286         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
13287         avoid double initialization.
13288
13289         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
13290         detect which cases the eval stack should just be copied.
13291
13292         * verify.c (mono_method_verify): check if the eval stack
13293         is empty when entering a protected block.
13294
13295 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13296
13297         * verify.c: added is_clause_in_range, is_clause_inside_range,
13298         is_clause_nested and verify_clause_relationship. They perform
13299         the verifications stated in P1 12.4.2.7.
13300
13301         * verify.c (mono_method_verify): remove some unused variables,
13302         add the new exception clause checks, add instruction border
13303         checks for protected block start/end, improved some error 
13304         messages and fixed a bug in the way invalid instruction access
13305         is detected.
13306
13307 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
13308
13309         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
13310         from GC 7.0 if available.
13311
13312         * object.c: Remove an unused define.
13313         
13314         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
13315
13316         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
13317
13318         * null-gc.c (mono_gc_make_descr_for_array): Implement.
13319
13320         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
13321
13322         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
13323         to take the same arguments as the other make_descr functions.
13324
13325         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
13326
13327         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
13328         directly.
13329
13330         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
13331         mini.c.
13332
13333         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
13334         call to boehm-gc.c.
13335
13336         * boehm-gc.c (mono_gc_register_root): Fix a warning.
13337
13338         * null-gc.c (mono_gc_register_root): Fix a warning.
13339
13340         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
13341
13342         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
13343         (mono_gc_base_init): Call GC_init ().
13344
13345         * null-gc.c: Define mono_gc_register_root () as a no-op.
13346
13347         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
13348
13349 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
13350
13351         * verify.c: add prototype for merge_stacks at top
13352
13353         * verify.c (do_switch): added.
13354
13355         * verify.c (merge_stacks): on some cases the stack merging
13356         was not happening properly. Unequal stack sizes at merge
13357         points should be invalid.
13358
13359         * verify.c (mono_method_verify): added more debug info on stack state.
13360         verify switch properly.
13361
13362 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
13363
13364         * method-builder.h: New file, moved the mono_mb_ declarations here from 
13365         marshal.h.
13366
13367         * boehm-gc.c marshal.c: Include method-builder.h.
13368
13369         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
13370
13371         * marshal.c: Remove some code which is now in method-builder.c.
13372
13373 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
13374
13375         * method-builder.c: New file, extraction of the method builder functionality 
13376         from marshal.c.
13377
13378         * marshal.c: Move the mb functions into method-builder.c.
13379
13380         * marshal.h marshal.c: Export some mono_mb_... functions.
13381
13382         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
13383
13384         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
13385         the caller.
13386
13387         * class.c (mono_class_get_full): Check the token type in the dynamic case.
13388
13389         * loader.c (mono_field_from_token): Ditto.      
13390
13391         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
13392         type as well.
13393         
13394         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
13395         Fixes #342565.
13396
13397         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
13398         a helper function for setting it.
13399
13400         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
13401
13402         
13403         * assembly.c: Significally simplify code now that referenced assemblies are 
13404         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
13405
13406         * threads.h: Don't include  the internal threads-types.h header file. Fixes
13407         #349952.
13408
13409 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
13410
13411         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
13412         instructions that were target of branches or are at protected block boundaries.
13413
13414         * verify.c (in_same_block): handle filter clauses.
13415
13416         * verify.c (is_valid_branch_instruction): added. checks the target of
13417         instructions br or brtrue/false.
13418
13419         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
13420         binary branch instructions such as beq and bge.
13421
13422         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
13423         and made it pin the instruction as been part of the exception block.
13424
13425         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
13426         of in_same_block.
13427
13428         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
13429         of in_same_block.
13430
13431         * verify.c (do_ret): ret from a protected block is unverifiable and
13432         not invalid.
13433
13434         * verify.c (do_static_branch): verify br and br.s instructions.
13435
13436         * verify.c (merge_stacks): add extra param to support detection
13437         of branches in the middle of instructions.
13438         
13439         * verify.c (mono_method_verify): verify branches and exception blocks
13440         that target the middle of instructions. Proper verification of br and br.s.
13441
13442 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
13443
13444         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
13445         skip_visibility field.
13446         (reflection_methodbuilder_from_dynamic_method): Ditto.
13447
13448         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
13449         registrations. Fixes #348193.
13450
13451         * threads.h: Move the internal mono_thread_get_pending_exception () to
13452         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
13453
13454 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
13455
13456         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
13457         icall registration. Fixes #348193.
13458
13459         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
13460         for corlib classes into object. Fixes #349621.
13461
13462 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
13463
13464         * icall.c (property_accessor_nonpublic): new function to determine
13465         whether an accessor allows a property to be considered non-public.
13466         Returns false for private accessor(s) from parent class, and internal
13467         accessor(s) from parent on 2.0 profile (and higher).
13468         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
13469         to determine whether property should be included if NonPublic flag
13470         is set. Fixes bug #349078.
13471
13472 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
13473
13474         * verify.c (init_stack_with_value): added.
13475
13476         * verify.c (mono_method_verify): extracted common
13477         code for exception initialization into init_stack_with_value.
13478
13479         * verify.c (mono_method_verify): initialize the exception
13480         for handler clauses as well.
13481
13482         * verify.c (mono_method_verify): fix the exception clause
13483         ordering rules, it should use handler end offset and not
13484         start offset.
13485
13486 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
13487
13488         * rawbuffer.c: remove useless warning.
13489
13490 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
13491
13492         * threads.h, threads-types.h: move functions to the correct header
13493         (fixes bug#349952).
13494
13495 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13496
13497         * verify.c (mono_method_verify): proper verification
13498         of exception handling clauses ranges and fallthru in
13499         and out of protected blocks.
13500
13501 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13502
13503         * verify.c (mono_method_verify): fixed compilation issue.
13504
13505 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13506
13507         * verify.c (mono_method_verify): a printf slipped in, changed
13508         to use verifier debug macro.
13509
13510 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
13511
13512         * verify.c (is_correct_leave): check for filter clauses.
13513
13514         * verify.c (do_filter): added.
13515
13516         * verify.c (mono_method_verify): property verification of leave.
13517
13518
13519 2007-12-18  Mark Probst  <mark.probst@gmail.com>
13520
13521         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
13522         Win32 build, until we figure out how to do the proper thing on
13523         Win32.
13524
13525 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
13526
13527         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
13528         by the previous patch.
13529         
13530         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
13531         the assembly resolve handler for refonly assemblies.
13532
13533 2007-12-17  Mark Probst  <mark.probst@gmail.com>
13534
13535         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
13536         Make sure only one thread is allowed to commence shutdown, and
13537         don't allow new threads to be started once shutdown is in
13538         progress.
13539
13540 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
13541
13542         * verify.c (is_correct_endfilter): added.
13543
13544         * verify.c (is_unverifiable_endfilter): added.
13545
13546         * verify.c (do_endfilter): added.
13547
13548         * verify.c (mono_method_verify): property verification of endfilter
13549         and fixed a corner case or endfinally.
13550
13551 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
13552
13553         * verify.h: new flags to support fail fast of unverifiable code and
13554         do non-strict verification. Non-strict verification is required to
13555         have MS runtime compatibility. There are a huge amount of unverifiable
13556         code that it accepts as verifiable. The strict mode verifies the code
13557         as the specs says.
13558         Non-strict mode will be required in cases where code needs to be
13559         accepted as verifiable but fails under strict mode.
13560
13561         * pedump.c: added support to fail fast and non-strict verification.
13562
13563         * verify.c: added support for both fail fast and non-strict verification.
13564
13565 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
13566
13567         * verify.c (is_correct_endfinally): added.
13568
13569         * verify.c (mono_method_verify): property verification of endfinally.
13570
13571 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13572
13573         * verify.c (in_any_block): check for filter clauses.
13574
13575         * verify.c (is_correct_rethrow): added.
13576
13577         * verify.c (mono_method_verify): property verification of rethrow.
13578
13579         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
13580
13581 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13582
13583         * verify.c (do_throw): added.
13584
13585         * verify.c (mono_method_verify): property verification of throw
13586
13587 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
13588
13589         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
13590         assemblies. Fixes #346425.
13591
13592 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
13593
13594         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
13595         FieldBuilders.
13596
13597         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
13598
13599         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
13600         prevent asserts when this is called with a token which might not be valid.
13601
13602         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
13603         lookup_dynamic_token_class with valid_token == FALSE.
13604
13605         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
13606
13607         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
13608
13609         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13610         
13611 2007-12-10  Mark Probst  <mark.probst@gmail.com>
13612
13613         * gc.c: Don't delay threadpool thread finalization unless Mono is
13614         shutting down.
13615
13616 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13617
13618         * threads.c: turn an assert into a non-fatal warning.
13619
13620 2007-12-09  Robert Jordan  <robertj@gmx.net>
13621
13622         * icall.c (GetVirtualMethod): Add missing argument validation.
13623
13624 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13625
13626         * verify.c (do_cast): added.
13627
13628         * verify.c (mono_method_verify): property verification of castclass and isinst.
13629
13630
13631 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13632
13633         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
13634
13635         * verify.c (do_stelem): added.
13636
13637         * verify.c (mono_method_verify): property verification of stelem.X.
13638
13639 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13640
13641         * class.c, class-internals.h: Introduce an environment variable
13642         (MONO_GENERIC_SHARING) through which the extent of generic code
13643         sharing can be controlled (share all classes, share only corlib
13644         classes, or share nothing).
13645
13646         * object.c: Only create runtime generic context for classes for
13647         which sharing is enabled.
13648
13649 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13650
13651         * verify.c (do_ldelem): refactor it to work with ldelem.any.
13652
13653         * verify.c (mono_method_verify): property verification of ldelem.any.
13654
13655 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13656
13657         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
13658         added ldelem.X opcodes.
13659
13660         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
13661
13662         * verify.c: proper verification of ldelem.X 
13663
13664 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
13665
13666         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
13667
13668 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13669
13670         * verify.c (mono_method_verify): null literal requires special handling,
13671         the value pushed on stack need to be flagged as so.
13672
13673         * verify.c (do_ldelema): Verify ldelema properly.
13674
13675 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13676
13677         * verify.c: Verify ldlen properly.
13678
13679 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
13680
13681         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
13682         to the target object's type. Fixes #346160.
13683
13684 2007-12-05  Dick Porter  <dick@ximian.com>
13685
13686         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
13687         Solaris needs the same workaround as BSD-derived systems.  Fixes
13688         bug 323524, patch by Burkhard Linke
13689         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
13690
13691 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
13692
13693         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
13694         handle to use when error dialog is shown; otherwise, update mask
13695         to show no error dialog when an error occurs.
13696
13697 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
13698
13699         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
13700
13701         * class.c (mono_class_get_field_default_value): New helper function to initialize
13702         field->def_type and field->data.
13703
13704 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
13705
13706         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
13707         the general one.
13708
13709         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
13710
13711         * marshal.c: Avoid depending on delegate->method_info being set.
13712
13713         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
13714         
13715         * object.c (mono_delegate_ctor): Set delegate->method.
13716
13717         * object-internals.h (struct _MonoDelegate): Add 'method' field.
13718
13719         * appdomain.c: Bump corlib version.
13720
13721 2007-11-27  Raja R Harinath  <harinath@gmail.com>
13722
13723         * metadata.c (mono_generic_inst_equal_full): Short-circuit
13724         equality check if we're comparing canonicalized MonoGenericInsts.
13725
13726 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
13727
13728         * class.c (generic_array_methods): Call mono_class_setup_methods () before
13729         accessing class->methods.
13730
13731 2007-11-22  Dick Porter  <dick@ximian.com>
13732
13733         * threads.c: Ensure that the synch_cs is set before trying to use
13734         it.
13735
13736 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
13737
13738         * profiler.c: r89126 broke the statistial profiler, unbreak.
13739
13740 2007-11-22  Martin Baulig  <martin@ximian.com>
13741
13742         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
13743
13744         * mono-debug.c
13745         (mono_debug_debugger_version): Bump to 3.
13746         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
13747         -> mono_debugger_class_initialized().
13748
13749         * mono-debug-debugger.c
13750         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
13751
13752         * class.c
13753         (mono_debugger_start_class_init_func): Removed.
13754         (mono_debugger_class_loaded_methods_func): Added.
13755         (mono_class_setup_methods): Call it here.
13756
13757 2007-11-22  Martin Baulig  <martin@ximian.com>
13758
13759         * mono-debug.c
13760         (mono_debug_add_delegate_trampoline): New public method.
13761         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
13762
13763         * mono-debug.h
13764         (MonoSymbolTable): Added `global_data_table'.
13765         (MonoDebuggerTypeKind): Removed.
13766
13767 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
13768
13769         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
13770         these methods.
13771
13772         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13773         
13774 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
13775
13776         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
13777
13778 2007-11-20  Martin Baulig  <martin@ximian.com>
13779
13780         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
13781
13782         * mono-debug-debugger.c
13783         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
13784         (mono_debugger_remove_breakpoint): Likewise.
13785         (mono_debugger_check_breakpoints): Likewise.
13786         (mono_debugger_register_class_init_callback): New public method.
13787         (mono_debugger_remove_class_init_callback): Likewise.
13788         (mono_debugger_add_type): Likewise.
13789
13790         * mono-debug-debugger.h
13791         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
13792
13793 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
13794
13795         * class.c: more interface implementations needed for the
13796         array enumerator (fixes bug #341112).
13797
13798 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
13799
13800         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
13801         fix ParamName of ArgumentNullExceptions.
13802
13803 2007-11-17  Miguel de Icaza  <miguel@novell.com>
13804
13805         * reflection.c (mono_reflection_encode_sighelper): Generate the
13806         modopts and modreqs.   I have a useless test that crashes monodis,
13807         but that shows the code working.
13808
13809 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
13810
13811         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
13812         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
13813
13814 2007-11-15  Dick Porter  <dick@ximian.com>
13815
13816         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
13817         When joining a thread, it's the thread that's calling Join that
13818         gets WaitSleepJoin state not the target.  Fixes the standalone
13819         test case in bug 334740, and hopefully the whole bug too.
13820
13821 2007-11-15  Dick Porter  <dick@ximian.com>
13822
13823         * process.c: Read file version info from the files pointed at by
13824         process modules, not the current process.  Fixes bug 315969.
13825
13826         Use windows typedef names in some places to fix warnings on the
13827         windows build.
13828
13829 2007-11-15  Mark Probst  <mark.probst@gmail.com>
13830
13831         * image.c, metadata-internals.h: Added a generic_class_cache hash
13832         to MonoImage for looking up generic classes when sharing generics.
13833
13834 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
13835
13836         * sgen-gc.c: warning cleanups.
13837
13838 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
13839
13840         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
13841         inherited properties.
13842
13843 2007-11-14  Mark Probst  <mark.probst@gmail.com>
13844
13845         * object.c, class-internals.h: Added more information to the
13846         runtime generic context.
13847
13848 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
13849
13850         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
13851         instead of just the target method. Generalize the abstract method handling to
13852         handle any non-static method.
13853
13854         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13855         mono_marshal_get_delegate_invoke () signature change.
13856
13857 2007-11-13  Mark Probst  <mark.probst@gmail.com>
13858
13859         * class.c, class-internals.h: Made
13860         mono_type_get_basic_type_from_generic () public.  Fixed member
13861         access check for shared generics.
13862
13863         * loader.c: Don't insert field into field cache if it's part of a
13864         non-inflated generic class.
13865
13866         * domain.c, domain-internals.h: The generic sharing context is now
13867         part of the jit info data structure.  Added two accessor
13868         functions.
13869
13870 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
13871
13872         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
13873         the array Get/Set/Address methods, since the JIT inlines them.
13874
13875         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
13876
13877         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
13878         (mono_image_init): Initialize runtime_invoke_direct_cache.      
13879
13880         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13881         mono_marshal_get_delegate_invoke signature change.
13882
13883         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
13884         an additional argument. Add support for invoking abstract methods.
13885
13886         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
13887
13888         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
13889
13890 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13891
13892         * class.c: Do field layout for open generic classes as well.
13893
13894 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13895
13896         * gc.c, gc-internal.h: Don't finalize threadpool threads with
13897         other objects, because the threadpool is still around.  Put them
13898         in a list instead and after finalizing all other objects in the
13899         root domain shut down the thread pool and then finalize the
13900         threads.  Fixes bug #337383.
13901
13902         * threads.c, thread-types.h: New mono_thread_create_internal()
13903         function for marking a thread with the threadpool flag before it
13904         started.  Set synch_cs to NULL after freeing it.
13905
13906         * threadpool.c: Mark threadpool threads before they start.
13907
13908 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
13909
13910         * reflection.h, reflection.c: don't export random functions
13911         and lazy load dbnull and missing objects.
13912
13913 2007-11-07  Jonathan Chambers <joncham@gmail.com>
13914
13915         * class.c: Initialize COM types if COM interfaces
13916         are present (not just COM classes).
13917         
13918         Code is contributed under MIT/X11 license.
13919
13920 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13921         * reflection.c:
13922         create_dynamic_mono_image: hook module profiler events (dynamic case).
13923         mono_image_basic_init: hook assembly profiler events (dynamic case).
13924
13925 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13926         * profiler.c:
13927         simple_appdomain_unload: completely terminate the profiler
13928         instead of only processing the statistical samples.
13929         simple_shutdown: make sure this is really called exactly once,
13930         even in multithreaded applications, and always listen to
13931         appdomain events.
13932         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
13933         here, the "[un]load" functions will do it.
13934         Fixes bugs #333791 and #325261.
13935
13936 2007-11-07  Geoff Norton  <gnorton@novell.com>
13937
13938         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
13939         rather than depend on __APPLE__.
13940
13941 2007-11-07  Mark Probst  <mark.probst@gmail.com>
13942
13943         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
13944
13945 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
13946
13947         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
13948         UTF16 MonoString. Fix the crash from bug #335488
13949
13950 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
13951
13952         * marshal.c: Correct (for non-Win32 OS) length != size in 
13953         mono_string_from_bstr. Fix #339530.
13954
13955 2007-11-06  Geoff Norton  <gnorton@novell.com>
13956
13957         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
13958         to succeed
13959
13960 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
13961
13962         * process.c: Added run-time GetProcessId API detection for Windows.
13963
13964 2007-11-04  Miguel de Icaza  <miguel@novell.com>
13965
13966         * reflection.c  (mono_param_get_objects): If a parameter has the
13967         attribute [System.Runtime.InteropServices.Optional] we should
13968         set the DefaultValue of the ParameterInfo to be
13969         System.Reflection.Missing instead of DBNull.
13970
13971         See bug #339013.
13972
13973         (mono_get_reflection_missing_object): New method,
13974         returns the System.Reflection.Missing.Value singleton instance.
13975
13976 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
13977
13978         * culture-info-table.h : regenerated.
13979
13980 2007-11-02  Jonathan Chambers <joncham@gmail.com>
13981
13982         * icall.c: Use GetEnvironmentStrings on windows
13983         so we are using the same environment block as 
13984         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
13985         #333740.
13986         
13987         Code is contributed under MIT/X11 license.
13988
13989 2007-10-31  Martin Baulig  <martin@ximian.com>
13990
13991         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
13992
13993         * mono-debug-debugger.h
13994         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
13995
13996 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
13997
13998         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
13999         classes.
14000
14001 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
14002
14003         * culture-info-table.h : regenerated.
14004
14005 2007-10-30  Robert Jordan  <robertj@gmx.net>
14006
14007         * icall-def.h, icall.c:
14008         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
14009
14010         Code is contributed under MIT/X11 license.
14011
14012 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14013
14014         * class.c (mono_class_setup_vtable): Find the inflated methods in the
14015         inflated class instead of inflating them again.
14016         
14017         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
14018         dynamic case.
14019
14020         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
14021         Call setup_supertypes () after klass->parent is set.
14022         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
14023
14024         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
14025         for inflated instances of not yet created dynamic generic classes.
14026         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
14027         times from inflated_method.
14028         (methodbuilder_to_mono_method): Ditto.
14029
14030 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14031
14032         * gc.c: code cleanup and removed old untested option of not creating the
14033         finalizer thread.
14034
14035 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14036
14037         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
14038         creating a jump trampoline for dynamic methods.
14039
14040 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
14041
14042         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
14043         generic TypeBuilders when called from another method of the same type (bug #335131).
14044
14045
14046 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
14047
14048         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
14049         doesn't seem to work perfectly.
14050         
14051         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
14052         called multiple times.
14053         (methodbuilder_to_mono_method): Ditto.
14054         (resolve_object): Inflate FieldBuilder's.
14055
14056 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14057
14058         * string-icalls.c, string-icalls.h, appdomain.c: patch from
14059         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
14060         RemoveEmptyEntries in the string.Split implementation (bug #322375).
14061
14062 2007-10-26  Dick Porter  <dick@ximian.com>
14063
14064         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
14065         Thread initialisation changes
14066
14067 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
14068
14069         * verify.c: fix compatibility check between arrays and System.Array
14070
14071 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
14072
14073         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
14074         too. Fixes #336999.
14075
14076 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
14077
14078         * object.c (mono_value_box): Use typed allocation here.
14079
14080 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
14081
14082         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
14083         trampoline instead of compiling the method right away.
14084
14085         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
14086
14087 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
14088
14089         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
14090         related fields for dynamic classes. Fixes #334493.
14091
14092 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
14093
14094         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
14095         
14096         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
14097
14098         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
14099         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
14100
14101         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
14102
14103         * reflection.c (create_generic_typespec): Initialize klass->generic_container
14104         if needed.
14105         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
14106
14107 2007-10-18  Jonathan Chambers <joncham@gmail.com>
14108
14109         * marshal.c: Use correct key when removing item
14110         from ccw_hash.
14111         
14112         Code is contributed under MIT/X11 license.
14113
14114 2007-10-17  William Holmes  <billholmes54@gmail.com>
14115
14116         *marshal.c: Adding a case to marshal booleans to U1
14117
14118         Code is contributed under MIT/X11 license.
14119
14120 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
14121
14122         * class.c (mono_class_from_name): Search the modules compromising dynamic
14123         assemblies. Fixes #331601.
14124
14125 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
14126
14127         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
14128         exception if the type name contains an assembly component. Fixes #334203.
14129
14130         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
14131         modules inside dynamic assemblies. Fixes #334200.
14132         
14133         * reflection.c: Set image->public_key and image->public_key_length;
14134
14135         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
14136         fields.
14137
14138         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
14139         
14140 2007-10-16  Mark Probst  <mark.probst@gmail.com>
14141
14142         * metadata.c: Implemented correct comparing of generic classes.
14143         An inflated generic class can be equal to a non-inflated one if it
14144         is inflated with generic type variables as type arguments.  Fixes
14145         bug #333798.
14146
14147 2007-10-15  Dick Porter  <dick@ximian.com>
14148
14149         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
14150         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
14151         81646.
14152
14153         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
14154         instead of a monitor lock.  This means that monitor_try_enter and
14155         co can set the thread state safely.
14156         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
14157         thread_interrupt_requested, so interrupt actually works.
14158
14159         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
14160         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
14161         state accessor function
14162
14163 2007-10-15  Martin Baulig  <martin@ximian.com>
14164
14165         * mono-debug.h
14166         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
14167         the debugger with the current runtime.
14168
14169 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
14170
14171         * object.c, object-internals.h: added the ability to set a single
14172         trampoline for all the slots in a vtable.
14173
14174 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14175
14176         * marshal.c: deal with a possible race condition during multicast
14177         delegate invocation.
14178
14179 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14180
14181         * class.c: ensure value type methods don't have the synchronized
14182         flag set.
14183
14184 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
14185
14186         * string-icalls.c, string-icalls.h: reverted unapproved patch that
14187         breaks the build.
14188
14189 2007-10-11  Joel Reed  <joelwreed@comcast.com>
14190
14191         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
14192         to take an options parameter so that empty entries can be removed during
14193         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
14194
14195 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14196
14197         * marshal.c: make sure we don't store the signature from a dynamic
14198         method into the runtime invoke cache (bug #327189).
14199
14200 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14201
14202         * marshal.c: make sure the wrapper methods are properly initialized.
14203
14204 2007-10-11  Mark Probst  <mark.probst@gmail.com>
14205
14206         * metadata.c, metadata-internals.h: Generalized
14207         mono_type_stack_size() to mono_type_stack_size_internal() which
14208         takes an additional argument specifying whether it allows open
14209         types.
14210
14211 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
14212
14213         * verify.c (do_invoke_method): handle typedbyref params
14214         correctly and check for unverifiable return values.
14215
14216         * verify.c (do_newobj): fix a warning.
14217
14218 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14219
14220         * verify.c: don't tread typedbyref as allways unverifable,
14221         so uses, like (ld/st)loc.0 are valid. verify for the cases
14222         that it matters, like boxing related operations.
14223
14224 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14225
14226         * verify.c: add verification of the newobj opcode. verification
14227         of delegate instantation still missing due ldftn and virldftn not
14228         pushing the function type on stack
14229
14230 2007-10-08  Mark Probst  <mark.probst@gmail.com>
14231
14232         * class-internals.h: Runtime generic context data structure
14233         definition.
14234
14235         * object.c: Initialization of runtime generic context at runtime
14236         vtable creation time.
14237
14238 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
14239         * class.c (mono_class_create_from_typedef,
14240         mono_class_from_generic_parameter, mono_ptr_class_get,
14241         mono_fnptr_class_get, mono_bounded_array_class_get)
14242         * domain.c (mono_domain_create, mono_domain_free)
14243         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
14244         * image.c (do_mono_image_load, mono_image_close):
14245         Hooked up load-unload profiler events.
14246
14247 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
14248
14249         * domain.c: track statistics about the actual amount of native code
14250         allocated.
14251
14252 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14253
14254         * class.c: the valuetype enumerators don't have the additional
14255         supertypes interfaces.
14256
14257 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14258
14259         * class.c: need more interfaces setup for the IEnumerator<T>
14260         object created for arrays (tests/ienumerator-interfaces.2.cs).
14261
14262 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
14263
14264         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
14265
14266 2007-10-05  Alp Toker  <alp@atoker.com>
14267
14268         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14269         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14270         #315863.
14271
14272 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14273
14274         * verify.c (verify_type_compatibility_full): verification of
14275         compatibility improved, validates correctly non-strict checks between
14276         native int and I4 types different than (unsigned)int32.
14277
14278         * verify.c (do_store_indirect): added, do all verification of
14279         ldind.X opcodes. 
14280
14281         * verify.c (get_load_indirect_mono_type): renamed to
14282         get_indirect_op_mono_type, as it now returns the MonoType for 
14283         ldind.X and stind.X opcodes.
14284
14285 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14286
14287         * reflection.c: Fix the encoding of generic type definition for
14288         TypeBuilders.
14289
14290         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
14291         mono_image_typedef_or_ref but allows to specify if typespec lookups should
14292         be made. Typespec check is done prior to typeref cache lookup.
14293
14294         * reflection.c (mono_image_typedef_or_ref): now just delegate to
14295         mono_image_typedef_or_ref_full.
14296
14297         * reflection.c (encode_generic_class): encode the generic class
14298         directly instead of calling encode_type.
14299
14300         * reflection.c (encode_type): encode the generic type definition
14301         MonoClass as a generic instantiation.
14302
14303         * reflection.c (create_typespec): cache typespec tokens in
14304         the assembly->typespec cache. Don't create typespec for a generic
14305         instance MonoClass. Create typespec for the generic type defintion.
14306
14307         * reflection.c (create_generic_typespec): encode the generic
14308         class directly instead of calling encode_type.
14309
14310         * reflection.c (mono_image_create_token): encode the generic
14311         type definition not using a typespec for MonoType instances.
14312
14313
14314 2007-10-04  Raja R Harinath  <rharinath@novell.com>
14315
14316         Fix #328812
14317         * class.c (mono_image_init_name_cache): Don't return nested
14318         'protected internal' classes.
14319         (mono_class_from_name_case): Likewise.
14320
14321 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
14322
14323         * icall-def.h, icall.c : get_bundled_machine_config() is now the
14324           common function used by both DefaultConfig in System.dll and
14325           InternalConfigurationHost in System.Configuration.dll.
14326
14327 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14328
14329         * class.c: automatically add to vectors only a few essential explicit
14330         generic interfaces. The rest of the interfaces that arrays should
14331         provide are currently implicitly added (but still not lazily, see the
14332         design in the discussion of bug#325495 for the details of what is
14333         needed for that). Additionally, implicit interfaces are assigned the
14334         same vtable slot as the explicit interfaces (as they are compatible):
14335         this enables huge memory savings since we don't need to instantiate
14336         as many memthods and as large vtables anymore. Also, Since
14337         GetEnumerator<T> returns an instance of a type that is required to
14338         support a similarly large set of interfaces as arrays, we add
14339         implicit interfaces and interface offset sharing support to those
14340         types, too. This change adds all the required interfaces so that
14341         the anonarray.cs test case in the bug report works (we don't add
14342         all the interfaces to arrays of arrays 3-level deep and more because
14343         of the memory requirements explained in the bug and since they are much
14344         less common: the lazy-loading support will enabled them to work, too).
14345
14346 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14347
14348         * verify.c (merge_stacks): major clean up, all type compatibility
14349         checks are done by verify_type_compatibility. This fix my earlier lack
14350         of understanding of the CLR type system and merge_stacks no longer looks
14351         scary.
14352
14353         * verify.c: fixed some bad spelling.
14354
14355 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14356
14357         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
14358         a given stack slock.
14359         
14360         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
14361         verify_type_compatibility_full. This removed a near indentical function and fixed
14362         handling of Int32 and IntPtr across all opcodes.
14363
14364 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14365
14366         * class.c: only vectors have the additional generic interfaces.
14367
14368 2007-10-01  Jonathan Chambers <joncham@gmail.com>
14369
14370         * mono-config.c: Use g_strcasecmp instead of
14371         strcasecmp like everywhere else to fix
14372         compilation with MSVC.
14373         
14374         Code is contributed under MIT/X11 license.
14375
14376 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14377
14378         * object.c, object-internals.h: refactored the IMT code to enable
14379         building a single slot at a time and lazily creating the IMT trampolines
14380         and thunks.
14381
14382 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
14383
14384         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
14385
14386         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
14387         Fixes #328501.
14388         
14389 2007-09-29  Raja R Harinath  <harinath@gmail.com>
14390
14391         * loader.c (method_from_methodspec): Rearrange to avoid
14392         un-necessary exposition.  Don't assert out if the method's
14393         declaring type is a generic type definition.
14394
14395 2007-09-28  Martin Baulig  <martin@ximian.com>
14396
14397         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
14398
14399 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
14400
14401         * class-internals.h: optimize field layout of MonoClass to
14402         requires less cachelines at runtime and save a few bytes on 64 bit
14403         systems.
14404
14405 2007-09-28  Jb Evain  <jbevain@novell.com>
14406
14407         * reflection.c: when encoding type names in custom attributes,
14408         if the type is a closed generic type, its generic arguments
14409         have to be serialized as AssemblyQualifiedName, so that when
14410         they are deserialized, it's possible to re-create them properly.
14411         Fixes #329450.
14412
14413
14414 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14415
14416         * object.c, class-internals.h: added delegate-creation counter.
14417
14418 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14419
14420         * class.c: cleanup of the code that synthetizes interfaces for
14421         arrays in 2.0: saves quit a bit of corlib mempool memory.
14422         Code to fix bug #325495 ifdeffed out for now until the issues
14423         with memory usage and O(n^2) behaviour are fixed.
14424
14425 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14426
14427         * marshal.c: when possible, do not duplicate the name of the methods
14428         in the method builder and in the generated MonoMethod.
14429
14430 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14431         * verify.c: added support for type checking ldind_* opcodes.
14432
14433 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14434
14435         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
14436         which is used to distinguish the fully open instantiation of a TypeBuilder
14437         with the rest. This temporary hack is required to restore the property that
14438         the fully open instantiation is the same type of the generic type definition.
14439
14440         * class-internals.h (mono_generic_class_is_generic_type_definition):
14441         new function as part of the internal API.
14442
14443         * class.c (inflate_generic_type): return NULL when the generic inst is
14444         fully open. The fully open generic type is now the same as the generic type
14445         definition for non TypeBuilder types.
14446
14447         * class.c (mono_generic_class_get_class): removed assert since it is
14448         no longer valid, gklass->cached_class can point to the generic type definition.
14449
14450         * class.c (mono_generic_class_is_generic_type_definition): new.
14451
14452         * metadata.c (mono_generic_class_hash): added is_tb_open field
14453         to the hash calculation.
14454
14455         * metadata.c (free_generic_class): if the generic class is associated
14456         with the generic type definition, its field will come from the mempool and
14457         must not be freed.
14458
14459         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
14460         new, this function identifies the corner case of a TypeBuilder fully open
14461         instantiation.
14462
14463         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
14464         for lookup. Set gclass->cached_class to be the container class in case of
14465         the fully open instantiation of non TypeBuilder types.
14466
14467         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
14468         to compare generic classes.
14469
14470         * reflection.c (method_encode_methodspec): remove assert that
14471         no longer is valid.
14472
14473         * reflection.c (mono_reflection_generic_class_initialize): add
14474         an aditional assert to ensure the proper type is used.
14475
14476 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
14477
14478         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
14479         to enjoy it.
14480
14481 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14482
14483         * verify.c (push_arg): Fixed support for ldarga
14484         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
14485         MonoType used as first arg in case of instance calls.
14486
14487 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14488
14489         * verify.c: Support for verifying VAR and MVAR types, 
14490
14491 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
14492
14493         * icall.c (ves_icall_get_property_info): Set the reflected type of the
14494         accessors correctly.
14495
14496 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14497
14498         * threads.c: support OSX and other systems in
14499         mono_thread_get_stack_bounds (bug #328026).
14500
14501 2007-09-25  Martin Baulig  <martin@ximian.com>
14502
14503         * mono-debug.h
14504         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
14505
14506 2007-09-24  Martin Baulig  <martin@ximian.com>
14507
14508         * mono-debug.h
14509         (MonoDebugClassEntry): Moved the definition of this struct into
14510         mono-debug.c to make it private.
14511
14512         * mono-debug.c
14513         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
14514         type table per symbol file, we don't need to store the symfile id
14515         any longer.
14516
14517 2007-09-24  Martin Baulig  <martin@ximian.com>
14518
14519         Create one type table per symbol file, since a `MonoClass *' gets
14520         invalid when its image is unloaded.
14521
14522         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
14523         (MonoDebugHandle): Added `type_table'.
14524
14525 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14526
14527         * mempool.c, mempool.h: added mono_mempool_new_size () API
14528         to be able to specify a smaller initial size for the pool.
14529         Adjusted the code to slowly increase pool size before using
14530         the previous default size.
14531         * image.c: use a small initial size for image mempools.
14532
14533 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
14534
14535         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
14536         Fixes ##320990.
14537
14538         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
14539         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
14540
14541 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
14542
14543         * metadata.c (mono_type_create_from_typespec): Remove an invalid
14544         free. Fixes #327438.
14545
14546 2007-09-21  Raja R Harinath  <harinath@gmail.com>
14547
14548         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
14549         generic instantiations, etc.
14550         <MONO_TYPE_ARRAY>: Likewise.
14551
14552 2007-09-21  Martin Baulig  <martin@ximian.com>
14553
14554         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
14555         these structs were never defined.
14556         (MonoDebugHandle): Removed the `_priv' field, it was never used.
14557
14558 2007-09-21  Martin Baulig  <martin@ximian.com>
14559
14560         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
14561
14562 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
14563
14564         * image.c: removed the guid hash tables: we can get the same info
14565         without the additional memory usage hit (partially fixes also bug #327052).
14566
14567 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14568
14569         * profiler.h, profiler-private.h, profiler.c: add a new profiler
14570         event to handle unloading methods. After the event is called, the
14571         corresponding MonoMethod* must be considered invalid.
14572         * loader.c (mono_free_method): call the new mono_profiler_method_free
14573         event.
14574
14575 2007-09-20  Mark Probst  <mark.probst@gmail.com>
14576
14577         * domain-internals.h: New flag in MonoJitInfo which marks shared
14578         generic methods.  New hash table (shared_generics_hash) in
14579         MonoDomain to keep track of shared generic methods.  Prototypes
14580         for functions to register and lookup shared generic methods.
14581
14582         * domain.c: Support for registering and looking up shared generic
14583         methods via a hash table (shared_generics_hash) in MonoDomain.
14584
14585         * class-internals.h: New exception to signal failure of shared
14586         compilation of a generic method.  New counters for generics
14587         sharing in MonoStats.
14588
14589 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
14590
14591         * image.c, metadata-internals.h: don't keep a file descriptor open
14592         for loaded assemblies (bug#325988).
14593
14594 2007-09-19  Raja R Harinath  <rharinath@novell.com>
14595
14596         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
14597         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
14598         use the corresponding datatypes.
14599         (type_in_image): Update to changes.
14600         (CleanForImageUserData): Simplify.
14601         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
14602         Avoid quadratic behaviour in handling the "stolen" list by
14603         separating the filter predicate out, and by prepending the stolen
14604         items rather than appending them.
14605         (steal_ginst_in_image): Likewise.
14606         (mono_metadata_clean_for_image): Update to changes.
14607
14608 2007-09-19  Martin Baulig  <martin@ximian.com>
14609
14610         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
14611
14612 2007-09-19  Martin Baulig  <martin@ximian.com>
14613
14614         * mono-debug.c (mono_debug_cleanup): Don't call
14615         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
14616
14617 2007-09-19  Raja R Harinath  <harinath@gmail.com>
14618
14619         Fix crash on 'make run-test' in mcs/errors
14620         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
14621         Avoid more potential allocations in mono_class_from_mono_type.
14622         (ginst_in_image): Update to changes.
14623         (gclass_in_image): Rearrange slightly.
14624
14625 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14626
14627         * class.c (mono_class_init): Move the code that sets up class->methods to 
14628         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
14629
14630         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
14631         canonical instance of an inflated generic signature.
14632         (mono_type_create_from_typespec): Remove an invalid free.
14633
14634         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
14635
14636 2007-09-18  Marek Habersack  <mhabersack@novell.com>
14637
14638         * domain-internals.h: added a declaration of the
14639         mono_assembly_load_full_nosearch internal function.
14640
14641         * assembly.c (mono_assembly_load_with_partial_name): use
14642         mono_try_assembly_resolve return value properly.
14643         (mono_assembly_load_full_nosearch): copied the function body from
14644         mono_assembly_load_full, without the code to invoke assembly
14645         search hooks.
14646         (mono_assembly_load_full): calls the above new function and if the
14647         assembly is not resolved, invokes the search hooks.
14648
14649         * appdomain.c (mono_runtime_init): restore the global postload
14650         assembly search handlers.
14651
14652 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14653
14654         * class.c (mono_class_init): Make sure class->methods and class->properties
14655         are never NULL in the generics case.
14656
14657         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
14658
14659 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
14660
14661         * metadata.c (free_generic_class): Disable some code to fix the build.
14662
14663         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
14664
14665         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
14666         from the image mempool.
14667
14668         * metadata.c (free_generic_class): Free more data from the inflated class.
14669
14670         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
14671
14672         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
14673         mempool.
14674         (mono_type_create_from_typespec): Ditto.
14675
14676         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
14677         MonoImage to the caller.
14678         (mono_init_internal): Save the opened image in a global variable.
14679         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
14680
14681         * reflection.c (resolve_object): Fix a leak.
14682
14683         * metadata.c: Fix the freeing of data in the generics caches.
14684         
14685         * metadata.c (free_generic_inst): Comment this out to fix the build.
14686         (free_generic_class): Ditto.
14687
14688         * metadata.c: Free cached generic methods, instantinations and classes when
14689         they are removed from the caches.
14690         (mono_metadata_free_type): Free the type itself.
14691
14692         * class.c: Free the result of mono_class_inflate_generic_type () in a few
14693         places.
14694
14695 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14696
14697         * boehm-gc.c: restrict managed allocs to __thread supporting
14698         architectures.
14699
14700 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
14701
14702         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
14703         (mono_generic_class_get_class): Fix a leak.
14704
14705         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
14706         mono_metadata_free_type ().
14707         (mono_metadata_inflate_generic_inst): Fix a leak.
14708
14709 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14710
14711         * mono-debug.c (free_header_data): Fix a leak missed earlier.
14712
14713         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
14714         mempool.
14715
14716         * mono-debug.c (mono_debug_close_image): Fix call to 
14717         g_hash_table_remove ().
14718
14719 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14720
14721         * icall-def.h: redirect all the string ctor to the managed
14722         CreateString () methods.
14723         * string-icalls.c, string-icalls.h: removed dead code for string
14724         ctors and icalls.
14725
14726 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14727
14728         * mono-debug.c: Fix memory leaks.
14729
14730 2007-09-14  Jonathan Chambers <joncham@gmail.com>
14731
14732         * threads-types.h: Implement mono_hazard_pointer_set and 
14733         mono_hazard_pointer_clear macros using do/while(0) to fix
14734         compilation with MSVC.
14735         
14736         Code is contributed under MIT/X11 license.
14737
14738 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14739
14740         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
14741         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
14742
14743 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14744
14745         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
14746         icalls.
14747
14748 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14749
14750         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
14751         managed-code allocated as well.
14752
14753 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14754
14755         * class.c (mono_class_is_assignable_from): Add support for generic variance.
14756
14757 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14758
14759         * boehm-gc.c: fixed the build after the AOT changes.
14760
14761 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14762
14763         * wrapper-types.h: Add an ALLOC wrapper type.
14764
14765         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
14766         reference managed allocator methods.
14767
14768 2007-09-12  Marek Safar  <marek.safar@gmail.com>
14769
14770         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
14771         of Type array and not MonoType, a fix suggested by Hari.
14772         
14773 2007-09-12  Jonathan Chambers <joncham@gmail.com>
14774
14775         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
14776         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
14777         
14778         Code is contributed under MIT/X11 license.
14779
14780 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14781
14782         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
14783
14784 2007-09-12  Marek Habersack  <mhabersack@novell.com>
14785
14786         * image.c (do_mono_image_open): if assembly file fails to open and
14787         MONO_IOMAP is in effect, try to find the path in a
14788         case-insensitive way.
14789
14790         * appdomain.c (mono_runtime_init): do not install postload hooks -
14791         tests show that MS.NET doesn't use anything of that sort to
14792         trigger the AppDomain.AssemblyResolve event.
14793         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
14794         made non-static.
14795         (mono_runtime_init): init portability helpers here.
14796
14797         * assembly.c (mono_assembly_load_with_partial_name): if other   
14798         attempts fail, trigger the AppDomain.AssemblyResolve event handler
14799         to resolve the assembly.
14800
14801         * domain-internals.h: added mono_try_assembly_resolve and marked
14802         it as internal.
14803
14804 2007-09-11  Jb Evain  <jbevain@novell.com>
14805
14806         * object-internals.h (MonoReflectionDynamicMethod): add
14807         a `MonoReflectionType *owner` field. The owner is used
14808         * reflection.c:
14809         (mono_reflection_create_dynamic_method): use the owner of the dynamic
14810         method as the class declaring the dynamic method.
14811         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
14812         dynamic method to the declaring type of the methodbuilder.
14813
14814 2007-09-11  Mark Probst  <mark.probst@gmail.com>
14815
14816         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
14817         rules for calling methods via reflection.
14818
14819 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
14820
14821         * reflection.c (resolve_object): Add support for MonoGenericClass. 
14822         Inflate MonoType's.
14823
14824 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
14825
14826         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
14827         provide a managed method that does fast allocations without needing
14828         a managed->unmanaged transition. Boehm GC implementation currently
14829         enabled for ptrfree objects on sane architectures.
14830
14831 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14832
14833         * marshal.c, marshal.h: exported a couple of useful functions and
14834         added mono_mb_get_label () to easily handle backward branches.
14835
14836 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
14837
14838         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
14839
14840 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14841
14842         * loader.c (find_method): Fixed the regression introduced while
14843         fixing bug #81466.
14844
14845 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
14846
14847         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
14848         well.
14849         
14850         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
14851         icall.c reflection.c: Pass a MonoGenericContext argument to 
14852         mono_lookup_dynamic_token ().
14853
14854         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
14855         #82744.
14856         
14857 2007-09-09  Robert Jordan  <robertj@gmx.net>
14858
14859         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
14860         for generic methods.
14861
14862         * object.c (mono_object_get_virtual_method): Handle generic methods.
14863         Fixes bug #78882.
14864
14865         Code is contributed under MIT/X11 license.
14866
14867 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
14868
14869         * image.c: fix locking in mono_image_load_file_for_image ().
14870
14871 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
14872
14873         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
14874         used only as a cache: added an icall to fill it.
14875
14876 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
14877
14878         * reflection.h: exposed mono_reflection_free_type_info
14879         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
14880         since mono_reflection_bind_generic_parameters makes a copy of it.
14881         * reflection.c (free_type_info): subinfos should be freed.
14882         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
14883         made non static.
14884         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
14885         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
14886         this fixes #82695 and #81726.
14887    
14888
14889 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
14890
14891         * process.h, process.c:  added support for user profile/info in
14892           ProcessStartInfo. For now only Windows works.
14893
14894 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14895
14896         * metadata.c: consider the generic arguments when comparing
14897         signatures (bug #82614).
14898
14899 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14900
14901         * cil-coff.h, image.c: updated assembly loader to cope with the
14902         PE32+ 64 bit file format.
14903
14904 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14905
14906         * assembly.c, class.c, domain.c, loader.c: remove useless
14907         inclusion of cil-coff.h.
14908
14909 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
14910
14911         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
14912         if interface is marked with CoClassAttribute. 
14913    
14914         Code is contributed under MIT/X11 license.
14915
14916 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14917
14918         * sgen-gc.c: ensure no object from the to space is copied again or finalized
14919         if it's seen twice in major collections.
14920
14921 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14922
14923         * sgen-gc.c: big objects are not copied to the gray area, but they
14924         need to be considered for scanning, too, if they are brought alive
14925         by an object ready for finalizations or a survived one.
14926
14927 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14928
14929         * sgen-gc.c: properly account the number of disappearing links when
14930         they are nullified.
14931
14932 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14933
14934         * sgen-gc.c: share the code to scan the registered roots between the
14935         different types of collections.
14936
14937 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14938
14939         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
14940
14941 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14942
14943         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
14944         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
14945
14946 2007-08-28  Mark Probst  <mark.probst@gmail.com>
14947
14948         * security-manager.c (mono_security_manager_get_methods):
14949         LinkDemandSecurityException now has 2 arguments instead of 3.
14950
14951 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
14952
14953         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
14954         platforms which need it.
14955
14956 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14957
14958         * sgen-gc.c: unregister thread data structures with a pthread_key_t
14959         dtor.
14960
14961 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14962
14963         * threads.c: free the thread static data on thread exit.
14964
14965 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
14966
14967         * class.c: walk the hierarchy to find the generic definition for
14968         a class (fixes runtime part of bug #82498).
14969
14970 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14971
14972         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
14973         ...
14974
14975         * image.c (mono_image_close): Here. Hopefully fixes #82510.
14976
14977 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14978
14979         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
14980
14981 2007-08-24  Robert Jordan  <robertj@gmx.net>
14982
14983         * appdomain.c: don't perform the ':'->';' substitution on Win32.
14984
14985 2007-08-24  Jb Evain  <jbevain@novell.com>
14986
14987         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
14988         for byref types.
14989
14990 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14991
14992         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
14993         #82286.
14994
14995 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14996
14997         * assembly.c: Fix a warning.
14998         
14999 2007-08-23  Marek Habersack  <mhabersack@novell.com>
15000
15001         * appdomain.c: parse the <runtime> section looking for the probing
15002         element with the 'privatePath' attribute, which sets additional
15003         directories in which the runtime should look for assemblies.
15004
15005 2007-08-23  Robert Jordan  <robertj@gmx.net>
15006
15007         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
15008         Fixes #82499.
15009
15010 2007-08-23  Martin Baulig  <martin@ximian.com>
15011
15012         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
15013         _mono_debug_init_corlib() and remove it from the header file.
15014
15015 2007-08-23  Martin Baulig  <martin@ximian.com>
15016
15017         * mono-debug-debugger.c
15018         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
15019         don't notify the debugger about it.
15020
15021         * mono-debug-debugger.h
15022         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
15023
15024 2007-08-23  Robert Jordan  <robertj@gmx.net>
15025
15026         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
15027         Code is contributed under MIT/X11 license.
15028
15029 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15030
15031         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
15032
15033 2007-08-22  Martin Baulig  <martin@ximian.com>
15034
15035         * mono-debug.c: Store debugging info on a per-domain basis and
15036         free it on domain unload.  Add support for unloading symbol files.
15037
15038         * mono-debug.h
15039         (MonoDebugList): New typedef.
15040         (MonoSymbolTable):
15041         - add `data_tables and `type_table'.
15042         - replace 'symbol_files' and `num_symbol_files' with a
15043           `MonoDebugList *'.
15044         (mono_debug_data_table): Removed.
15045         (mono_debug_list_add): New public function.
15046         (mono_debug_list_remove): New public function.
15047         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
15048         (mono_debug_init_2_memory): Renamed into
15049         mono_debug_open_image_from_memory().
15050         (mono_debug_close_image): New public function.
15051         (mono_debug_domain_create): Likewise.
15052         (mono_debug_domain_unload): Likewise.
15053         (MONO_DEBUGGER_VERSION): Bump to 60.
15054
15055         * mono-debug-debugger.h
15056         (MonoDebuggerEvent):
15057         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
15058         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
15059         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
15060         - rename `THREAD_CREATED' and `THREAD_EXITED' into
15061           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
15062         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
15063           meaning.
15064         (mono_debugger_add_symbol_file): Removed.
15065         (mono_debugger_add_type): Removed.
15066         (mono_debugger_lookup_type): Removed.
15067         (mono_debugger_lookup_assembly): Removed.
15068
15069         * domain.c
15070         (mono_domain_create): Call mono_debug_domain_create().
15071         (mono_init_internal): Call mono_debug_init_corlib().
15072
15073         * assembly.c
15074         (mono_assembly_close): Call mono_debug_close_image().
15075
15076 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
15077
15078         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
15079         mmap call.
15080
15081 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15082
15083         * sgen-gc.c: ensure section->pin_queue_end is initialized
15084         correctly when non pinning objects in the section have been found.
15085
15086 2007-08-22  Marek Habersack  <mhabersack@novell.com>
15087
15088         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
15089         containing a list of directories separated by ':'. MSDN docs say
15090         the directories should be separated with ';'. Part of a bugfix for
15091         bug #81446
15092
15093 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
15094
15095         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
15096         it should MonoType and not MonoClass.
15097
15098 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
15099
15100         * culture-info-table.h : regenerated.
15101
15102 2007-08-20  William Holmes  <billholmes54@gmail.com>
15103
15104         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
15105          to call ReplaceFile Kernel32 on windows or in io-layer.
15106         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
15107         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
15108          as an internal call.
15109
15110         Code is contributed under MIT/X11 license.
15111
15112 2007-08-20  Jb Evain  <jbevain@novell.com>
15113
15114         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
15115         and MONO_EXCEPTION_FIELD_ACCESS.
15116
15117         * debug-helpers.[c|h]: new mono_field_full_name function.
15118
15119 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15120
15121         * class.c: Removed class_security_level() and moved it to
15122         security-core-clr.c.
15123
15124         * security-core-clr.c, security-core-clr.h: class_security_level()
15125         is now public and renamed to mono_security_core_clr_class_level().
15126         It also looks for security attributes in the classes a class is
15127         nested in.
15128
15129 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15130
15131         * security-core-clr.c, security-core-clr.h: CoreCLR security
15132         utility functions.
15133
15134         * Makefile.am: Added security-core-clr.[ch].
15135
15136         * security-manager.c, security-manager.h: Functions and enum for
15137         setting and getting the security mode.
15138
15139         * class.c: CoreCLR security checks.
15140
15141 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15142
15143         * icall-def.h, process.c, process.h: implemented icall to get
15144         user/system processor times.
15145
15146 2007-08-17  Mark Probst  <mark.probst@gmail.com>
15147
15148         * domain.c, threads.c, class-internals.h, domain-internals.h: New
15149         reader-lock-free jit_info_table.
15150
15151 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
15152
15153         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
15154
15155         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
15156
15157         * object-internals.h (MonoException): Add missing _data member.
15158
15159 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15160
15161         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
15162         checking that only methods with matching qname or fqname are picked
15163         from implemented interfaces.
15164
15165 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15166
15167         * verify.c (do_newarr):added, do type verification of
15168         newarr ops, push the right value on the eval stack.
15169         * verify.c (mono_method_verify): use do_newarr
15170
15171
15172 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15173
15174         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
15175         factored the common code into get_boxable_mono_type, which
15176         is now using mono_type_get_full, this fixed byref related tests.
15177
15178 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15179
15180         * class.c: added mono_type_get_full, this function has the same
15181         behavior of mono_class_get_full but the returned MonoType has
15182         all metadata of the associated token in case of a typespec token.
15183         * class.c: added mono_type_retrieve_from_typespec, used by 
15184         mono_type_get_full to retrieve the token type.
15185         * class.c (mono_class_create_from_typespec): changed to use
15186         mono_type_retrieve_from_typespec.
15187         * class.c (mono_ldtoken): changed to use mono_type_get_full
15188         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
15189         * class-internals.h: exported mono_type_get_full for internal use.
15190
15191 2007-08-16  Jb Evain  <jbevain@novell.com>
15192
15193         * domain.c (supported_runtimes): add entry for
15194         the 'moonlight' runtime version.
15195
15196 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15197
15198         * verify.c (mono_method_verify): small typo sliped in.  
15199
15200 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15201
15202         * verify.c (do_unbox_value): added, do type verification of
15203         unboxing ops
15204         * verify.c (mono_method_verify): use do_unbox_value
15205
15206
15207 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15208
15209         * verify.c (dump_stack_value): fixed typo, was printing string
15210         instead of object on stack.
15211         * verify.c (do_box_value): moved the byref check up as it leads
15212         to invalid code and should be done earlier.
15213         * verify.c: improved error messages for and ldobj
15214
15215 2007-08-15  William Holmes  <billholmes54@gmail.com>
15216
15217         * marshal.c (emit_marshal_custom): Omit the call to 
15218           marshal_native_to_managed when calling native to managed 
15219           and the argument is specified as an out argument.
15220
15221         Code is contributed under MIT/X11 license.
15222
15223 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15224
15225         * verify.c: fixed the type checks for generics, function pointers and vectors.
15226         Added type verification for ldobj and ldtoken. The verifier
15227         would segfault if header or signature of a method contained references
15228         to non-existant types.
15229
15230 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15231
15232         * marshal.c (cominterop_get_ccw): Patch from
15233         Bill Holmes to no walk up interface hierarchy. 
15234         All parent methods should be present in the interface for COM.
15235    
15236         Code is contributed under MIT/X11 license.
15237
15238 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15239
15240         * marshal.c (emit_marshal_com_interface): Patch from
15241         Bill Holmes to handle COM Interfaces as return values
15242         for native->managed calls.
15243    
15244         Code is contributed under MIT/X11 license.
15245
15246 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
15247
15248         * marshal.c (cominterop_get_idispatch_for_object): Implement
15249         for runtime callable wrappers.
15250    
15251         Code is contributed under MIT/X11 license.
15252
15253 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
15254
15255         * pedump.c (main): changed from mono_init to mono_init_from_assembly
15256         so 2.0 types are accessible
15257
15258
15259 2007-08-13  Miguel de Icaza  <miguel@novell.com>
15260
15261         * domain.c (mono_init_internal): Call mono_assembly_load_friends
15262         once we load mscorlib.   Due to the order in which we initialize,
15263         the mono_assembly_load_full routine that loads mscorlib did not
15264         load friends.   We now load it once we load the
15265         mono_defaults.internals_visible_class class. 
15266
15267         * assembly.c: Expose the mono_load_friend_assemblies method.
15268
15269 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
15270
15271         * verify.c: improved the handling of boxing, better
15272         type checking for unary ops and conversion. Fix bug
15273         regarding managed pointer compatibility checking
15274
15275 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
15276
15277         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
15278
15279         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
15280
15281 2007-08-09  Raja R Harinath  <rharinath@novell.com>
15282
15283         * reflection.c (dup_type): Remove.
15284         * class.c (dup_type): Remove.
15285         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
15286         instead of the dodgy 'dup_type'.
15287         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
15288         handle the case where 'dup_type' needed the second argument.
15289
15290 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
15291
15292         * domain.c: Fix a warning.
15293
15294 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15295
15296         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
15297         checking that methods with the same fqname are not overridden
15298         with a method from an ancestor.
15299
15300 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
15301
15302         * threads.c (free_thread_static_data_helper): Avoid a crash if
15303         thread->static_data is not yet set.
15304
15305 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
15306
15307         * marshal.c: Use correct image when emitting
15308         native wrapper for COM calls.
15309    
15310         Code is contributed under MIT/X11 license.
15311
15312 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
15313
15314         * icall-def.h, security.c, security.h :
15315           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
15316
15317 2007-08-07  Martin Baulig  <martin@ximian.com>
15318
15319         * mono-debug-debugger.h
15320         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
15321
15322         * domain.c (mono_domain_free): Call
15323         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
15324
15325 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
15326
15327         * verify.c (check_underflow, check_overflow): error message now returns IL offset
15328         * verify.c (in_same_block): code should test if either offset is inside the clauses
15329         * verify.c (mono_method_verify): push the exception into the eval stack of exception
15330         and filter blocks
15331
15332 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15333
15334         * image.c (mono_image_close): Fix a leak.
15335
15336         * object.c (mono_runtime_invoke_array): Avoid using alloca.
15337
15338         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
15339
15340 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
15341
15342         * domain.c, threads.c, threads-types.h: fix memory retention issue
15343         with thread static variables not being cleared on domain unload.
15344         Reuse thread static slots after domain unload.
15345
15346 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15347
15348         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
15349         nullable type.
15350
15351         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
15352         now done in mono_runtime_invoke_array.
15353
15354         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
15355         receiver is a nullable type.
15356
15357         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
15358         generic parameter.
15359
15360 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
15361
15362         * marshal.c: Implement COM Objects as return type for 
15363         managed->unmanaged calls. Added Release calls for COM Object
15364         out/return values in managed->unmanaged calls.
15365
15366         Code is contributed under MIT/X11 license.
15367
15368 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
15369
15370         * threads.h, threads-type.h: move the hazard pointer declarations
15371         to the private header.
15372
15373 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
15374
15375         * file-io.c, appdomain.c: memory leak fixes.
15376
15377 2007-08-02  Dick Porter  <dick@ximian.com>
15378
15379         * socket-io.c
15380         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
15381         SO_REUSEADDR setting into io-layer/sockets.c.
15382
15383 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
15384
15385         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
15386         from Object when called on a generic parameter. Fixes #82211.
15387
15388 2007-08-01  Dick Porter  <dick@ximian.com>
15389
15390         * file-io.c (convert_share): Test FileShare values bit-by-bit.
15391         Fixes bug 79250 yet again.
15392
15393 2007-07-30  Martin Baulig  <martin@ximian.com>
15394
15395         Merged the `debugger-dublin' branch.
15396
15397         * mono-debug.h
15398         (MonoDebugDataTable): New typedef.
15399         (MonoDebugMethodAddressList): New typedef.
15400         (MonoDebugWrapperData): Removed.
15401         (MonoDebugSymbolTable): Removed `current_data_table',
15402         `current_data_table_size', `current_data_table_offset'.
15403         (MonoDebugDataItemType): Moved into mono-debug.c.
15404         (MonoDebugMethodJitInfo): Remove `address'.
15405         (mono_debug_data_table): New global variable.
15406         (mono_debug_lookup_method_addresses): New public function.
15407         (mono_debug_find_method): Take a `MonoMethod *', not a
15408         `MonoDebugMethodInfo *'.
15409
15410         * mono-debug.c: Drop support for the old symbol tables.
15411
15412 2007-06-28  Martin Baulig  <martin@ximian.com>
15413
15414         * mono-debug.c (mono_debug_debugger_version): New public variable.
15415
15416 2007-07-31  William Holmes  <billholmes54@gmail.com>
15417
15418         * metadata.c Changed mono_type_create_from_typespec to not insert
15419           the type into the hash map until after
15420           do_mono_metadata_parse_type has completed.
15421         Fixes Bug #82194
15422         Code is contributed under MIT/X11 license.
15423
15424 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
15425
15426         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
15427         generic parameter. Fixes #82211.
15428
15429 2007-07-27  Jb Evain  <jbevain@novell.com>
15430
15431         * pedump.c (dump_metadata, dump_metadata_header): dump
15432         versions contained in the metadata header.
15433
15434 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15435
15436         * threads.c: register small_id_table with the GC.
15437
15438 2007-07-27  Mark Probst  <mark.probst@gmail.com>
15439
15440         * threads.c, threads.h, class-internals.h, object-internals.h:
15441         Hazard pointers, to be used by lock-free parallel algorithms.
15442
15443 2007-07-26  Dick Porter  <dick@ximian.com>
15444
15445         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
15446         routine on non-windows platforms, as I've not managed to think of
15447         a non-kludgy way of doing this.  Finishes off bug 78739.
15448
15449 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
15450
15451         * object.c: properly setup interface_bitmap in proxy vtables.
15452
15453 2007-07-25  Marek Habersack  <mhabersack@novell.com>
15454
15455         * appdomain.c (get_shadow_assembly_location): do not use TickCount
15456         to create unique shadow copy target directories, use the domain's
15457         serial number instead. Each domain gets a unique target directory
15458         that way.
15459
15460         * domain.c (mono_domain_create): added code to increment domain
15461         shadow copy serial number and cache the value in the current
15462         domain structure.
15463
15464         * domain-internals.h (struct _MonoDomain): added a new field -
15465         shadow_serial to hold the serial number used in generation of
15466         shadow-copy directories. This is to make sure that the directory
15467         name is unique for each and every domain created. We avoid a race
15468         condition with overriding assemblies already in use by other app
15469         domains.
15470
15471 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
15472
15473         * class.c (mono_bounded_array_class_get): fixed memory leak when 
15474         binding generic parameters.
15475
15476 2007-07-24  Raja R Harinath  <rharinath@novell.com>
15477
15478         * metadata.c (do_mono_metadata_parse_generic_class): Use
15479         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
15480         error.
15481
15482 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
15483
15484         * loader.c, class-internals.h, reflection.c: removed the per-method
15485         generics hashtable: we use the global one through the call of
15486         mono_class_inflate_generic_method ().
15487
15488 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15489
15490         * class.c, metadata.c, class-internals.h: introduce yet another
15491         generics global cache for inflated methods (fixes 98% of the perf
15492         issue in bug #81806).
15493
15494 2007-07-23  Raja R Harinath  <rharinath@novell.com>
15495
15496         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
15497         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
15498         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
15499         return a MonoGenericInst containing (a copy) of those types.
15500         (mono_metadata_inflate_generic_inst): Update to changes.
15501         (mono_metadata_parse_generic_inst): Likewise.
15502         (mono_get_shared_generic_inst): Likewise.
15503         * reflection.c (mono_class_bind_generic_parameters): Likewise.
15504         (mono_reflection_bind_generic_method_parameters): Likewise.
15505         * metadata-internals.h: Likewise.
15506         * icall.c (free_generic_context): Kill.
15507         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
15508
15509         * reflection.c (reflection_methodbuilder_to_mono_method): Use
15510         mono_metadata_type_dup.
15511         * marshal.c (mono_mb_create_method): Likewise.
15512
15513         * metadata.c (mono_metadata_type_dup): Rename from
15514         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
15515         MonoImage.  Handle a few more cases, esp. when no mempool is given.
15516         * marshal.c, metadata-internals.h: Update to changes.
15517
15518 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15519
15520         * class.c: fixed a small leak for array classes and removed warning.
15521
15522 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
15523
15524         * loader.c (mono_method_get_param_token): Make this work on generic methods.
15525         Return 0x8000000 for return parameters. Fixes #82161.
15526
15527 2007-07-21  Marek Habersack  <grendello@gmail.com>
15528
15529         * appdomain.c (get_shadow_assembly_location): append the current
15530         ticks value to the path. Avoids overwriting the same assemblies by
15531         several threads at the same time.
15532
15533 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15534         and Raja R Harinath  <rharinath@novell.com>
15535
15536         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15537         Simplify slightly.
15538         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
15539         property for testing if a method is a generic method definition.
15540
15541 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15542
15543         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
15544
15545 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15546
15547         * verify.c: used function from private branch, reverted to the one in class.h 
15548
15549 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15550
15551         * verify.c: a typo slipped in and the code wont compile
15552
15553 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15554
15555         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
15556         disabled box instruction as it is doing the wrong thing
15557         improved stack dump messages, now it is easier to debug type related issues
15558
15559
15560 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
15561
15562         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
15563
15564 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15565
15566         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
15567         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
15568         grouped with class and valuetype. This change will simply 
15569         the code as it should be handled just like unmanaged pointers.
15570
15571 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15572
15573         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
15574
15575 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15576
15577         * verify.c: several stack merge issues fixed, reference comparisons now
15578         check the type size. strict type check now works correctly.
15579         added more uses of IS_MANAGED_POINTER macro.
15580         fixed issues pointed by running the test suite against .net.
15581         
15582
15583 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15584
15585         * class.c, loader.c, class-internals.h: Removed the
15586         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
15587         defines.
15588
15589         * icall.c: Better error checking in some internal reflection
15590         methods.
15591
15592 2007-07-18  William Holmes  <billholmes54@gmail.com>
15593
15594         * filewatcher.c : removed unused variable 'filename' in 
15595           ves_icall_System_IO_FSW_SupportsFSW
15596
15597 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15598
15599         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
15600         obsolete, removed.
15601
15602 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
15603
15604         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
15605         
15606         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
15607
15608 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
15609
15610         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
15611         Implement generics support.
15612         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15613
15614         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
15615         type_args and method_args arguments.
15616         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
15617         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15618         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
15619
15620 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
15621
15622         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
15623           It adds a rootimage parameter to mono_reflection_get_type_internal,
15624           adds new function mono_reflection_get_type_with_rootimage and use
15625           the rootimage to resolve the types instead of the current image
15626
15627 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
15628
15629         * culture-info-table.h: Forgot to update after r78304.
15630
15631 2007-07-13  Raja R Harinath  <rharinath@novell.com>
15632
15633         * class.c (mono_class_is_open_constructed_type)
15634         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
15635
15636 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
15637
15638         * class.c (mono_bounded_array_class_get):  method fails if used with
15639         an incomplete TypeBuilder enum (no basetype field), fixed it by 
15640         avoiding calculating the size for such array as it cannot be instantiated.
15641         Fix bug #82015
15642
15643 2007-07-12  Raja R Harinath  <rharinath@novell.com>
15644
15645         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
15646         field.
15647         * metadata.c, reflection.c: Update to changes.
15648
15649 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
15650
15651         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
15652         mono_class_is_valid_enum, they are used to valide a enum when loading.
15653         * reflection.c: used new functions to throw TypeLoadException when and
15654         invalid enum is build with TypeBuilder. Fixes #82018
15655   
15656 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15657
15658         * object.c: forgot commit of mono_class_setup_methods () to access
15659         iface->methods.
15660         * object-internals.h: added a few more handy fields to
15661         MonoIMTCheckItem.
15662
15663 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
15664
15665         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
15666         iface->methods.
15667
15668 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15669
15670         * class-internals.h, object-internals.h, object.c: IMT-based
15671         interface invocation core from Massimiliano Mantione
15672         (massi@ximian.com) with a reworked arch-specific interface,
15673         bsearch implementation and a few bugfixes and memory savings by me.
15674
15675 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
15676
15677         * class.c (mono_class_create_from_typedef): mono would segfault if 
15678         an enum did not have a __value field. It now throws a TypeLoadException
15679         for such cases. Fix bug #82022
15680
15681 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15682
15683         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
15684
15685 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15686
15687         * class.c (mono_class_init): If a class is already inited but has
15688         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
15689
15690 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15691
15692         * class.c: Properly handle the case of an unimplemented interface
15693         method.  Fixes: 81673.
15694
15695 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15696
15697         * class-internals.h, object.c: cleanup patch from massi: use
15698         MonoVTable->interface_bitmap since the vtable interfaces offset array
15699         is going away.
15700
15701 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15702
15703         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
15704         GetMDStreamVersion icall instead.
15705
15706 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
15707
15708         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
15709         not use mono_dl_build_path() with a full library name: makes
15710         fallbacks to libgaim and libfam work.
15711
15712 2007-07-06  William Holmes  <billholmes54@gmail.com>
15713
15714         * assembly.c: Added a continue statement in probe_for_partial_name when
15715          parse_assembly_directory_name fails.  Fixes : 82002
15716
15717 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
15718
15719         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
15720         and added a verification  for TYPEDBYREF.
15721         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
15722         make native int interchangeable with int32 and some small cleanup and formating.
15723         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
15724         handle byref of byref.
15725         * verify.c (push_local): handle byref of byref.
15726         * verify.c (do_binop): invalid mix of values is unverifiable
15727         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
15728         added visibility checks
15729         * verify.c (field related method): added visibility checks
15730         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
15731
15732 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
15733
15734         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
15735         string.
15736
15737 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
15738
15739         * profiler.c (mono_profiler_load): Fix an off-by-one error.
15740
15741         * marshal.c (emit_marshal_string): When returning a string from managed code,
15742         allways make a copy even for unicode strings. Fixes #81990.
15743
15744 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
15745
15746         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
15747         of byref generic inst types (bug #81997).
15748
15749 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
15750
15751         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
15752         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
15753
15754 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
15755
15756         * marshal.c (emit_marshal_string): Add support for unicode strings in
15757         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
15758
15759 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
15760
15761         * verify.c: field load/store are now verified, missing only access checks now
15762
15763 2007-06-28  Martin Baulig  <martin@ximian.com>
15764
15765         * mono-debug.c (mono_debug_debugger_version): New public variable.
15766
15767 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
15768
15769         * locales.c: When constructing DateTimeFormat or NumberFormat for
15770         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
15771         MonoCultureInfo contructed from the current locale is always
15772         read-only and has UseUserOverride set to true. All MonoCultureInfo
15773         instances returned for GetCultures have both IsReadOnly and
15774         UseUserOverride set to true. Fixes part of bug #81930.
15775
15776 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
15777
15778        * icall-def.h: Update System.__ComObject icalls
15779        * marshal.c: Avoid managed transition (and object creation)
15780        when looking up COM interface in RCW.
15781        * marshal.h: Ditto.
15782        
15783        Code is contributed under MIT/X11 license.
15784
15785 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
15786
15787         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
15788         to avoid crashes during assembly unloading.
15789
15790 2007-06-22  Raja R Harinath  <rharinath@novell.com>
15791
15792         Fix MethodInfo.IsGenericMethodDefinition
15793         * reflection.c (mono_reflection_bind_generic_method_parameters):
15794         Rearrange code to ensure we always uses a generic method definition.
15795         * class.c (mono_class_inflate_generic_method_full): Set
15796         'generic_container' field only for generic method definitions.
15797         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15798         Use presense of 'generic_container' field as indication of being a
15799         generic method definition.
15800
15801 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
15802
15803         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15804
15805         * object-internals.h: Reflect changes in the layout of the managed Delegate
15806         class.
15807         
15808         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
15809         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
15810         runtime memory used by the dynamic method. Fixes #77146.
15811
15812 2007-06-21  Dick Porter  <dick@ximian.com>
15813
15814         * file-io.h: 
15815         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
15816         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
15817         81767.
15818
15819 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15820
15821         * reflection.c (method_encode_methodspec): Add a tripwire.
15822         * class.c (inflate_generic_type): The fully open generic type is
15823         not the same as the generic type definition.
15824
15825 2007-06-21  Martin Baulig  <martin@ximian.com>
15826
15827         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
15828
15829         * mono-debug-debugger.h
15830         (MonoDebuggerBreakpointInfo): Removed.
15831         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
15832         (mono_debugger_remove_breakpoint): Likewise.
15833         (mono_debugger_breakpoint_callback): Likewise.
15834         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
15835
15836 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15837
15838         * metadata.c (mono_metadata_lookup_generic_class): The fully open
15839         generic type is not the same as the generic type definition.
15840         * class.c (mono_generic_class_get_class): Likewise.
15841
15842 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
15843
15844         * icall.c: The second argument to 
15845         System.Reflection.MethodBase.GetMethodFromHandleInternalType
15846         is a MonoType not a MonoClass.
15847
15848 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15849
15850         * verify.c: support for function pointers in the verifier
15851
15852 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15853
15854         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
15855
15856 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
15857
15858         * assembly.c: removed Mono.Data.SqliteClient from the list of
15859         forward-compatible assemblies as it breaks the ABI (bug #81899).
15860
15861 2007-06-19  Raja R Harinath  <rharinath@novell.com>
15862
15863         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
15864         lookup/update with the loader lock.
15865         * reflection.c (mono_class_bind_generic_parameters): No need to
15866         protect mono_metadata_lookup_* with the loader lock.
15867         * class.c (inflate_generic_type): Likewise.
15868         
15869         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
15870         on a generic instantiated type.
15871
15872 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
15873
15874         *verify.c: produce meanfull error messages on verification error
15875         *verify.c: fixed some cases of verification errors reported as validation errors
15876         *pedump.c: fixed the error name array, now it shows validation errors properly
15877         *verify.h: fixed the contant that should be used for verification errors
15878
15879 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
15880
15881         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
15882         for bug #77596, 81858 and 80743 (generics data structures on domain
15883         unload).
15884
15885 2007-06-15  Raja R Harinath  <rharinath@novell.com>
15886
15887         Avoid allocating 'MonoGenericContext' on the heap.
15888         * class-internals (_MonoMethodInflated::context): Make field
15889         inline, not a pointer.
15890         * loader.c (method_from_methodspec): Allocate 'new_context' on the
15891         stack.  Use the context embedded within the inflated method as the
15892         hash key, rather than 'new_context'.
15893         * class.c (inflate_generic_context): Simplify.  Return a struct
15894         rather than allocating on the heap.
15895         (mono_class_inflate_generic_method_full): Update to changes.  Now,
15896         doesn't salt away a copy of the context -- simplifying the
15897         lifetime rules of a 'MonoGenericContext *'.
15898         (mono_method_get_context): Return pointer to embedded context.
15899         (setup_generic_array_ifaces): Allocate temporary context on stack.
15900         * reflection.c (inflate_mono_method): Likewise.
15901         (mono_reflection_bind_generic_method_parameters): Likewise.
15902         Use the context embedded within the inflated method as the hash key.
15903
15904         Avoid a source of allocation of 'MonoGenericContext'.
15905         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
15906         and 'cached_context' fields into embedded 'MonoGenericContext' field.
15907         * class.c: Update to changes.
15908         (mono_generic_class_get_context): Simplify drastically.  Now just
15909         returns a pointer to the field.
15910         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
15911         argument as a const pointer.
15912         (mono_metadata_generic_context_equal): Likewise.
15913         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
15914         Update to changes.
15915
15916 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
15917
15918         * verify.c improved the handling of brtrue/brfalse, factored out common code
15919
15920 2007-06-14  Raja R Harinath  <rharinath@novell.com>
15921
15922         Kill MonoGenericMethod.
15923         * class-internals.h (MonoGenericContext::method_inst): Rename from
15924         'gmethod' and convert to a MonoGenericInst.
15925         (MonoGenericMethod): Remove.
15926         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
15927         * loader.c (method_from_methodspec): Update to changes.  Use a
15928         MonoGenericContext as the key to the hashtable.
15929         * metadata.c (mono_metadata_generic_context_equal): Rename from 
15930         'mono_metadata_generic_method_equal' and take MonoGenericContext.
15931         (mono_metadata_generic_context_hash): Likewise from
15932         'mono_metadata_generic_method_hash'.  Change hash function.
15933         (mono_metadata_load_generic_params): Update to changes.
15934         (mono_get_shared_generic_method): Remove.
15935         * metadata-internals.h (mono_get_shared_generic_method): Remove.
15936         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
15937         (inflate_generic_context): Likewise.
15938         (mono_class_inflate_generic_method_full): Likewise.
15939         (setup_generic_array_ifaces): Likewise.
15940         (mono_class_create_from_typespec): Likewise.
15941         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
15942         (method_encode_methodspec): Update callsite.
15943         (reflection_methodbuilder_to_mono_method): Update to changes.
15944         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
15945         MonoGenericContext as the key to the hashtable.
15946         (inflate_mono_method): Update to changes.
15947
15948         * class-internals.h (MonoGenericMethod::container): Remove.
15949         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
15950
15951 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
15952
15953         * profiler-private.h, profiler.c, profiler.h: added API to profile
15954         exception events.
15955
15956 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15957
15958         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
15959
15960 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15961
15962         * verify.c: method invocation is now validated, now we verify parameter types on stack.
15963         Fixed overflow and underflow not aborting the verification process.
15964
15965 2007-06-13  Mark Probst  <mark.probst@gmail.com>
15966
15967         * class-internals.h (MonoStats): Added stats entries for dynamic
15968         code allocations.
15969
15970 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
15971
15972         * loader.c (mono_free_method): Free header->locals and header->clauses.
15973
15974         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
15975         dynamic case.
15976
15977         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
15978
15979         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
15980
15981 2007-06-12  Raja R Harinath  <rharinath@novell.com>
15982
15983         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
15984         the tables.
15985
15986 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15987
15988         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
15989
15990 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15991
15992         MonoGenericMethod on a diet
15993         * class-internals.h (_MonoMethodInflated::reflection_info): Move
15994         here ...
15995         (_MonoGenericMethod::reflection_info): ... from here.
15996         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
15997         Update to changes.
15998         * reflection.c (inflate_mono_method): Likewise.
15999         (mono_reflection_bind_generic_method_parameters): Likewise.
16000
16001 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16002
16003         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
16004         *verify.c: factored long ldarg forms to share code with short forms
16005
16006 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16007
16008         *verify.c: fixed code formating factored some duplicate code
16009         into a new function
16010
16011         *verify.h: fixed binary incompatibility introduced earlier
16012
16013         *pedump.c: fixed formating
16014
16015 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16016
16017         Fix assertion when disassembling Mono.C5.dll
16018         * loader.c (method_from_methodspec): Avoid inflating a method
16019         twice with the same context.  If the methodref is inflated, use
16020         the declaring method instead.
16021
16022         * class.c (mono_class_from_generic_parameter): Fix case similar to
16023         bug #81830 handled below, but for method containers.
16024
16025 2007-06-10  Raja R Harinath  <harinath@gmail.com>
16026
16027         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
16028         get_shared_generic_class.  Directly inflate the instance.
16029         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
16030         (inflate_generic_class): Delete.
16031         (get_shared_generic_class): Delete.  Move setting of
16032         'cached_class' and 'cached_context' ...
16033         * metadata.c (mono_metadata_lookup_generic_class): ... here.
16034
16035         * metadata.c (mono_metadata_lookup_generic_class): Change
16036         signature to take the components of a MonoGenericClass rather than
16037         an allocated MonoGenericClass.  Change semantics to be intern-like.
16038         * reflection.c (mono_class_bind_generic_parameters): Update to
16039         changes.  Make locking region tighter.
16040         * class.c (inflate_generic_class): Update to changes.
16041         (get_shared_generic_class): Likewise.
16042         * metadata-internals.h: Likewise.
16043
16044         * reflection.c (mono_class_bind_generic_parameters): Take and
16045         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
16046         (mono_reflection_bind_generic_parameters): Use
16047         'mono_class_bind_generic_parameters' rather than duplicate the code.
16048         * class.c (mono_bounded_array_class_get): Update to changes.
16049         * object-internals.h: Likewise.
16050
16051         * reflection.c (mono_class_bind_generic_parameters): Only support
16052         parameterizing generic type definitions.  Remove support for other
16053         open types.
16054
16055 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
16056
16057         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
16058
16059         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
16060         in the dynamic case.
16061
16062 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
16063
16064         * threads.c: When cleaning up thread, reset the Background bit.
16065         Fixes bug #81720.
16066
16067 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
16068
16069        * metadata.c: Move variable declarations to top of scope.
16070        * verify.c: Move variable declarations to top of scope.
16071
16072        Code is contributed under MIT/X11 license.
16073
16074 2007-06-08  Raja R Harinath  <rharinath@novell.com>
16075
16076         * reflection.c (mono_class_bind_generic_parameters): Replace
16077         open-coded loop with mono_metadata_inflate_generic_inst.
16078
16079         * class.c (get_shared_generic_class): Don't call
16080         mono_get_shared_generic_inst.  Use the container's own
16081         'class_inst'.
16082
16083         * metadata.c (mono_metadata_load_generic_params): Move
16084         initialization of 'context' field here from ...
16085         * class.c (mono_class_create_from_typedef): ... here, and ...
16086         * loader.c (mono_get_method_from_token): ... here.
16087
16088         * class.c (get_shared_generic_class): Rename from
16089         mono_get_shared_generic_class and make static.
16090         (mono_get_shared_generic_inst): Move to metadata.c.
16091         * loader.c (mono_get_shared_generic_method): Likewise.
16092         * class-internals.h, metadata-internals.h: Update to changes.
16093
16094         Fix #81830
16095         * class.c (mono_class_from_generic_parameter): Don't assume a
16096         generic container owner exists.  Generic containers from monodis
16097         don't have any.
16098
16099 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
16100
16101         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
16102         * verify.h: new typedefs to returns the non-verifiable status
16103         * verify.c: initial implementation of generics, stack merging and object compatibility check
16104
16105 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16106
16107         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16108         a MonoInternalHashTable again (fixed bug in internal hash table
16109         code).
16110
16111 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16112
16113         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16114         MonoInternalHashTable again (fixed bug in internal hash table
16115         code).
16116
16117 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16118
16119         * class.c, image.c, class-internals.h, domain.c,
16120         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
16121         changes.  Have to figure out what makes them break the SWF
16122         regression.
16123
16124 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16125
16126         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16127         a MonoInternalHashTable now.
16128
16129 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16130
16131         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16132         MonoInternalHashTable now.
16133
16134 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
16135
16136         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
16137         invoke_impl code.
16138
16139         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
16140
16141         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
16142         dependent trampoline.
16143
16144         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16145
16146         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
16147
16148 2007-05-29  Robert Jordan  <robertj@gmx.net>
16149
16150         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
16151
16152 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
16153
16154         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
16155
16156 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
16157
16158        * marshal.c: Fix interface lookup loops for
16159        cominterop_get_com_slot_for_method and 
16160        cominterop_get_method_interface. Only need to lookup
16161        if type is a class, else use interface type method is on.
16162
16163        Code is contributed under MIT/X11 license.
16164
16165 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
16166
16167         * reflection.c: HasSecurity can be present even if no specially 
16168         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
16169         SecurityAttribute). Fix CAS regression tests on buildbot.
16170
16171 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
16172
16173        * appdomain.c: Add configure checks for header files.
16174        * image.c: Add configure checks for header files.
16175        * file-io.c: Add configure checks for header files.
16176        * debug-mono-symfile.c: Add configure checks for header files.
16177        * threadpool.c: Add configure checks for header files.
16178        * console-io.c: Add configure checks for header files.
16179        * profiler.c: Add configure checks for header files.
16180        * rawbuffer.c: Add configure checks for header files.
16181        * icall.c: Add configure checks for header files.
16182        * rand.c: Add configure checks for header files.
16183        * socket-io.c: Add configure checks for header files.
16184
16185        Code is contributed under MIT/X11 license.
16186
16187 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
16188
16189         * reflection.c (mono_custom_attrs_from_builders): Remove the 
16190         assertion as it breaks the build.
16191         
16192         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
16193
16194         * reflection.c (lookup_custom_attr): Make a copy here too.
16195
16196         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
16197         dynamic images.
16198
16199         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
16200         images.
16201
16202         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
16203         info.
16204
16205 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
16206
16207         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
16208         (load_cattr_value): Ditto.
16209
16210 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
16211
16212         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
16213
16214 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
16215
16216         * threads.c: In "start_wrapper", set apartment_state to MTA if
16217         apartment_state is Unknown and we're running on 2.0 profile or
16218         higher.
16219         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
16220         to main method, then set apartment_state to Unknown on 1.0 profile,
16221         and MTA on 2.0 profile.
16222
16223 2007-05-16  Jb Evain  <jb@nurv.fr>
16224
16225         * class-internals.h (MonoDefaults): Add an attribute_class and
16226           customattribute_data_class.
16227         * domain.c (mono_init_internal): Populate them.
16228         * reflection.c: Use them to remove duplicates. Make a vew
16229         MonoClass variables `static'.
16230
16231 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
16232
16233         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
16234         step in implementing IMT, so that all isinst checks now can go
16235         through the bitmap.
16236         This was needed because vtables for TransparentProxy need to look
16237         like the vtable of the "target" class, so they need to point to
16238         its interface bitmap directly.
16239
16240         * object.c: inside "mono_class_create_runtime_vtable" and
16241         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
16242
16243 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
16244
16245         * object-internals.h
16246           culture-info.h : added territory field in MonoCulture and
16247           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
16248         * locales.c : fill territory field above too.
16249         * culture-info-table.h : regenerated.
16250
16251 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
16252
16253         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
16254         Fixes #81599.
16255
16256 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
16257
16258         * object.c: Always initialize apartment, even if 
16259         there is no custom attributes on entry point.
16260         
16261         Code is contributed under MIT/X11 license.
16262
16263 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
16264
16265         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
16266         * metadata.c: If no encoding is set, check for unicode
16267         on class.
16268         
16269         Code is contributed under MIT/X11 license.
16270
16271 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16272
16273         * threads.c: Handle if mono_thread_current returns NULL 
16274         
16275         Code is contributed under MIT/X11 license.
16276
16277 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16278
16279         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
16280         in start_wrapper. Added mono_thread_init_apartment_state and
16281         mono_thread_cleanup_apartment_state.
16282         * object.c: Initialize thread apartment state on main thread
16283         by checking for STAThreadAttribute on entry point.
16284         * object-internals.h: Add apartment_state field to MonoThread.
16285         * threads-types.h: Add unmanaged definition of 
16286         System.Threading.ApartmentState, MonoThreadApartmentState.
16287         
16288         Code is contributed under MIT/X11 license.
16289         
16290 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
16291
16292         * class.c: Fix windows build.
16293         * class-internals.h: Fix windows build.
16294         
16295         Code is contributed under MIT/X11 license.
16296
16297 2007-05-08  Robert Jordan  <robertj@gmx.net>
16298
16299         * process.c (CreateProcess_internal):
16300         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
16301         .CreateNoWindow was specified. Fixes #81496.
16302
16303 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16304
16305         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
16306         step in implementing IMT, replaced it with two compact arrays
16307         (interfaces_packed and interface_offsets_packed) and a bitmap that
16308         is used for isinst checks (interface_bitmap).
16309
16310         * class.c: (compare_interface_ids): compare function to pass to
16311         bsearch when looking for an interface with a given id.
16312         (mono_class_interface_offset): reimplemented using bsearch on
16313         interfaces_packed, getting the offset from interface_offsets_packed.
16314         (print_implemented_interfaces): utility debugging function.
16315         (setup_interface_offsets): reworked to initialize interfaces_packed,
16316         interface_offsets_packed and interface_bitmap.
16317
16318         * object.c: replaced all accesses to "MonoClass.interface_offsets"
16319         with uses of interfaces_packed and interface_offsets_packed.
16320
16321 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16322
16323         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
16324         mono_class_interface_offset prototype to wrap all accesses to
16325         "MonoClass.interface_offsets".
16326
16327         * class.c: Implemented mono_class_interface_offset, and wrapped all
16328         accesses to "MonoClass.interface_offsets".
16329
16330         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
16331         "MonoClass.interface_offsets".
16332
16333 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
16334
16335         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
16336         GetMethodFromHandle overloads (bug #78637).
16337
16338 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16339
16340         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
16341         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
16342
16343 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
16344
16345         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
16346         #81498.
16347
16348         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
16349         gracefully.
16350         (mono_custom_attrs_from_index): Ditto.
16351
16352         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
16353         Fixes #81501.
16354
16355 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
16356
16357         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
16358         is now allocated from a mempool.
16359
16360 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
16361
16362         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
16363         caller holds threads_lock, leading to deadlocks. Fixes #81476.
16364
16365 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
16366
16367         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
16368         mono_loader_clear_error () too late. Fixes #81463.
16369
16370 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
16371
16372         * culture-info-table.h : regenerated.
16373
16374 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
16375
16376         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
16377         is missing.
16378
16379 2007-04-25  Dick Porter  <dick@ximian.com>
16380
16381         * Makefile.am: Put the mingw enforced-optimisation back into the
16382         PLATFORM_WIN32 section.
16383
16384 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
16385
16386         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
16387         patch.
16388
16389         * image.c (mono_image_load_module): New API function to load a module reference.
16390
16391         * image.c (load_modules): Load modules lazily. Fixes #80812.
16392
16393         * class.c (mono_class_from_typeref): Use mono_image_load_module.
16394         
16395         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
16396
16397         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
16398         to mono_image_load_module_dynamic.
16399
16400 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
16401
16402         * marshal.c: Fix calling convention for CCW on non-windows
16403         platforms. STDCALL on windows, CDECL everywhere else to work 
16404         with XPCOM and MainWin COM.
16405         
16406         Code is contributed under MIT/X11 license.
16407
16408 2007-04-23  Martin Baulig  <martin@ximian.com>
16409
16410         Fix #80969.
16411
16412         * loader.c
16413         (method_from_memberref): Added `gboolean *used_context' argument.
16414         (mono_get_method_from_token): Likewise.
16415         (mono_get_method_full): Don't insert the method in the cache when
16416         `used_context' is true.
16417
16418 2007-04-23  Raja R Harinath  <rharinath@novell.com>
16419
16420         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
16421
16422         * reflection.c (mono_reflection_bind_generic_parameters): Don't
16423         create new MonoTypes for returned types.
16424         * class.c (mono_generic_class_get_class): Export mono-internal.
16425         * class-internals.h: Update to changes.
16426
16427 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
16428
16429         * threadpool.c, threadpool.h, icall-def.h: patch from
16430         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
16431
16432 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
16433
16434         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
16435         
16436         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
16437
16438         * threads.c (mono_thread_get_stack_bounds): New helper function.
16439
16440         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
16441         Correctly compute stack bounds when attaching. Fixes #81394.
16442
16443 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
16444
16445         * reflection.c: fix handling of doubles in custom attributes
16446         for the arm-fpa format (bug #81368).
16447
16448 2007-04-18  Raja R Harinath  <rharinath@novell.com>
16449
16450         * reflection.c (assembly_add_win32_resources): Mildly relax an
16451         bounds check to let the end pointer point just past the end of the
16452         allocated buffer.  (may fix #81384)
16453
16454 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
16455
16456         * culture-info-table.h : regenerated.
16457
16458 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
16459
16460         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
16461         the thread is aborted early.
16462
16463 2007-04-05  Dick Porter  <dick@ximian.com>
16464
16465         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
16466         FindFirstFile()/FindNextFile() to find entries.  This lets the
16467         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
16468         81038.
16469
16470         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
16471         the parameters of
16472         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
16473
16474 2007-04-04  Martin Baulig  <martin@ximian.com>
16475
16476         * debug-helpers.c
16477         (mono_method_desc_full_match): Add support for nested classes.
16478
16479 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
16480
16481         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
16482
16483 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
16484
16485         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
16486         waiting for too many threads.
16487
16488 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
16489
16490         * environment.c: Fix return value check on uname so we can get the 
16491         executing version on Solaris operating systems.
16492
16493 2007-03-28  Jb Evain  <jbevain@gmail.com>
16494
16495         * class.c (mono_type_get_name_recurse): Complete the
16496         fix for the creation of assembly qualified names for
16497         pointer types. Fixes #81208.
16498
16499 2007-03-27  Dick Porter  <dick@ximian.com>
16500
16501         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
16502         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
16503         changed.
16504
16505         * threads.c
16506         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
16507         the value of ReleaseMutex().
16508
16509 2007-03-27  Dick Porter  <dick@ximian.com>
16510
16511         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
16512         in little-endian order, not network endian, so must be converted
16513         to host endian here.  Fixes bug 80593.
16514
16515 2007-03-22  Jb Evain  <jbevain@gmail.com>
16516
16517         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
16518         qualified names for pointer types. Fixes #81208.
16519
16520 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
16521
16522         * marshal.c: Add support for PreserveSigAttribute. 
16523         
16524         Code is contributed under MIT/X11 license.
16525
16526 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
16527
16528         * process.c: Fix endianness issues. Fixes #81126.
16529
16530         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
16531         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
16532
16533         * image.c (mono_image_lookup_resource): Make this work on big-endian
16534         machines.Change API contract so the caller needs to free the return value.
16535         
16536         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
16537         API change.
16538         
16539 2007-03-14  Martin Baulig  <martin@ximian.com>
16540
16541         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
16542         mono_type_get_desc() as well.
16543
16544 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
16545
16546         * icall.c:  Fix environ access in VS.  
16547         
16548 2007-03-13  Alp Toker  <alp@atoker.com>
16549
16550         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
16551         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
16552         #63841.
16553
16554 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
16555
16556         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
16557         circular references among dynamic methods. Fixes #81091.
16558
16559         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
16560
16561 2007-03-09  Martin Baulig  <martin@ximian.com>
16562
16563         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
16564
16565 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
16566
16567         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
16568         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
16569         
16570         Code is contributed under MIT/X11 license.
16571         
16572 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
16573
16574         * loader.c: Reapply patch for bug #79424.
16575
16576 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16577
16578         * metadata.c (mono_type_to_unmanaged): Only convert object to
16579         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
16580
16581 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
16582
16583         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
16584         (and incorrectly set) is_reference field from MonoGenericInst.
16585
16586 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16587
16588         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
16589         a little earlier.
16590
16591         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
16592
16593         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
16594
16595 2007-03-05  Miguel de Icaza  <miguel@novell.com>
16596
16597         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
16598         FileOptions.1 value to mean "temporary", map that to
16599         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
16600
16601         Fixes 80688
16602
16603 2007-03-03  Marek Habersack  <mhabersack@novell.com>
16604
16605         * appdomain.c: implement MS .Net style shadow copying. Copies of
16606         the assemblies are made in a subdirectory of the dynamic base
16607         directory, the assembly names are preserved.
16608         Copy .mdb and .config files along with the assemblies being shadowed.
16609
16610 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16611
16612         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
16613         (emit_marshal_handleref): Ditto.
16614
16615         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
16616         on Visual C++. Fixes #80671.
16617
16618 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
16619
16620         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
16621         for clone operations.
16622
16623 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16624
16625         * marshal.c: Fix warnings.
16626
16627 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
16628
16629         * loader.c: allow case-insensitive matching of the dll name
16630         in dllmap handling when prefixed with "i:".
16631
16632 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
16633
16634         * threads.c: Fix #ifdef for dummy_apc function for VS.
16635
16636 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
16637
16638         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
16639
16640 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
16641         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
16642         giving precedence to the methods with a fully qualified name
16643         (InterfaceName.MethodName) when building the interface sections
16644         of the vtable.
16645
16646 2007-02-16  Dick Porter  <dick@ximian.com>
16647
16648         * threadpool.c (append_job): Fix fast-path array handling, so it's
16649         less likely the array will grow exponentially when the load is
16650         heavy.
16651
16652 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16653
16654         * metadata-internals.h, loader.c: fix dllmap lookup order
16655         for non-function maps, too, and prepare for fallback code.
16656
16657 2007-02-12  Robert Jordan  <robertj@gmx.net>
16658
16659         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
16660         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
16661         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
16662         GlobalFree. Fixes a part of bug #77075.
16663
16664 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
16665
16666         * loader.c: implemented typedef parent in field memberref.
16667
16668 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
16669
16670         * marshal.c: Fix warnings and remember to call Release on
16671         IUnknown of RCW.
16672         
16673         Code is contributed under MIT/X11 license.
16674
16675 2007-02-10  Miguel de Icaza  <miguel@novell.com>
16676
16677         * class-internals.h: Add MonoHandleRef definition, and
16678         handleref_class to mono_defaults. 
16679
16680         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
16681         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
16682
16683         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
16684         (do nothing on this stage)
16685         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
16686         (emit_marshal_handleref): New method, used for argument handling
16687         of HandleRefs. 
16688
16689 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
16690
16691         * class.c (mono_class_setup_parent): Lazily init com types.
16692         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
16693         init com types.
16694         * object.c (mono_remote_class_vtable): Lazily init com types.
16695         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
16696         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
16697         * domain-internals.h: Expose mono_init_com_types.
16698         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
16699         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
16700         Add support for COM Callable Wrapper marshalling.
16701         * marshal.h: Add icall definitions.
16702         * gc.c: Handle freeing of CCWs in finalizer code.
16703         
16704         Code is contributed under MIT/X11 license.
16705
16706 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
16707
16708         * reflection.c: changed all the signature encoding code to use
16709         a variable-sized buffer.
16710
16711 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16712
16713         * marshal.c: locking fixes: never take the loader lock
16714         or other runtime locks when holding the marshal lock
16715         (fixes bug#80664).
16716
16717 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
16718
16719         * marshal.c: make the delegate function pointer mapping
16720         work for the moving GC.
16721
16722 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
16723
16724         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
16725         for bug #80618.
16726
16727 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16728
16729         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
16730         gmodule.
16731
16732 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
16733
16734         * threadpool.c: made the code moving-GC safe.
16735
16736 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
16737
16738         * assembly.c, boehm-gc.c, class-internals.h, class.c,
16739         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
16740         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
16741         warning cleanup.
16742         * reflection.c: warning cleanup, some threading and moving GC fixes.
16743
16744 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
16745
16746         * class.c, loader.c: create the needed Set/Get/Address array methods
16747         as well as the .ctors in mono_class_init (), fixes bug #80567.
16748
16749 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
16750
16751         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
16752         we doesn't decrease its alignment. Should fix the sparc build.
16753
16754 2007-01-24  Dick Porter  <dick@ximian.com>
16755
16756         * socket-io.c
16757         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
16758         Create the returned object if we need to ignore an unsupported
16759         socket option.  Fixes a segfault reported by Atsushi.
16760
16761 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
16762
16763         * class.c, object.c: restrict GC-tracked fields to
16764         UIntPtr fields used inside corlib, so we provide better
16765         type info to the GC and also allow broken packing as in
16766         bug #80580.
16767
16768 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
16769
16770         * sgen-gc.c: removed duplicated function.
16771
16772 2007-01-19  Miguel de Icaza  <miguel@novell.com>
16773
16774         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
16775         value that means that the value is not supported, but that we
16776         should not return a failure, but instead report this as a
16777         successful operation.
16778
16779 2007-01-19  Raja R Harinath  <rharinath@novell.com>
16780
16781         Fix tests/bug79956.2.il
16782         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
16783         (mono_generic_class_get_class): If the generic definition in an
16784         enum, copy over other fields related to it.
16785
16786 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
16787
16788         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
16789         genericinst enums (bug #79215).
16790
16791 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
16792         * class.c: Fix bug 80307.
16793
16794 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
16795
16796         * image.c: if the file table is not present, try to load
16797         all the modules, since we don't have info about them
16798         having or not metadata (bug #80517).
16799         * assembly.c: allow mono_assembly_load_references () to
16800         work for netmodules.
16801
16802 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16803
16804         * image.c, metadata-internals.h, object.c: execute module
16805         cctors when running on the 2 runtime if present (bug #80487).
16806
16807 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
16808
16809         * icall.c: optimized InitializeArray() on bigendian.
16810
16811 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
16812
16813         * icall.c: fix for the broken ARM FPA double format.
16814
16815 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
16816
16817         * icall.c: handle endian issues for r4 and r8 types, too, in
16818         the InitializeArray() icall.
16819
16820 2007-01-15  Miguel de Icaza  <miguel@novell.com>
16821
16822         * loader.c (mono_loader_error_prepare_exception): Clear the error
16823         once we have extracted the information from it, do this before we
16824         call into the JIT's class loading mechanisms.
16825
16826         * object.c (mono_class_create_runtime_vtable): Do not clear the
16827         loader error before calling mono_class_get_exception_for_failure
16828         as the loader error is needed inside
16829         mono_class_get_exception_for_failure to throw the error (thinko).
16830
16831         Fixes #80521
16832         
16833 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
16834
16835         * reflection.c: align fields rva data so it's faster to load at
16836         runtime.
16837
16838 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16839
16840         Prepare to simplify GenericMethod handling.
16841         * class-internals.h (mono_method_get_context): New accessor function.
16842         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
16843         rather than directly accessing '->context' field.
16844
16845         * class-internals.h (_MonoGenericParam.method): Move ...
16846         (_MonoGenericContainer): ... here.  Add into union with klass field.
16847         * class.c, icall.c, loader.c, metadata.c, reflection.c:
16848         Update to changes.
16849
16850 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
16851
16852         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
16853         the wrapper type enum and reduce relocations.
16854
16855 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16856
16857         * reflection.c (inflate_mono_method): Reuse method instantiation
16858         from the generic method, if available.
16859
16860 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16861
16862         * marshal.c (emit_marshal_variant): Fix conv_arg
16863         type in last commit, based on whether parameter is byref.
16864         
16865 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16866
16867         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
16868         marshalling.
16869         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
16870         MONO_TYPE_OBJECT back for VARIANT support.
16871
16872 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16873
16874         * marshal.c, marshal.h, icall-def.h: Implement 
16875         Marshal.ReAllocCoTaskMem.
16876
16877 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
16878
16879         * marshal.c: memory retention fixes: use the proper
16880         image cache for runtime_invoke method lookups.
16881
16882 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
16883
16884         * mempool.c: added code to help debug mempool allocations.
16885
16886 2007-01-11  Dick Porter  <dick@ximian.com>
16887
16888         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
16889         support (experimenting with faking it with IP_MTU_DISCOVER for
16890         systems that don't have IP_DONTFRAGMENT.)
16891         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
16892         icall.
16893
16894         * icall-def.h: new System.Net.Sockets.Disconnect icall.
16895
16896         * socket-io.h: Add new fields to MonoSocketAsyncResult
16897         corresponding to the new ones in Socket.cs.
16898
16899 2007-01-11  Raja R Harinath  <rharinath@novell.com>
16900
16901         Fix IronPython regression mentioned in #80249
16902         * metadata.c (do_mono_metadata_parse_generic_class): Clear
16903         'cached_context' field, since it may have been initialized as a
16904         side-effect of metadata parsing.
16905
16906         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
16907         (_MonoGenericClass.cached_class): Move here and rename from lone
16908         remaining field of ...
16909         (_MonoInflatedGenericClass): ... this.  Remove.
16910         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
16911         to changes.
16912
16913         Fix mcs/tests/test-128.cs regression.
16914         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
16915         2007-01-10 change below.
16916         [MONO_TYPE_OBJECT]: Recurse into array case.
16917
16918 2007-01-11  Raja R Harinath  <harinath@gmail.com>
16919
16920         * class-internals.h (mono_get_inflated_generic_class): Remove.
16921         * class.c (mono_get_inflated_generic_class): Remove.
16922         (mono_generic_class_get_class): Rename from
16923         mono_class_create_generic.
16924         (mono_class_from_mono_type) [GENERICINST]: Use it.
16925         * reflection.c, metadata.c: Update to changes.  Use
16926         'mono_class_from_mono_type'.
16927
16928 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
16929
16930         * reflection.c: use passed type when encoding an array element
16931         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
16932
16933 2007-01-09  Robert Jordan  <robertj@gmx.net>
16934
16935         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
16936         result arguments (someDelegate.EndInvoke (unrelatedAres)).
16937         Fixes bug #80392.
16938
16939 2007-01-09  Raja R Harinath  <rharinath@novell.com>
16940
16941         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
16942
16943         * object.c (set_value): Avoid aliasing between type->data.klass
16944         and type->data.generic_class.
16945
16946         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
16947
16948 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16949
16950         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
16951         between type->data.klass and type->data.generic_class.
16952
16953 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
16954
16955         * marshal.c: In MS.NET, StringBuilder objects are not copied by
16956         value in out parameters.
16957
16958 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16959
16960         Simplify invariant for MonoGenericClass::klass field.
16961         * class.c (mono_class_create_generic): Verify 'klass' is null.
16962         * metadata.c (do_mono_metadata_parse_generic_class): Don't
16963         initialize 'klass' field.
16964
16965 2007-01-05  Raja R Harinath  <rharinath@novell.com>
16966
16967         Ongoing work to avoid redundant data and simplify invariants.
16968         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
16969         'generic_class', and change type to a GenericInst.
16970         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
16971         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16972
16973 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
16974
16975         * class.c : skip io-layer under PLATFORM_WIN32.
16976
16977 2007-01-03  Tor Lillqvist  <tml@novell.com>
16978
16979         Fix #80305: In a bundled executable, look in the bundled exe
16980         assembly to determine the runtime version. Add the possibility to
16981         bundle also the machine.config file.
16982         
16983         * assembly.c (mono_assembly_open_from_bundle): Make
16984         non-static. Allow being called even if we have no bundled
16985         assemblies, and return NULL right away in that case.
16986
16987         * domain-internals.h: Declare mono_assembly_open_from_bundle()
16988         here.
16989
16990         * domain.c (app_config_parse): Take an assembly exe file name as
16991         parameter instead of a config file name. Check for a bundled
16992         config file for that assembly by calling
16993         mono_config_string_for_assembly_file() (see below) before looking
16994         for one in the file system.
16995         (get_runtimes_from_exe): Corrsponding change to call of
16996         app_config_parse().
16997         (get_runtimes_from_exe): Check for bundled assembly exe file first
16998         by calling mono_assembly_open_from_bundle(). If no bundled
16999         assembly exe file is found, call mono_image_open() as before to
17000         look it up in the file system.
17001
17002         * mono-config.c: Add variable bundled_machinec_onfig.
17003         (mono_config_string_for_assembly_file): New function.
17004         (mono_config_for_assembly): Move code snippet that looks for a
17005         bundled assembly .config file into the above new function. Call
17006         it.
17007         (mono_register_machine_config, mono_get_machine_config): New
17008         functions to set and retrieve
17009
17010         * assembly.h: Declare mono_register_machine_config().
17011
17012         * mono-config.h: Declare mono_get_machine_config() and
17013         mono_config_string_for_assembly_file().
17014
17015         * icall.c: No declaration of environ necessary on Win32. It is
17016         declared (as a macro expanding to a function call) in stdlib.h.
17017         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
17018         New internal mono function. Returns the value of
17019         mono_get_machine_config() as a Mono string.
17020
17021         * icall-def.h: Add get_bundled_machine_config().
17022
17023 2007-01-04  Raja R Harinath  <rharinath@novell.com>
17024
17025         Remove redundant field
17026         * class-internals.h (_MonoGenericContext.container): Remove field.
17027         * loader.c (mono_method_get_signature_full): Don't parse a
17028         "container" for a signature parse when the signature is inflated
17029         immediately.
17030         (method_from_methodspec): Likewise, for a generic_inst.
17031         * class.c, metadata.c, reflection.c: Update to changes.
17032
17033 2006-01-04  Raja R Harinath  <rharinath@novell.com>
17034
17035         * class-internals.h (_MonoGenericClass): Rename 'context' field to
17036         'cached_context', and change semantics -- it starts off NULL, and
17037         is initialized on demand.
17038         * class.c (mono_generic_class_get_context): New accessor to
17039         replace 'context' field accesses.
17040         (mono_class_get_context): New helper.
17041         (*): Update to changes.
17042         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
17043
17044 2007-01-03  Miguel de Icaza  <miguel@novell.com>
17045
17046         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
17047         before the memcpy.   Fixes Marshal2 regression.
17048
17049 2007-01-02  Jb Evain  <jbevain@gmail.com>
17050
17051         * blob.h: add a MONO_TYPE_ENUM definition
17052         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
17053         fix the encoding of arrays of enums in custom attributes.
17054
17055         Fixes #79666.
17056
17057 2007-01-01  Miguel de Icaza  <miguel@novell.com>
17058
17059         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
17060         string is null terminated, but only cut the string short if it
17061         overflows the buffer.   
17062         
17063         (mono_string_to_byvalstr): Also fix this routine.   The code here
17064         was not properly terminating a string (it was only terminated
17065         because of the previous catch-all memset). 
17066
17067         I left the memset, because I do not know if applications expect
17068         the runtime to clear this region. 
17069
17070         Fixes #79944.
17071
17072         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
17073         Clear the error before returning to unmanaged code to prevent the
17074         runtime from being confused later on (fixes  80420).
17075         (ves_icall_type_from_name): Always call mono_loader_clear_error
17076         after parsing a type that could have failed.
17077         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
17078
17079         * loader.c (mono_loader_clear_error): Fix indentation.
17080
17081 2006-12-28  Martin Baulig  <martin@ximian.com>
17082
17083         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
17084
17085 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17086
17087         * reflection.c: patch from Rolf Bjarne Kvinge to fix
17088         getting a token for an EnumBuilder.
17089
17090 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17091
17092         * reflection.c: be more careful in case resource generation
17093         fails to create the data array.
17094
17095 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
17096
17097         * sgen-gc.c: write barrier for clone and fix unregister handles.
17098
17099 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
17100
17101         * reflection.c: some fixes needed in the generics code for the moving GC.
17102
17103 2006-12-22  Robert Jordan  <robertj@gmx.net>
17104
17105         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
17106         account. Fixes bug #80299.
17107
17108 2006-12-21  Raja R Harinath  <rharinath@novell.com>
17109
17110         Fix WaitHandle usage in delegates.
17111         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
17112         * object.c (mono_wait_handle_new): Use the property set method to
17113         initialize the handle.
17114         (mono_wait_handle_get_handle): New.
17115         * threadpool.c (mono_async_invoke): Use it.
17116         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
17117         Likewise.
17118         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
17119
17120 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
17121
17122         * marshal.c (emit_marshal): Call emit_marshal_variant and
17123         emit_marshal_com_interface when applicable.
17124         (emit_marshal_variant, emit_marshal_com_interface): Add
17125         methods for this case and remove if's from emit_marshal_object.
17126         
17127 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
17128
17129         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
17130
17131 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
17132
17133         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
17134         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
17135         and GlobalFree on Windows. Remove FIXME.
17136
17137 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17138
17139         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
17140         implementation for managed objects.
17141
17142 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
17143
17144         * object.c: implemented code to be used for checking
17145         that no reference field overlaps with non-references.
17146
17147 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17148
17149         * threadpool.c: fix queue code to be compatible with the
17150         moving GC.
17151
17152 2006-12-18  Miguel de Icaza  <miguel@novell.com>
17153
17154         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
17155         in structures by throwing ArgumentNullException.
17156
17157         (emit_marshal_safehandle): Also when they are null parameters.
17158
17159         (emit_marshal_safehandle): Add support for ref
17160         SafeHandles parameters
17161
17162 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17163
17164         * profiler.c: updated to use the mono-dl API instead of
17165         gmodule.
17166
17167 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17168
17169         * profiler.c: updated to use the mono-dl dynamic loading
17170         API instead of gmodule.
17171
17172 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
17173
17174         * profiler.c: use readlink, older versions of glib don't have
17175         g_file_read_link ().
17176
17177 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17178
17179         * profiler.c: try to detect the path to mono if libc fails to provide
17180         a useful name (bug #80286).
17181
17182 2006-12-16  Raja R Harinath  <rharinath@novell.com>
17183
17184         Fix #80242
17185         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
17186         instance, use the generic type definition instead.
17187         (ves_icall_Type_GetNestedTypes): Likewise.
17188         * class.c (mono_class_create_generic): Always set the
17189         nested_classes of a generic instance to NULL, even if the generic
17190         type definition has nested types.
17191
17192 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
17193
17194         * marshal.c (mono_string_from_bstr): Revert previous Windows change
17195         and fix on Linux.
17196         
17197 2006-12-15  Miguel de Icaza  <miguel@novell.com>
17198
17199         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
17200         my arguments were in the wrong order.   I also fixed the Windows
17201         version which seems to have had the same issue.
17202
17203         (mono_free_bstr): On Unix, this is g_free.
17204         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
17205         conversions (for the tests in corlib to pass).
17206
17207 2006-12-14  Miguel de Icaza  <miguel@novell.com>
17208
17209         * marshal.c (emit_ptr_to_object_conv): For now, ignore
17210         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
17211         exception if a ref SafeHandle in a struct has changed).
17212         
17213         (emit_struct_conv): Do not perform layout checks for classes
17214         derived from SafeHandle, as those are specially handled. 
17215
17216         (emit_object_to_ptr_conv): Add support for
17217         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
17218
17219         (emit_marshal_safehandle): Implement conversion of return values
17220         of safehandles (MARSHAL_ACTION_CONV_RESULT).
17221         
17222         * threads.c: WaitHandle now is compiled with two different handles
17223         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
17224         for 2.0.
17225         
17226         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
17227         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
17228         these routines to cope with both kinds of fields.
17229
17230 2006-12-12  Miguel de Icaza  <miguel@novell.com>
17231
17232         * metadata.c (mono_type_to_unmanaged): Handle the case where
17233         type->data.klass is a SafeHandle, and in that case, return the
17234         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
17235         MONO_MARSHAL_CONV_SAFEHANDLE. 
17236
17237 2006-12-11  Miguel de Icaza  <miguel@novell.com>
17238
17239         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
17240         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
17241         calling emit_marshal_object.
17242
17243         (emit_marshal_safehandle): Implement marshalling of
17244         SafeHandle parameters (no ref support yet).
17245
17246         (MarshalAction): Document the defines as I implement
17247         them for SafeHandle.
17248
17249         (emit_marshal_object): indentation police.
17250
17251         * class-internals.h: Define MonoSafeHandle.
17252         Add safehandle_class to MonoDefaults type.
17253
17254         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
17255         list of classes to check for fields. 
17256
17257         * domain.c (mono_init_internal): Add SafeHandle to the list of
17258         mono_defaults loaded.
17259
17260 2006-12-15  Raja R Harinath  <rharinath@novell.com>
17261
17262         Fix #80253
17263         * reflection.c (mono_reflection_bind_generic_parameters): If the
17264         generic type definition is a type builder, ensure that it is fully
17265         initialized before instantiating it.  Kill some dead code.
17266
17267 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
17268
17269         * object.c: clear the loader_error () before loading
17270         more metadata stuff (bug #80258).
17271
17272 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
17273
17274         * icall.c, icall-defs.h: type modifiers icalls for
17275         parameters and properties.
17276
17277 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
17278
17279         * object.c, icall.c: fixed warnings.
17280
17281 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17282
17283         * marshal.c: fixed a couple of leaks and coding style in a few places.
17284
17285 2006-12-08  Dick Porter  <dick@ximian.com>
17286
17287         * process.c: Cope with NULL ProcessStartInfo arguments on windows
17288         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
17289         80173.
17290
17291 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17292
17293         * process.c: ProcessStartInfo may have only filename set and
17294         arguments can be NULL.
17295
17296 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17297
17298         * icall.c: fix leak found by Robert Jordan.
17299
17300 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17301
17302         * marshal.c, marshal.h: generate managed method to access an element
17303         of a multi-dimensional array.
17304
17305 2006-11-30  Paolo Molaro (lupus@ximian.com)
17306
17307         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
17308
17309 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17310
17311         * icall.c: back out GetFields () fix until the serialization code is
17312         fixed to not depend on the incorrect behaviour.
17313
17314 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
17315
17316         * profiler.c: provide defaults if none are set.
17317
17318 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
17319
17320         * Makefile.am, attrdefs.h: new public header file with
17321         constants for attributes for use by embedders.
17322
17323 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17324
17325         * icall.c: GetFields () fix for bug #80064.
17326
17327 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
17328
17329         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
17330         removed long unused icalls.
17331
17332 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
17333   
17334         * marshal.c: 
17335                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
17336                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
17337                 can be generated without a delegate class.
17338                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
17339         
17340         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17341
17342 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17343
17344         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
17345         #80069.
17346
17347 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17348
17349         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
17350         icall-def.h: added icalls needed by System.GC.
17351
17352 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
17353
17354         * loader.c: ensure the class in catch clauses is handled
17355         correctly for generics methods (fixes bug#79980).
17356
17357 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
17358
17359         * monitor.h, monitor.c: added mono_locks_dump () function
17360         to help debug deadlocks involving managed locks.
17361
17362 2006-11-13  Dick Porter  <dick@ximian.com>
17363
17364         * file-io.c (get_file_attributes): If the file is a symlink try
17365         and get the stat data for the target, but also add the
17366         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
17367         the specs for the windows symlink support, but will probably have
17368         to be reworked when I have test data from a vista machine.  Fixes
17369         bug 79887.
17370
17371 2006-11-13  Dick Porter  <dick@ximian.com>
17372
17373         * gc.c (mono_domain_finalize): 
17374         * marshal.c (mono_delegate_begin_invoke): 
17375         * threadpool.c (socket_io_init, mono_thread_pool_init)
17376         (mono_thread_pool_finish): 
17377         * monitor.c (mono_monitor_try_enter_internal): 
17378         * threads.c (mono_thread_resume, mono_thread_init)
17379         (mono_thread_suspend_all_other_threads)
17380         (mono_thread_execute_interruption): 
17381         * appdomain.c (mono_domain_unload): Check for NULL error returns
17382         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
17383         75733.
17384
17385 2006-11-11  Miguel de Icaza  <miguel@novell.com>
17386
17387         * process.c
17388         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
17389         Only close the handle if the value of the handle is not
17390         INVALID_HANDLE_VALUE.  This just makes the process a bit more
17391         robust.
17392
17393         Improvement for #75733, so that we do not run into this problem. 
17394
17395         
17396         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
17397         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
17398         internal variables.  Fixes #79462 
17399         
17400
17401 2006-11-09  Dick Porter  <dick@ximian.com>
17402
17403         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17404         Use poll() not select().  Fixes bug 79397.
17405
17406 2006-11-09  Raja R Harinath  <rharinath@novell.com>
17407
17408         Fix #79872
17409         * assembly.c (mono_assembly_load_from_full): Check that the given
17410         image has an assembly manifest.
17411
17412 2006-11-09  Ankit Jain  <jankit@novell.com>
17413
17414         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
17415         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
17416         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
17417
17418 2006-11-07  Dick Porter  <dick@ximian.com>
17419
17420         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17421         Put the old resolver behaviour back for pre-2.0 profiles.
17422
17423 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17424
17425         * threadpool.c: precise GC and locking fixes.
17426
17427 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17428
17429         * class.c: don't load types that have an explicit unaligned
17430         managed reference. Provide better info in the TypeLoad exception.
17431         Part of the fix for bug #79744.
17432         * object.c: use the correct check for class type load issues.
17433
17434 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17435
17436         * class.c: enforce alignment of fields with managed references
17437         even when Pack=1 is forced by the user (bug #77788).
17438
17439 2006-11-03  Dick Porter  <dick@ximian.com>
17440
17441         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17442         If the address reverse lookup fails, return it as the hostname
17443         anyway.  Fixes bug 79721.
17444
17445 2006-11-03  Dick Porter  <dick@ximian.com>
17446
17447         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
17448         Fix build on Windows.
17449
17450 2006-11-02  Dick Porter  <dick@ximian.com>
17451
17452         * icall-def.h: 
17453         * object-internals.h: 
17454         * exception.c (mono_get_exception_thread_interrupted): 
17455         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
17456         Fixes bug 74525.
17457
17458         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
17459         Check for pending Thread.Interrupt.
17460
17461 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
17462         * loader.c: Fixed bug 79684.
17463
17464 2006-10-27  Dick Porter  <dick@ximian.com>
17465
17466         * file-io.c (get_file_attributes): Force symlinks to directories
17467         to be returned as a regular file.  Fixes bug 79733.
17468 2006-10-26  Dick Porter  <dick@ximian.com>
17469
17470         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
17471         CreateFile to open a directory then we need to set the
17472         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
17473
17474 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
17475
17476         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
17477         friends.
17478
17479 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17480
17481         * sgengc.c: small cleanup of timer code.
17482
17483 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17484
17485         * sgen-gc.c: fix some warnings and start adding support for
17486         complete object removal on domain unload.
17487
17488 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
17489
17490         * assembly.c: build_assembly_name should not consider a version
17491         number without build or revision number invalid. Fixes bug #79715.
17492
17493 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
17494
17495         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
17496         call kernel32 function OutputDebugString directly.
17497         
17498         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17499         
17500 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
17501
17502         * reflection.c: small cleanup, using a function to insert a MonoString
17503         in the string heap.
17504
17505 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
17506
17507         * reflection.c: moving GC fixes.
17508
17509 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
17510
17511         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
17512         all the objects with finalizers belonging to an unloading appdomain.
17513
17514 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
17515
17516         * sgen-gc.c: added ability to allocate even when the nursery is fully
17517         pinned and fixed a couple of bugs.
17518
17519 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17520
17521         * threads.h: Revert the last change for now.
17522
17523         * threads.h (mono_thread_get_pending_exception): Rename this to
17524         mono_thread_get_undeniable_exception ().
17525
17526 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
17527
17528         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
17529         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
17530         when fname does not refer to valid assembly. This result in a more
17531         meaningful error message.
17532         * exception.c: added mono_get_exception_bad_image_format2 which 
17533         constructs a BadImageFormatException using the ctor taking a custom
17534         message and the file name. Passing in a NULL msg results in a default
17535         message.
17536         * exception.h: define mono_get_exception_bad_image_format2 function.
17537         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
17538         when file name pointed to an invalid IL image. Use 
17539         mono_get_exception_file_not_found2 to construct FileNotFoundException,
17540         as this results in a more meaningful error message.
17541
17542 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17543
17544         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
17545         #79465.
17546
17547 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
17548
17549         * metadata.c (mono_type_size): Change the align parameter to guint32 for
17550         consistency with the other _size functions.
17551         (mono_type_stack_size): Ditto.
17552
17553         * class.c object.c icall.c: Fix warnings caused by the above change.
17554
17555         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
17556
17557         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
17558
17559         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
17560
17561 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17562
17563         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
17564         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
17565         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
17566         threadpool.h, threads-types.h: mark more internal functions.
17567
17568 2006-10-11  Dick Porter  <dick@ximian.com>
17569
17570         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17571         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
17572         reproduce the bug even before applying the fix.)
17573
17574 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
17575
17576         * reflection.c: allow retrieving attributes for arguments in generic
17577         methods (bug #79241).
17578
17579 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
17580
17581         * debug-mono-symfile.c: properly check fopen () result (found by
17582         coverity).
17583
17584 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
17585
17586         * reflection.c: make error message clearer and fixed two
17587         issuelets found by Coverity.
17588
17589 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
17590
17591         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
17592
17593 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17594
17595         * object-internals.h, gc-internal.h, profiler-private.h:
17596         mark internal functions.
17597
17598 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17599
17600         * reflection.c: put data in the text section.
17601         * icall.c: recognize more types in type_from_typename ().
17602         * process.c, marshal.c: added some GC FIXMEs.
17603
17604 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17605
17606         * loader.c: check for NULL before initializing.
17607
17608 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
17609
17610         * gc.c (finalizer_thread): Use a non-alertable wait here.
17611
17612         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
17613         until the correct solution is found.
17614
17615 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17616
17617         * reflection.c (mono_module_get_object): Avoid an assert when operating on
17618         modules with no metadata. Fixes #79596.
17619
17620         * image.c (load_metadata_ptrs): Put back the error message when
17621         the #- heap is encountered since the support is not complete yet.
17622
17623 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17624
17625         * gc.c: do not allow the user to SuppressFinalize () a
17626         delegate because it would leak the trampoline if present.
17627
17628 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17629
17630         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
17631         PropertyPtr table.
17632
17633 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
17634
17635         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
17636
17637         * metadata.c (mono_metadata_get_param_attrs): Ditto.
17638
17639         * row-indexes.h: Add definitions for *Ptr tables.
17640
17641         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
17642
17643         * metadata.c (mono_metadata_translate_token_index): New helper function to
17644         translate table indexes used in uncompressed metadata.
17645         (mono_metadata_decode_table_row): Ditto.
17646         (mono_metadata_decode_table_row_col): Ditto.
17647
17648         * metadata.c: Add table schema for *Ptr tables.
17649
17650         * class.c loader.c: Use the new helper function to access the affected metadata
17651         tables.
17652         
17653         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
17654         #38532.
17655         
17656 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
17657
17658         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
17659         sequences which can be unbounded in size. Fixes #79583.
17660
17661 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
17662
17663         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
17664         static initialization.
17665
17666         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
17667
17668         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
17669
17670         * domain.c (mono_domain_free): Free up type_init_exception_hash.
17671
17672         * object.c (mono_runtime_class_init): Implement correct semantics when a static
17673         ctor fails, i.e. throw the same exception on subsequent accesses.
17674         
17675 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
17676
17677         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
17678         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
17679         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
17680         Handle marshalling of interfaces and VARIANTs contained in structs.
17681         
17682         Code is contributed under MIT/X11 license.
17683         
17684 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
17685
17686         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
17687         
17688         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
17689         mempool.
17690
17691 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17692
17693         * console-io.c: ignore previous SIGINT handler.
17694
17695 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
17696
17697         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
17698         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
17699         #79460, #79461, #79485.
17700
17701         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
17702
17703         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
17704         #79217.
17705
17706 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
17707
17708         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
17709         could be generated from it.
17710
17711 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
17712
17713         * rand.c: fix read loop to correctly handle EINTR.
17714
17715 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17716
17717         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
17718         internal calls are defined to keep methods closer to the declaring
17719         type and allow a significant reduction in runtime relocations and
17720         memory usage.
17721
17722 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
17723
17724         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
17725         exception message to have FileNotFoundException use the default
17726         assembly load error message. Fixes bug #79426.
17727         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
17728
17729 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17730
17731         * threadpool.c: (start_thread_or_queue) use the root domain when
17732         creating the thread instead of the async object one.
17733
17734 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
17735
17736         * class.c, object.c, class-internals.h, reflection.c:
17737         for arrays, store element_size inside MonoClass (speedup
17738         for array object creation).
17739
17740 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
17741
17742         * icall.c: fixed CodeBase to use the file name and not the module
17743         name (bug #79365).
17744
17745 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17746
17747         * mono-debug.c, mono-debug.h: export find_method as
17748         mono_debug_find_method ().
17749
17750 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17751
17752         * debug-helpers.c, class-internals.h: added a few functions useful
17753         when debugging under gdb.
17754
17755 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17756
17757         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
17758         characters that need special handling.
17759
17760 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
17761
17762         * mono-config.c: make the os/cpu specification more flexible,
17763         allowing lists and negation.
17764
17765 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
17766
17767         * marshal.c: COM Interop fixes. Handle case where method->klass.
17768         is interface. Handle BSTR/MonoString when null. Use CDECL as 
17769         calling convention on non-windows platforms. This is for
17770         compatibility with XPCOM and MainWin COM.
17771         
17772         Code is contributed under MIT/X11 license.
17773         
17774
17775 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
17776
17777         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
17778         correctly. Fixes #79217.
17779
17780         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
17781
17782 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
17783
17784         * mono-config.c: allow both an os and cpu attribute for dllmap
17785         and dllentry elemnets to enable a single config file to be used
17786         for multiple architectures.
17787
17788 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
17789
17790         * loader.c: MonoLoaderError was cleared too soon on load failure.
17791         Fixes bug #79424.
17792
17793 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
17794
17795         * icall.c: use the defining class vtable when accessing a
17796         static field, not a pobblibly derived class.
17797
17798 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
17799
17800         * icall.c string-icalls.c: Remove references to unicode.h.
17801
17802         * unicode.h unicode.c Makefile.am: Remove these unused source files.
17803
17804         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
17805
17806         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
17807         indicating the image where custom marshaller types should be looked up.
17808         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
17809         custom marshallers, instead of corlib. Fixes #79425.
17810
17811 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
17812
17813         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
17814
17815 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
17816
17817         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
17818         Implement Environment.ProcessorCount.
17819         
17820         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
17821         Implement Environment.ProcessorCount.
17822         
17823         * icall.c: 
17824         Add Environment.ProcessorCount icall.
17825         
17826         Patch by Jason McFall.
17827
17828 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17829
17830         * assembly.c: don't append .exe/.dll when the filename already contains
17831         one of those extensions.
17832
17833 2006-09-12  Martin Baulig  <martin@ximian.com>
17834
17835         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
17836         to array interfaces.
17837
17838 2006-09-11  Martin Baulig  <martin@ximian.com>
17839
17840         * reflection.c (mono_image_build_metadata): Create the
17841         MethodImpl's after emitting all types and methods, so we don't
17842         need another fixup pass for them.
17843
17844 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
17845
17846         * class.c (mono_class_from_name_case): Fix regression introduced by the last
17847         change.
17848
17849 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
17850
17851         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
17852         unload.
17853
17854 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
17855
17856         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
17857         args is not set. Fixes #78926.
17858
17859 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
17860
17861         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
17862
17863         * image.c (load_class_names): Move this to class.c, and rename it to 
17864         'mono_image_init_name_cache'.
17865         (load_modules): Fix a warning.
17866
17867         * class.c icall.c image.c: Initialize image->name_cache lazily.
17868
17869         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
17870         on its name using information in the AOT file.
17871
17872         * class.c (mono_class_from_name): Use the new hook function.
17873
17874 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
17875
17876         * reflection.c (mono_param_get_objects): Handle enum default parameter values
17877         correctly.
17878
17879         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
17880         Fixes #79289.
17881         
17882 2006-09-06  Martin Baulig  <martin@ximian.com>
17883
17884         * icall.c (mono_lookup_internal_call): Small fix.
17885
17886 2006-09-05  Raja R Harinath  <rharinath@novell.com>
17887
17888         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
17889         double g_free.
17890
17891 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
17892
17893         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
17894         when --debug is specified.
17895
17896 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
17897
17898         * class.c (setup_generic_array_ifaces): Fix a warning.
17899
17900 2006-09-04  Miguel de Icaza  <miguel@novell.com>
17901
17902         * Temporarily remove the patch to assemly.c that checks the
17903         assembly versions as it breaks our gacutil.
17904
17905 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
17906
17907         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
17908
17909         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
17910         a net 1.0 runtime.
17911
17912         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
17913         created using the default ctor. Fixes #79152.
17914         (mono_string_builder_to_utf16): Ditto.
17915
17916 2006-09-01  Martin Baulig  <martin@ximian.com>
17917
17918         Fix handling of the generic array interfaces.
17919
17920         * class-internals.h
17921         (MonoDefaults): Removed `generic_array_class' and added
17922         `generic_ilist' class.
17923
17924         * class.c
17925         (mono_bounded_array_class_get): Add the new generic array interfaces.
17926         (setup_generic_array_ifaces): New static method; create vtable
17927         entries for each method in the generic array interfaces.
17928
17929         * metadata.c
17930         (select_container): Allow "parent-less" generic methods.
17931
17932         * marshal.c
17933         (mono_marshal_get_generic_array_helper): New public method.
17934
17935         * icall.c
17936         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
17937         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
17938         moved the interncall into System.Array.
17939
17940 2006-09-01  Raja R Harinath  <rharinath@novell.com>
17941
17942         A few more cases of avoiding work on types with ->byref set.
17943         Has the real fix for #79238
17944         * icall.c (is_generic_parameter): New helper.
17945         (ves_icall_Type_GetGenericParameterPosition): Use it.
17946         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
17947         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
17948         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17949         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
17950         reference types.
17951         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
17952         reference types.
17953         (ves_icall_Type_get_IsGenericInstance): Likewise.
17954         (ves_icall_Type_get_IsGenericType): Likewise.
17955
17956 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
17957
17958         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
17959         class if possible.
17960
17961         * mempool.h (mono_mempool_get_allocated): New helper function.
17962
17963         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
17964         change.
17965
17966         * mempool.c: Fix warnings and the calculation of stats.
17967
17968         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
17969
17970         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
17971
17972         * loader.c (mono_get_method_from_token): Update method_count stat.
17973
17974         * class-internals.h (MonoStats): Add some stats.
17975
17976 2006-08-31 Robert Jordan  <robertj@gmx.net>
17977
17978         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
17979         with managed variants.
17980         All code is contributed under the MIT/X11 license.
17981         
17982 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
17983
17984         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
17985         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
17986
17987         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
17988
17989         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
17990         with cycles in classes.
17991
17992         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
17993
17994         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
17995         missing a [MarshalAs] directive. Fixes #79203.
17996
17997         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
17998         klass->marshal_info. Fixes #79217.
17999
18000 2006-08-30  Martin Baulig  <martin@ximian.com>
18001
18002         Committing a patch from Joachim Ante <joe@otee.dk>:
18003         Add support for binary data symbol stores.
18004
18005         * debug-mono-symfile.c
18006         (mono_debug_open_mono_symbol_file): Renamed into
18007         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
18008         arguments.
18009
18010         * mono-debug.c
18011         (mono_debug_open_image): Added `raw_contents' and `size' args.
18012         (mono_debug_init_2_memory): New public function.
18013
18014 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
18015
18016         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
18017
18018 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18019
18020         * appdomain.c: implement support for ShadowCopyFiles.
18021
18022 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
18023
18024         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
18025         when value is NULL (and should remove CID #51).
18026
18027 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18028
18029         * image.c: moved 2 functions to ../utils.
18030
18031 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
18032
18033         * gc.c: cope with the target object of a GC handle being NULL
18034         (bug #78877).
18035
18036 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
18037
18038         * class.c: recursively check parent's explicit implementations
18039         of interface methods (fixes bug #79125).
18040
18041 2006-08-19  Miguel de Icaza  <miguel@novell.com>
18042
18043         * filewatcher.c: Avoid warnings when building, do not redefine
18044         constants that are defined.
18045
18046         Remove warnings.
18047
18048 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18049
18050         * image.c: don't fail when the link points to an absolute path.
18051
18052 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
18053
18054         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
18055         Fix CID #3.
18056
18057 2006-08-17  Miguel de Icaza  <miguel@novell.com>
18058
18059         * image.c (full_path): A new method used to obtain the actual path
18060         of an assembly even in the presence of symbolic links.  
18061
18062         This is necessary for the case where we are running a binary that
18063         has been GACed, but we are using the "published" path name
18064         ($prefix/mono/1.0/blah.exe) which happens to point to the real
18065         file in the GAC.
18066
18067         This was the source of the failure for the `xsp' command with the
18068         recent AppDomain changes, as far as the runtime was concerned,
18069         there were two different assemblies: $prefix/mono/1.0/blah.exe and
18070         $prefix/mono/gac/blah/version/blah.exe.
18071
18072         (do_mono_image_open): use full path
18073
18074 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18075
18076         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
18077
18078 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
18079
18080         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
18081         domain_id is supplied. Fix CID #241 and corlib's unit tests.
18082
18083 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18084
18085         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
18086         small structures. Fixes #78990.
18087
18088 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18089
18090         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
18091
18092         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
18093
18094 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18095
18096         * appdomain.c:
18097         * marshal.c: don't load all the assemblies from a domain into newly
18098         created ones. The new domains might have different rules and load
18099         assemblies from different locations. Fixes bug #76757.
18100
18101         Patch by Lluis. Conflicts resolved by Brian Crowell.
18102
18103 2006-08-16  Alp Toker  <alp@atoker.com>
18104
18105         * socket-io.c: First half of the fix for #79084.
18106         Set sa_size to the length of the content, not that of the struct.
18107         Don't add NULL suffix to the content, this should be done in
18108         managed code if needed.
18109
18110 2006-08-14  Raja R Harinath  <rharinath@novell.com>
18111
18112         Fix part of #79012
18113         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
18114         mono_metadata_parse_type returns NULL.
18115
18116 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
18117
18118         * normalization-tables.h : new file for string normalization data.
18119         * locales.c, locales.h, icall.c :
18120           added load_normalization_resource() for string normalization,
18121           and icall as well.
18122         * Makefile.am : added normalization-tables.h to the sources.
18123
18124 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
18125
18126         * marshal.c: Add more helper functions to reduce code duplication and use them
18127         everywhere.
18128
18129 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
18130
18131         * marshal.c: Fix non-x86 stdcall warnings.
18132         
18133         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
18134         them everywhere.
18135
18136 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
18137
18138         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
18139         type check on multi-dimensional arrays. Fixes #79000.
18140
18141 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
18142
18143         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
18144         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
18145         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
18146         * class-internals.h: add is_com_object to class structure.
18147         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
18148         null checks to COM object marshalling. Fix .ctor call on RCW.
18149         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
18150         
18151         All code is contributed under the MIT/X11 license.
18152
18153 2006-08-09  Dick Porter  <dick@ximian.com>
18154
18155         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
18156         racing mono_monitor_allocator_lock() somewhere, so don't delete
18157         the critical section for now.  Found by running and exiting
18158         monodevelop.
18159
18160 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
18161
18162         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
18163         (ves_icall_System_ComObject_FindInterface): Ditto.
18164         (ves_icall_System_ComObject_CacheInterface): Ditto.
18165
18166         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
18167         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
18168
18169 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18170
18171         * threadpool.c: treat pipes from process asynchronous reads as sockets
18172         when reading from them, so we get select/poll or epoll to wait for
18173         data.
18174
18175 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
18176
18177         * loader.c: Fix a typo (CID #233) in the null check.
18178
18179 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
18180
18181         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
18182         Hopefully fixes #78949.
18183         
18184         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
18185         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
18186         bytes. Fixes #78972.
18187
18188 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18189
18190         * filewatcher.c: we need to set errno here.
18191
18192 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18193
18194         * filewatcher.c: let Win32Exception get the error value.
18195
18196 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18197
18198         * filewatcher.c: translate errno into win32 errors for Win32Exception
18199         to know what happened.
18200
18201 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
18202
18203         * threadpool.c: Fix more warnings.
18204
18205         * assembly.c (search_loaded): Fix warnings.
18206
18207         * threadpool.c (mono_thread_pool_finish): Fix warnings.
18208         (mono_async_invoke): Ditto.
18209
18210 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
18211
18212         * object.c (mono_remote_class_vtable): Need to create proxy vtable
18213         entries for __ComObject type in addition to ComImport types.
18214         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
18215         about hash table.
18216         
18217         All code is contributed under the MIT/X11 license.
18218
18219 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18220
18221         * image.c: avoid tentative loading of modulerefs that contain
18222         no metadata (P/Invoke library names).
18223
18224 2006-07-28  Dick Porter  <dick@ximian.com>
18225
18226         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
18227         mono_loader_lock() somewhere, so don't delete the critical section
18228         for now.  Found by running and exiting monodevelop.
18229
18230 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18231
18232         * filewatcher.c: define the inotify syscalls when we're building on
18233         linux and have sys/syscall.h. The build system might not have support
18234         for inotify but the target system might have it.
18235
18236 2006-07-26  Miguel de Icaza  <miguel@novell.com>
18237
18238         * domain.c: Documentation updates.
18239
18240         * loader.c (mono_free_method): Do not release the method
18241         information if we are being profiled, as profilers will use this
18242         information at shut down to present some data to the user.
18243
18244         This is needed so that the profiler does not crash, as the
18245         profiler tends to keep MonoMethods around, and they might become
18246         invalid if we free these.
18247
18248         (mono_get_method_constrained): Return the original CIL stream
18249         method as well, so verification can be performed against it.
18250
18251 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18252
18253         * filewatcher.[ch]: support for inotify file system watcher.
18254         * icall.c: add new internal calls for the inotify file system watcher.
18255
18256 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18257
18258         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
18259         #78888.
18260
18261 2006-07-20  Dick Porter  <dick@ximian.com>
18262
18263         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
18264         warning.
18265
18266 2006-07-20  Dick Porter  <dick@ximian.com>
18267
18268         * threads.c (start_wrapper): Do the thread cleanup while we still
18269         hold a reference to its object.  Fixes bug 78123.
18270
18271 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
18272
18273         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
18274         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
18275           "managed-to-managed".
18276         * icall.c: Redirect string constructors that take sbyte* to
18277           ves_icall_System_String_ctor_RedirectToCreateString.
18278         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
18279           to CreateString () methods with matching signature.
18280         * reflection.c: Use original security informations for
18281           MONO_WRAPPER_MANAGED_TO_MANAGED.
18282         * security-manager.c: Use original security informations for
18283           MONO_WRAPPER_MANAGED_TO_MANAGED.
18284         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
18285           that is a placeholder and only its address should be used.
18286         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
18287           that is a placeholder and only its address should be used.
18288
18289 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
18290
18291         Begin implementing COM Interop.
18292         * appdomain.c: Increment corlib version.
18293         * class.c: Set ComImport classes' parent to __ComObject.
18294         * loader.c: Mark cominterop methods as such.
18295         * domain.c: Add __ComObject class to MonoDefaults structure.
18296         * image.c: Add 2 hashtables to the image for COM Interop related methods
18297         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
18298         using the mempool allocator
18299         
18300         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
18301         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
18302         declaration for mono_metadata_type_dup_mp.
18303         
18304         * debug-helpers.c: Added strings for two additional wrapper types
18305         * object.c: Create proxy objects for ComImport classes
18306         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
18307         and added __ComObject class to MonoDefaults structure.
18308         
18309         * object-internals.h: Finish MonoRealProxy definition, and add definition of
18310         MonoComInteropProxy and MonoComObject.
18311         
18312         * marshal.c: Added support for COM Interop
18313         (signature_cominterop): Converts managed signature to corresponding
18314         unmanaged COM signature.
18315         (cominterop_get_function_pointer): gets unmanaged function pointer via
18316         COM object vtable
18317         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
18318         (cominterop_get_method_interface): returns interface type that method is defined on
18319         (mono_mb_emit_cominterop_call): emits native call to function pointer
18320         gotten from vtable
18321         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
18322         that matches signature of unmanaged function.
18323         (cominterop_get_native_wrapper): wrapper around adjusted method call.
18324         (cominterop_get_invoke): forwards call from proxy to __ComObject
18325         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
18326         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
18327         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
18328         
18329         * marshal.h: Added Marshal icall declarations.
18330         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
18331         so we can access them in finalizer
18332         
18333 2006-07-14  Dick Porter  <dick@ximian.com>
18334
18335         * object.c (mono_type_initialization_cleanup): Fix a race
18336         condition by temporarily commenting out the critical section
18337         deletion.
18338
18339 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
18340
18341         * reflection.c (create_custom_attr): Fix some warnings.
18342         (create_custom_attr_data): Ditto.
18343         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
18344         types. Fixes #78855.
18345
18346 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
18347
18348         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
18349
18350         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
18351
18352 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
18353
18354         * reflection.c (resolve_object): Add support for DynamicMethod.
18355
18356         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
18357         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
18358
18359 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
18360
18361         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
18362         don't leak GPtrArray's pdata has we have no use (nor free) for it.
18363
18364 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
18365
18366         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
18367         Fixes #77888.
18368
18369 2006-06-30  Raja R Harinath  <rharinath@novell.com>
18370
18371         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
18372         slightly: remove a shadow local variable.
18373
18374 2006-06-29  Raja R Harinath  <rharinath@novell.com>
18375
18376         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
18377         definition that introduces the virtual function slot.
18378         Also fix Coverity #105.
18379
18380 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
18381
18382         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
18383         for dynamic assemblies. Fixes #78724.
18384
18385 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
18386
18387         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
18388         Fixes #78722.
18389
18390 2006-06-21  Martin Baulig  <martin@ximian.com>
18391
18392         * reflection.c
18393         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
18394         fixes #76484.
18395
18396 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
18397
18398         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
18399
18400 2006-06-20  Raja R Harinath  <rharinath@novell.com>
18401
18402         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
18403         nor TYPEREFs.
18404         * class.c (mono_class_create_from_typespec): Add 'context' argument.
18405         Inflate result if necessary.
18406         (mono_class_get_full): Remove old version.  Rename from
18407         'mono_class_get' and add 'context' argument.  Pass it to
18408         ..._create_from_typespec.
18409         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
18410         (mono_ldtoken): Revert change below.
18411
18412 2006-06-20  Martin Baulig  <martin@ximian.com>
18413
18414         * class.c (mono_ldtoken): Don't pass the generic context to
18415         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
18416
18417 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
18418
18419         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
18420         and later freeing it. Fixes #78638.
18421
18422 2006-06-15  Miguel de Icaza  <miguel@novell.com>
18423
18424         * icall.c (mono_class_get_throw): Revert over-zealous error
18425         throwing, the caller for mono_class_get_throw will cope with
18426         errors when classes are not properly initialized already.
18427
18428         The code still copes with loader exceptions though.
18429
18430         Fixes the regression in reftype1 and reftype3 from the CAS tests.
18431         
18432 2006-06-14  Miguel de Icaza  <miguel@novell.com>
18433
18434         Fixes the `make run1' version of RuntimeAbort (to be commited,
18435         source is in Bugzilla).
18436         
18437         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
18438         FALSE on class loading failure instead of returning true.
18439
18440         * class.c (mono_class_create_from_typedef): It is possible for
18441         mono_metadata_interfaces_from_typedef_full to fail if a class is
18442         not found, cope with this.
18443         
18444
18445 2006-06-14  Dick Porter  <dick@ximian.com>
18446
18447         * socket-io.c: 
18448         * process.c: Fix a bunch of signed/unsigned warnings from gcc
18449         4.1.1
18450
18451 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
18452
18453         * culture-info-table.h : oops, forgot to make it nsync with r61548.
18454
18455 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18456
18457         * icall.c: Another fix for building mono in Visual Studio.
18458
18459 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18460
18461         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
18462         
18463 2006-06-09  Martin Baulig  <martin@ximian.com>
18464
18465         * debug-mono-symfile.c: Put this back and really fix it this
18466         time. Sorry for all the trouble.
18467
18468 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
18469
18470         * icall.c (mono_class_get_throw): Fix a warning.
18471         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
18472         ReflectionTypeLoadException if needed. Fixes #78606.
18473
18474         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
18475         (mono_class_init): Ditto.
18476
18477         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
18478         ref_only exceptions.
18479         (mono_loader_clear_error): Make this work even if there is no error.
18480
18481 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
18482
18483         * object-internals.h marshal.c marshal.h icall.c: Implement method 
18484         Marshal.GetComSlotForMethodInfo using internal call.
18485
18486 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
18487
18488         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
18489         a function for signalling it.
18490
18491         * class.c (mono_class_from_typeref): Use the new kind of loader error when
18492         a referenced assembly is not found.
18493
18494         * loader.c (mono_loader_error_prepare_exception): Add support for 
18495         LOADER_ERROR_ASSEMBLY. Fix formatting.
18496
18497 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
18498
18499         * domain.c appdomain.c class-internals.h marshal.c: Add support 
18500         for VARIANT marshalling on windows and increment corlib version
18501         since Variant struct was added.
18502
18503 2006-06-03  Miguel de Icaza  <miguel@novell.com>
18504
18505         * debug-mono-symfile.c: Revert Martin's previous patch which broke
18506         stack trace line information:
18507
18508         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
18509         (Martin) when looking up B which is between A and C, return A not C.
18510
18511         Bug is #78573.
18512
18513         Thanks to Alexander Olk for tracking this down.
18514
18515 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
18516
18517         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
18518         
18519         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
18520         avoid clobbering its value.
18521         (mono_string_to_lpstr): Fix a warning on windows.
18522
18523 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18524
18525         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
18526
18527         * reflection.c loader.c: Removed references to 'dummy' flag.
18528
18529         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
18530
18531         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
18532         it gets GC tracking.
18533
18534         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
18535         GC tracking.
18536         
18537         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
18538
18539         * marshal.c threadpool.c: Update callers of mono_async_result_new.
18540
18541         * appdomain.c: Bump corlib version.
18542
18543 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18544
18545         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18546         CEE_STIND_REF when working with object references.
18547
18548 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18549
18550         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
18551         Fixes #78539.
18552
18553 2006-05-30  Miguel de Icaza  <miguel@novell.com>
18554
18555         * loader.c (method_from_memberref): Fix argument value for
18556         mono_loader_set_error_method_load (I was passing the MonoClass
18557         instead of the class name char *).
18558
18559 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18560
18561         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18562         CEE_STIND_REF when working with object references.
18563
18564 2006-05-30  Martin Baulig  <martin@ximian.com>
18565
18566         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
18567         mono_method_full_name() change and replace the ':' with a '.'
18568         here.
18569
18570 2006-05-30  Martin Baulig  <martin@ximian.com>
18571
18572         * debug-mono-symfile.c
18573         (mono_debug_symfile_lookup_location): Fix the algorithm:
18574         when looking up B which is between A and C, return A not C.
18575
18576 2006-05-29  Martin Baulig  <martin@ximian.com>
18577
18578         * mono-debug.h
18579         (MonoDebugMethodInfo): Make the typedef public.
18580         (MonoDebugSourceLocation): New public struct.
18581
18582         * mono-debug.c
18583         (mono_debug_source_location_from_address): Removed.
18584         (mono_debug_source_location_from_il_offset): Removed.
18585         (mono_debug_il_offset_from_address): Removed.
18586         (mono_debug_address_from_il_offset): Removed.
18587         (mono_debug_lookup_method): New public function.
18588         (mono_debug_lookup_source_location): New public function; replaces
18589         the old mono_debug_source_location_from_*() functions; see the
18590         inline documentation.
18591         (mono_debug_free_source_location): New public function.
18592         (mono_debug_print_stack_frame): New public function; see the
18593         inline documentation.
18594
18595         * debug-mono-symfile.c
18596         (mono_debug_find_source_location): Renamed into
18597         mono_debug_symfile_lookup_location(); only take a
18598         `MonoDebugMethodInfo *' and an `offset' argument; added inline
18599         documentation.
18600         (mono_debug_find_method): Renamed into
18601         mono_debug_symfile_lookup_method().
18602
18603 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
18604
18605         * assembly.c (mono_assembly_open_full): Dont overwrite the status
18606         returned by mono_image_open_full ().
18607
18608         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
18609         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
18610         #78517.
18611
18612         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
18613         #78518.
18614
18615 2006-05-27  Miguel de Icaza  <miguel@novell.com>
18616
18617         * class.c (mono_class_from_typeref): handle missing images
18618         earlier, deals with bug #78418.   Refactor code; 
18619
18620         Fix a warning introduced in my previous commit (some stale code
18621         from before I revisited my patch).
18622
18623         * class.c (mono_class_create_from_typedef): On failure, remove the
18624         class from the MonoImage->class_cache as the class is not
18625         initialized;   Fixes the leak pointed out by Paolo.
18626
18627 2006-05-25  Dick Porter  <dick@ximian.com>
18628
18629         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
18630         DeleteCriticalSections until I figure out which one may still be
18631         sometimes locked when mono_thread_cleanup is called.
18632
18633 2006-05-24  Dick Porter  <dick@ximian.com>
18634
18635         * threads.c (mono_thread_cleanup): Move the threading cleanup out
18636         of mono_thread_manage and back into its own function, so it can be
18637         called after the finalizer thread has finished.
18638
18639         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
18640
18641 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
18642
18643         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
18644         Fixes #78495.
18645
18646         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
18647         with non-blittable elements.
18648         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
18649
18650 2006-05-24  Martin Baulig  <martin@ximian.com>
18651
18652         * mono-debug-debugger.h (MonoDebuggerEvent): Added
18653         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
18654
18655         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
18656         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
18657         `mono_debugger_event_handler' to NULL.
18658
18659 2006-05-24  Martin Baulig  <martin@ximian.com>
18660
18661         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
18662
18663 2006-05-24  Martin Baulig  <martin@ximian.com>
18664
18665         * mono-debug-debugger.h
18666         (mono_debugger_create_notification_function): Added
18667         `MonoCodeManager *' argument.
18668
18669 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
18670
18671         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
18672
18673 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
18674
18675         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
18676         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
18677         implementation.
18678
18679 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
18680
18681         * icall.c: precise GC support: objects can't be stored in unmanaged
18682         memory anymore, even if they are kept alive by other references: since
18683         they can move the GC needs to be able to always find them.
18684
18685 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
18686
18687         * object.c: precise GC support for static fields. Support
18688         for moving GCs: write barriers and pinned allocation for interned
18689         strings.
18690
18691 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18692
18693         * domain.c, domain-internals.h: precise GC support for the MonoDomain
18694         structure.
18695
18696 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18697
18698         * class.c, gc.c: sgen and precise GC updates.
18699
18700 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
18701
18702         * marshal.h, marshal.c: added write barrier wrapper and precise type
18703         fixes.
18704
18705 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
18706
18707         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
18708         support.
18709
18710 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
18711
18712         * reflection.c: precise and sgen GC updates.
18713
18714 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
18715
18716         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
18717
18718 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
18719
18720         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
18721
18722 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
18723
18724         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
18725         MONO_TYPE_OBJECT. Fixes #78462.
18726
18727 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
18728
18729         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
18730         and blittable types.
18731
18732 2006-05-17  Miguel de Icaza  <miguel@novell.com>
18733
18734         * class.c (mono_class_get_exception_for_failure): Implement parts
18735         of a TODO: if the loader error is set (instead of the class
18736         error), we return a Loader exception that can be properly thrown
18737         elsewhere.
18738
18739         This was exposed by some Winforms 2.0 code that I tried to run
18740         (Atsushi pointed me to it).
18741
18742 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
18743
18744         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
18745         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
18746         
18747         * marshal.c (emit_marshal_vtype): Add limited support for 
18748         UnmanagedType.LPStruct. Fixes #78427.
18749
18750         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
18751         Applied a patch from kangaroo to fix #77523.
18752
18753 2006-05-17  Martin Baulig  <martin@ximian.com>
18754
18755         * threads.c
18756         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
18757         (debugger_thread_created): Removed.
18758         (debugger_thread_exited): Removed.
18759
18760 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
18761
18762         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18763
18764         * object-internals.h (MonoReflectionResource): Sync with managed version.
18765
18766 2006-05-12  Wade Berrier <wberrier@novell.com>
18767
18768         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
18769
18770 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
18771
18772         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
18773         functions try to allocate from the image mempool.
18774
18775 2006-05-12  Dick Porter  <dick@ximian.com>
18776
18777         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
18778
18779 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
18780
18781         * object.c: The FieldGetter and FieldSetter methods require the full
18782         name of the class, not only the name. Fixes bug #78277.
18783
18784 2006-05-11  Miguel de Icaza  <miguel@novell.com>
18785
18786         * loader.c (method_from_memberref): Do not pass the NULL klass to
18787         mono_loader_set_error_() methods.  Pass the non-NULL value
18788         (class). 
18789
18790 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
18791
18792         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
18793         (mono_assembly_close): Null out assembly->image->references after freeing it.
18794
18795         * image.c (mono_image_close): Free image->references.
18796         
18797         * reflection.c (mono_image_basic_init): Fix a small memory leak.
18798
18799 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18800
18801         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
18802         before checking if it's NULL (g_assert).
18803
18804 2006-05-10  Martin Baulig  <martin@ximian.com>
18805
18806         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
18807         I thought I already killed that two months ago, but now it somehow reappeared.
18808
18809 2006-05-10  Martin Baulig  <martin@ximian.com>
18810
18811         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
18812
18813 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
18814
18815         * reflection.c: Allocate memory for dynamically created methods in the image
18816         mempools.
18817
18818 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18819
18820         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
18821         don't use the ad pointer before checking if it's NULL (g_assert).
18822
18823 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
18824
18825         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
18826         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
18827
18828         * marshal.c: Allocate all signatures from mempools.
18829
18830         * marshal.c: Allocate some more signatures from mempools.
18831
18832 2006-05-09  Miguel de Icaza  <miguel@novell.com>
18833
18834         * object.c (mono_load_remote_field): The code used to provide a
18835         temporary variable for returning results if the user did not
18836         provide a result pointer.  But our temporary variable was allocted
18837         on the satck.
18838
18839         Fix calling code to always pass a result area.   Coverity ID 103.
18840
18841 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
18842
18843         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
18844         value, not the old. Fixes #78312.
18845         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
18846
18847         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
18848         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
18849         per-image cache.
18850
18851         * assembly.c (mono_assembly_close): Free image->references.
18852
18853         * assembly.c (mono_assembly_names_equal): Fix a warning.
18854         (mono_assemblies_cleanup): Cleanup more global data.
18855
18856         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
18857
18858         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
18859         ptr_cache and image->modules.
18860
18861         * image.c (mono_image_init): Allocate array_cache lazily.
18862         
18863 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18864
18865         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
18866         behavior was changed recently and has bad side effects.
18867
18868 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
18869
18870         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
18871         
18872         * assembly.c (mono_assembly_close): Remove a debug printf.
18873
18874         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
18875
18876         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
18877         to also allow for temporary references between mono_image_open ()/close ().
18878
18879         * domain.c (get_runtimes_from_exe): Add a FIXME.        
18880
18881 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
18882
18883         * marshal.c: Fix support for dynamic methods.
18884
18885         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
18886
18887         * marshal.c (mono_marshal_cleanup): New cleanup function.
18888
18889         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
18890         image mempools.
18891
18892         * class.c (mono_class_init): Fix leaking class->nested_classes.
18893
18894         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
18895
18896         * image.c (mono_image_init): Initialize the new cashes.
18897
18898         * image.c (mono_image_close): Destroy the new cashes.
18899
18900         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
18901
18902         * mempool.c (mono_mempool_strdup): New helper function.
18903
18904         * class-internals.h: Add prototype for mono_loader_unlock ().
18905
18906         * domain.c (mono_jit_info_table_find): Fix a warning.
18907         (mono_debugger_check_runtime_version): Ditto.
18908
18909         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
18910         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
18911         functions to these modules.
18912
18913         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
18914         metadata modules.
18915         
18916         * marshal.c (mono_free_bstr): Fix a warning.
18917
18918         * assembly.c (mono_assembly_open_full): Fix another small leak.
18919
18920         * object.c: Fix some unload leaks in the remoting code.
18921
18922         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
18923         function.
18924
18925         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
18926
18927         * reflection.c: Fix some unload leaks in dynamic assemblies.
18928
18929 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
18930
18931         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
18932         * marshal.h: Add BSTR support on Win32
18933         * icall.c: Add BSTR icalls
18934         * metadata.h: Add BSTR enums
18935
18936 2006-04-28  Miguel de Icaza  <miguel@novell.com>
18937
18938         Work to catch the crash from #76795 and turn it into an
18939         exception.   As I stubbed out pieces of the VisualBasic support,
18940         I found a number of places where the code was failing and I added
18941         checks to those places. 
18942         
18943         * metadata.c (do_mono_metadata_parse_generic_class): Make this
18944         function return a status code.  If we fail to parse the signature
18945         from mono_metadata_parse_generic_inst, return FALSE.
18946
18947         * loader.c (mono_get_method_from_token): If we fail to load the
18948         method (mono_class_get) return NULL.   
18949
18950         * (method_from_memberref): Return NULL if we are unable to parse
18951         the method signature
18952
18953         (mono_loader_error_prepare_exception): Since we now use the
18954         loader_error flag internally to stop processing, and obtaining
18955         exceptions that might be thrown will walk this code path the
18956         proper way of going from a MonoLoaderError into a
18957         MonoException was convoluted.   This new routine encapsulates the
18958         process of turning the error into an exception and *clearing* the
18959         error afterwards.
18960         
18961 2006-04-27  Miguel de Icaza  <miguel@novell.com>
18962
18963         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
18964         with missing assemblies), and to cope with:
18965
18966                 * Missing fieldref from a non-existing assembly.
18967                 * Missing methodref from a non-existing assembly.
18968
18969         The first batch of work to address *some* of the issues from 76661.
18970         
18971         * object.c (mono_class_create_runtime_vtable): If we fail to
18972         initialize the class raise the exception here. 
18973
18974         * metadata.c (mono_class_get_overrides_full): If any methods fail
18975         to load return the failure to the caller.
18976
18977         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
18978         flagging assemblies that failed to load.   
18979
18980         Do not crash if we are unable to load the assembly.
18981
18982         (mono_assembly_close): Do nothing with REFERENCE_MISSING
18983         assemblies. 
18984
18985         * loader.c (mono_loader_set_error_type_load): Change the
18986         convention to always pass unallocated strings, so we make our own
18987         copies (I know our own code had duplicated strings before, but
18988         this keeps the normal conventions).
18989         (method_from_memberref): Call mono_loader_set_error_method_load
18990         for all possible failures of loading the class. 
18991         Remove assert, turn into a loader error.
18992
18993         (mono_loader_error_to_exception): Move this routine from mini
18994         (mini_loader_error_to_exception) there was no need to have that in
18995         mini. 
18996
18997         * class.c (mono_class_from_typeref): If we were not able to load
18998         the assembly with mono_assembly_load_reference, call the
18999         mono_loader_set_error_type_load to register the problem.
19000
19001         (mono_class_setup_fields): If we fail to load the type from
19002         mono_metadata_parse_type_full, call mono_class_set_failure and
19003         break from the loop.
19004
19005         If class->exception_type is set, we do not layout the fields as
19006         that might crash the runtime, and instead return (from breaking
19007         from the previous loop).
19008
19009         (mono_class_setup_vtable): This now returns a boolean indicating
19010         whether the table was properly setup.   The decision is driven by
19011         mono_class_get_overrides_full which might run into non-existing
19012         methods. 
19013         
19014         (mono_class_init): Returns TRUE on success or FALSE if there was a
19015         problem in loading the type (incorrect assemblies, missing
19016         assemblies, methods, etc).
19017
19018         When we call mono_class_setup_fields we also check for a potential
19019         error inside this call (either a class exception or a general
19020         loader exception).
19021
19022         (mono_class_create_from_typedef): If the parent fails to load
19023         (calling mono_class_get_full) return NULL.
19024         
19025         ** Important **
19026
19027         calls to mono_metadata_parse_type_full should be checked
19028         everywhere and set the mono_class_set_failure
19029         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
19030
19031         The current patch checks the places where my manually constructed
19032         tests show the errors are showing up, but we should do it
19033         everywhere. 
19034
19035         ** Important2 **
19036
19037         mono_class_init return values should be tested everywhere, like
19038         the previous case this is something that we should audit
19039         everywhere and not only on the cases exposed by the tests I
19040         created. 
19041
19042 2006-04-26  Miguel de Icaza  <miguel@novell.com>
19043
19044         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
19045         boolean parameter and instead pass the information on `options'
19046         parameter (FileOptions).
19047
19048         * icall.c: Register the new signature for MonoIO.Open.
19049
19050         * debug-helpers.c (dis_one): Trying to understand how coverity
19051         works.  Fix Run 5, item 78.
19052
19053 2006-04-26  Dick Porter  <dick@ximian.com>
19054
19055         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
19056         dereference.
19057
19058 2006-04-25  Martin Baulig  <martin@ximian.com>
19059
19060         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
19061
19062         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
19063         debugger_thread_created().
19064         (debugger_gc_push_all_stacks): Don't handle the main thread in any
19065         special way.
19066         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
19067         (mono_debugger_finalize_threads): New function; undo the effects
19068         of mono_debugger_init_threads().
19069         (mono_debugger_create_all_threads): Removed.
19070
19071 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
19072
19073         * image.c (mono_image_close): Tidy up trace messages.
19074
19075         * assembly.c (mono_assembly_close): Ditto.
19076
19077         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
19078         no longer references an already freed assembly. Fixes #78168.
19079
19080 2006-04-21  Dick Porter  <dick@ximian.com>
19081
19082         * threads.c (mono_thread_detach): Fix reference counting when
19083         detaching threads.
19084
19085 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
19086
19087         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
19088         #78155.
19089
19090 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
19091
19092         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
19093         (mono_type_to_stind): Ditto.
19094
19095         * marshal.c: Use the new helper functions to simplify code.
19096
19097         * image.c (mono_image_close): Add some code for help debug assembly unloading
19098         problems.
19099
19100         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
19101         image mempool.
19102
19103         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
19104         assembly was already loaded in another appdomain. Fixes #78083.
19105
19106 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
19107
19108         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
19109         referenced assemblies.
19110         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
19111
19112         * domain.c (mono_domain_free): Add a trace message.
19113
19114         * appdomain.c (add_assemblies_to_domain): Ditto.        
19115
19116         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
19117         field.  
19118
19119 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19120
19121         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
19122
19123 2006-04-12  Martin Baulig  <martin@ximian.com>
19124
19125         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
19126         `USE_INCLUDED_LIBGC'.   
19127
19128 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19129
19130         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
19131         the patch contains ../ and a small directory name later. Hopefully fixes
19132         #78035.
19133
19134 2006-04-10  Martin Baulig  <martin@ximian.com>
19135
19136         Clean up the debugger's thread-handling code.
19137
19138         The debugger's thread-handling code has been moved from
19139         ../mini/debug-debugger.c to threads.c.  We now iterate directly
19140         over the `threads' hash, keep track of exiting threads and also
19141         use proper locking.
19142
19143         We can now debug XSP and XSP based applications with the debugger.
19144
19145         * object-internals.h (MonoThread): Added `gpointer end_stack'.
19146
19147         * threads.h
19148         (MonoThreadCallbacks): Removed; this was only used by the debugger.
19149         (mono_install_thread_callbacks): Likewise.      
19150
19151         * threads.c (mono_thread_callbacks): Removed.
19152         (debugger_thread_created, debugger_thread_exited): New static functions.
19153         (start_wrapper): Call debugger_thread_created().
19154         (thread_cleanup): Call debugger_thread_exited().
19155         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
19156         (mono_debugger_init_threads): New public function.
19157         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
19158         iterate directly over the `threads' hash and also use proper locking.
19159
19160         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
19161
19162         * mono-debug-debugger.h
19163         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
19164
19165 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
19166
19167         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
19168         argument type=array. Fixes #78057.
19169
19170 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
19171
19172         * culture-info-table.h : regenerated. Fixed bug #69652.
19173
19174 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
19175
19176         * loader.c metadata.c: Reapply a variant r59116.
19177         
19178         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
19179
19180         * class.c (mono_class_setup_interface_offsets): New internal function.
19181
19182         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
19183         interfaces too. Fixes #77398.
19184
19185         * reflection.c (encode_cattr_value): Add support for 
19186         parameter type=object, argument type=array.
19187         (load_cattr_value): Ditto. Fixes #77916.
19188
19189         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
19190         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
19191
19192         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
19193         a byval char array and CharSet is Ansi.
19194
19195         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
19196
19197 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
19198
19199         * metadata.c: Add some locking comments.
19200         
19201         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
19202         mempool.
19203         (mono_metadata_free_method_signature): Don't free the signature itself.
19204
19205         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
19206
19207         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
19208         reference the same MonoImage.
19209         (mono_assembly_load_from_full): Add an assert.
19210
19211 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
19212
19213         * image.c (mono_image_close): Don't put the image we are about to free into the
19214         loaded_images_guid_hash.
19215
19216         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
19217         to reduce code duplication.
19218
19219         * marshal.c: Register the native functions called by this module as icalls, to
19220         somewhat centralize the creation of MonoMethodSignature's.
19221
19222         * loader.c (mono_method_signature): Add a cache for method signatures.
19223
19224         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
19225         the parameter attributes of a method.
19226         (mono_metadata_parse_method_signature_full): Refactored the computation of
19227         parameter attributes into a separate function. Also avoid one allocation in
19228         most cases.
19229
19230         * assembly.c (mono_assembly_close): Ditto.
19231
19232         * image.c (mono_image_close): Log trace messages with INFO level.
19233
19234         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
19235
19236         * image.c reflection.c: Correct reference counting of image modules.
19237         
19238         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
19239         of this function from the image mempool.
19240         
19241         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
19242         to allow more cached types to be used.
19243
19244         * mono-debug.c (mono_debug_add_method): Appled patch from
19245         David S. Miller  <davem@sunset.davemloft.net>: Access 
19246         minfo->lexical_blocks[] entry elements using read32().
19247
19248 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
19249
19250         * loader.c (mono_free_method): No longer free the method header for non-dynamic
19251         methods as it is allocated from the mempool.
19252
19253         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
19254         image mempool.
19255
19256         * metadata-internals.h: Add comments describing the reference counting scheme
19257         used for MonoImage and MonoAssembly.
19258
19259         * image.c assembly.c reflection.c: Rework reference counting of images and 
19260         assemblies so they are freed when the runtime is shut down. Free some 
19261         additional memory structures when an image is unloaded.
19262         
19263 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
19264
19265         * class.c loader.c reflection.c: Allocate more data structures in
19266         the image mempool.
19267
19268 2006-03-31  Miguel de Icaza  <miguel@novell.com>
19269
19270         * icall.c
19271         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
19272         build on pre glib 2.4 systems.
19273
19274 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
19275
19276         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
19277
19278         * icall.c: Fix some warnings.
19279
19280 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
19281
19282         * culture-info-table.h : regenerated.
19283
19284 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
19285
19286         * threads.c, object-internals.h, verify.c: changed the culture caching
19287         code to use a normal MonoArray for storage so the GC can keep track of
19288         them easily. Fixed bits of the cache logic, too and simplified the
19289         code.
19290
19291 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
19292
19293         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
19294         thread for non-Boehm GCs.
19295
19296 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
19297
19298         * domain.c, object.c, domain-internals.h: reduce the amount of memory
19299         needed to keep track of the data for static fields.
19300
19301 2006-03-29  Raja R Harinath  <rharinath@novell.com>
19302
19303         Fix #75172
19304         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
19305         for interface classes.  Use 'num_methods' instead.
19306         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
19307         before using '->vtable_size' field.
19308
19309 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
19310
19311         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
19312         doesn't contain managed pointers, so use a normal hashtable.
19313
19314 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
19315
19316         * reflection.c, class-internals.h, domain.c: fixed handling of types
19317         used as values for objects in custom attributes (bug #77915):
19318
19319 2006-03-24  Martin Baulig  <martin@ximian.com>
19320
19321         * class.c (mono_class_setup_fields): Added support for generic
19322         instances; fixes #77580.
19323
19324 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19325
19326         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
19327
19328 2006-03-24  Dick Porter  <dick@ximian.com>
19329
19330         * file-io.c (get_file_attributes): More stat macro breakage.
19331         Fixes bug 77759.
19332
19333 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
19334
19335         * profiler.c: added the file=filename option in the default profiler
19336         to output the profile data to filename.
19337
19338 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19339
19340         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
19341         bug #77877.
19342
19343 2006-03-22  Martin Baulig  <martin@ximian.com>
19344
19345         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
19346         allocated `MonoClassField *' in `fb->handle'.
19347
19348 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
19349
19350         * class.c, image.c, metadata-internals.h: implemented new mechanism to
19351         allocate interface ID to save memory and allow better ID reuse on
19352         appdomain unload. setup_generic_vtable () removal from Martin.
19353
19354 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19355
19356         * object.h, appdomain.c, domain.c, exception.c, icall.c,
19357         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
19358         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
19359         write barriers for reference stores with managed objects accessed with
19360         C structures in the runtime and in embedding programs.
19361
19362 2006-03-20  Raja R Harinath  <rharinath@novell.com>
19363
19364         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
19365         'interface_id' and 'max_interface_id' fields of MonoClasses
19366         representing open generic types.
19367
19368 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
19369
19370         * object.h, object.c, icall.c: added functions to deal with
19371         storing valuetypes that contain references in managed objects.
19372         * reflection.c, string-icalls.c, threads.c, marshal.c: small
19373         fixes and comments around uses of mono_array_addr ().
19374
19375 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
19376
19377         * object.h, icall.c, monitor.c: object.GetHashCode ()
19378         implementation that supports the moving garbage collector.
19379
19380 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
19381
19382         * icall.c, threads-types.h, threads.c: implemented finalizer for
19383         LocalDataStoreSlot.
19384
19385 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
19386
19387         * metadata.c (mono_type_size): Add a fixme.
19388         (mono_type_stack_size): Ditto.
19389
19390         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
19391         'type_forwarders' field.
19392
19393         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
19394         attribute from net 2.0.
19395
19396         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
19397         from class.c.
19398
19399         * class.c (mono_class_setup_fields): Fix a warning.
19400         
19401         * class.c (mono_class_from_name): Add support for assemblyref entries
19402         in the EXPORTEDTYPE table.
19403
19404         * reflection.c: Add support for handling type forwarders under net 2.0.
19405
19406         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
19407         
19408 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
19409
19410         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
19411         overwriting entries in ModuleBuild->types, also clean up the code
19412         a little. Fixes #77774.
19413
19414 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
19415
19416         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
19417         load friend assembly info when present.
19418
19419 2006-03-14  Raja R Harinath  <rharinath@novell.com>
19420
19421         Fix crasher on gtest-158.cs.
19422         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
19423         the return value if the MonoClass we want is yet in an
19424         inconsistent state.
19425         * class.c (mono_class_create_from_typedef): Add an comment
19426         explaining an order dependency between mono_class_setup_parent and
19427         mono_class_setup_mono_type.
19428
19429 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
19430
19431         * class.c: documentation updates and events bug fix.
19432
19433 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
19434
19435         * class.c: some cleanup, locking fixes.
19436
19437 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
19438
19439         * class.c: fix the generics code to setup nested
19440         type info to the instantiated type (bug #77770).
19441
19442 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
19443
19444         * marshal.c: fixed a few type correctness issues.
19445
19446 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19447
19448         * loader.c: the Set/Get/Addrtess array methods should be public.
19449
19450 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
19451
19452         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
19453         
19454         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
19455         info->wrapper.
19456
19457 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
19458
19459         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
19460
19461         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
19462
19463         * mempool.c (mono_mempool_alloc): Speed this up a bit.
19464         (mono_mempool_alloc0): Ditto.
19465
19466 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19467
19468         * socket-io.c:
19469         (create_object_from_sockaddr): it was allocating 4 extra bytes
19470         for the AF_UNIX data. Fixes bug #77747.
19471
19472 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
19473
19474         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
19475
19476 2006-03-09  Dick Porter  <dick@ximian.com>
19477
19478         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
19479         Fixes bug 76966 again.
19480
19481 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19482
19483         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
19484         names from r57532
19485         * appdomain.c: Bumped corlib version to 48 (due to r57532)
19486
19487 2006-03-07  Martin Baulig  <martin@ximian.com>
19488
19489         * object.c
19490         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
19491
19492 2006-03-07  Martin Baulig  <martin@ximian.com>
19493
19494         * class.c
19495         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
19496         regression introduced in r56970; see gtest-252.cs.
19497
19498         * loader.c (mono_get_method_constrained): Correctly handle generic
19499         methods; see gtest-253.cs.
19500
19501 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
19502
19503         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
19504
19505 2006-03-04  Martin Baulig  <martin@ximian.com>
19506
19507         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
19508         compute the parent type at runtime, just like we're already doing
19509         it for interfaces.
19510
19511         * reflection.c
19512         (mono_reflection_bind_generic_parameters): Don't compute the
19513         parent type anymore.
19514
19515         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
19516
19517 2006-03-04  Martin Baulig  <martin@ximian.com>
19518
19519         * mono-debug-debugger.h
19520         (mono_debugger_create_notification_function): Allocate memory at
19521         runtime and return a pointer to it.
19522
19523 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
19524
19525         * assembly.c: Fix windows build.
19526         
19527         * assembly.c: Fix build.
19528
19529         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
19530
19531         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
19532         
19533 2006-03-03  Dick Porter  <dick@ximian.com>
19534
19535         * process.c
19536         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19537         Check parameters before dereferencing them.  Fixes Aaron's part of
19538         bug 77393.
19539
19540 2006-03-03  Raja R Harinath  <rharinath@novell.com>
19541
19542         Fix performance regression.
19543         * loader.c (find_method_in_class): Add 'from_class' argument.
19544         Rename 'klass' argument to 'in_class'.  The signature is compared
19545         against the method in 'in_class', and the corresponding method is
19546         returned from 'from_class'.
19547         (find_method): Walk both 'in_class' and 'from_class' in parallel.
19548         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
19549         type definition and generic instantiation in parallel.
19550         (mono_get_method_constrained): Update to changes.
19551
19552 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
19553
19554         * threads.c: make sure the domain is correct, too when doing
19555         mono_thread_attach ().
19556
19557 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
19558
19559         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
19560         windows. Fixes #77683.
19561
19562 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
19563
19564         * object.h, *: introduced specific way to set elements of an array
19565         of references to be used as write barrier. Still need to audit the
19566         uses of mono_array_addr.
19567
19568 2006-03-01  Miguel de Icaza  <miguel@novell.com>
19569
19570         * object-internals.h: New field to cache the assmebly name, patch
19571         from Tambet Ingo (tambet@ximian.com)
19572
19573 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19574
19575         * decimal.h, class-internals.h, metadata-internals.h,
19576         file-io.h: mark a few function declarations as internal, to
19577         reduce the number of PLT entries.
19578
19579 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19580
19581         * file-io.c: fix typo in warning message.
19582
19583 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
19584
19585         * loader.c: on unix, lookup the "*A" version of a function
19586         if charset is auto as a second option before failing.
19587
19588 2006-02-28  Raja R Harinath  <rharinath@novell.com>
19589
19590         * class.h (mono_class_inflate_generic_method): Revert to two
19591         argument version.
19592         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
19593         (mono_class_inflate_generic_method_full): Add.
19594         * class.c (mono_class_inflate_generic_method_full): Rename from
19595         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
19596         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
19597         * loader.c, reflection.c: Update to changes.
19598
19599 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
19600
19601         * icall.c: const fixes and small improvements.
19602
19603 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19604
19605         * threadpool.c: for asynchronous connect(), enable the same workaround
19606         for BSD 6 as for the Mac. Fixes bug #77637.
19607
19608 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
19609
19610         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
19611         formatted classes. Fixes #77524.
19612
19613 2006-02-24  Raja R Harinath  <rharinath@novell.com>
19614
19615         * class.c (inflate_generic_type): Add a couple more
19616         micro-optimizations.
19617         (inflate_generic_context): Don't use the 'gmethod' from
19618         'inflate_with'.
19619         (mono_class_inflate_generic_method): If the method has generic
19620         parameters, but the passed-in context doesn't have a 'gmethod',
19621         create one.  Use the possibly simplified generic instantiation
19622         from the declaring class instead of the one passed in.
19623
19624 2006-02-24  Raja R Harinath  <harinath@gmail.com>
19625
19626         Make generic method signature and method header handling lazy.
19627         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
19628         (inflate_generic_header): Likewise.
19629         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
19630         parameter to avoid inflating types.
19631         (mono_get_inflated_method): Empty out.
19632         * class.h (mono_class_inflate_generic_method): Update to changes.
19633         * loader.c (mono_get_method_from_token): Don't parse signature for
19634         generic methods, nor methods of generic classes.
19635         (mono_method_signature): Rename from 'mono_method_signature'.
19636         Inflate signature on demand.
19637         (mono_method_get_header): Inflate method header on demand.
19638         * reflection.c: Update to changes.
19639
19640 2006-02-23  Raja R Harinath  <rharinath@novell.com>
19641
19642         * metadata.c (mono_metadata_inflate_generic_inst): If the
19643         instantiation is closed, don't bother expanding it in the new
19644         context.
19645         * class.c (inflate_generic_class): If the generic instantiation
19646         doesn't change after inflation, return the argument itself.
19647         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
19648         Add bounds checks.
19649         (inflate_generic_context): If neither the generic class nor the
19650         generic method instantiations change, return the original context.
19651         * reflection.c (mono_method_get_object): Do
19652         'mono_get_inflated_method' before accessing the ->klass field.
19653         (inflate_mono_method): Don't create a MonoGenericMethod unless
19654         necessary.
19655         (inflate_method): Don't pass a constructed type as the declaring
19656         type of a methodbuilder.
19657
19658 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
19659
19660         * object.c: fix memory overwrite.
19661
19662 2006-02-22  Dick Porter  <dick@ximian.com>
19663
19664         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
19665         it doesn't work any more.
19666         (mono_threads_request_thread_dump): Fix unused variable warnings.
19667
19668 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19669
19670         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
19671         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
19672         the public header file.
19673
19674 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
19675
19676         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
19677
19678 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
19679
19680         * class-internals.h, object.c: reduce the size of MonoVTable
19681         and store the interface_offsets array at negative offsets.
19682
19683 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
19684
19685         * metadata.c: tweak table descriptors data structures to reduce
19686         size and runtime relocations.
19687
19688 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19689
19690         * marshal.c: fix some types and opcodes to be type-safe
19691         in marshaling wrappers.
19692
19693 2006-02-21  Ankit Jain  <jankit@novell.com>
19694
19695         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
19696
19697 2006-02-21  Raja R Harinath  <rharinath@novell.com>
19698
19699         * metadata.c (get_constraints): Relax debugging checks for monodis.
19700
19701 2006-02-21  Ankit Jain  <jankit@novell.com>
19702
19703         * metadata.c (mono_metadata_load_generic_params): Move the code
19704         checking for ambiguous generic params from here to mono/dis/get.c
19705         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
19706
19707 2006-02-21  Raja R Harinath  <harinath@gmail.com>
19708
19709         Fix assertion triggered when compiling nemerle.
19710         * class.c (mono_get_shared_generic_inst): Rename from
19711         get_shared_inst and make non-static.
19712         * loader.c (mono_get_shared_generic_method): New.  Used to create
19713         the MonoGenericContext-equivalent of a MonoGenericContainer.
19714         (mono_get_method_from_token): Initialize the 'context' field of
19715         the created MonoGenericContainer.
19716         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
19717         * metadata.c (get_constraints): Add sanity check.
19718         * class-internals.h: Add new internal methods.
19719
19720         * reflection.c (verify_safe_for_managed_space): New sanity check.
19721         Currently checks that owner-less generic parameters aren't allowed
19722         in managed space.
19723         (mono_type_get_object): Use it.
19724         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
19725         that are now in mono_type_get_object.
19726         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
19727
19728 2006-02-19  Raja R Harinath  <harinath@gmail.com>
19729
19730         * metadata.c (mono_type_create_from_typespec): Rename from
19731         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
19732         argument and caching of types in the generic container.
19733         (unwrap_arrays, find_generic_param): Remove.
19734         * metadata-internals.h: Update.
19735         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
19736
19737 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
19738
19739         * class.c (mono_class_get_exception_for_failure): Fix a warning.
19740
19741         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
19742         return values. Fixes #77581.
19743
19744         * class.c (mono_fnptr_class_get): Switch name and name_space.
19745
19746         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
19747         classes and add support for [In, Out] attributes.
19748         (mono_marshal_free_asany): Ditto. Fixes #77524.
19749
19750 2006-02-18  Raja R Harinath  <harinath@gmail.com>
19751
19752         * class.c (mono_class_from_generic_parameter): Make more robust to
19753         incomplete MonoGenericContainers from monodis.
19754
19755 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19756
19757         * class-internals.h: added some more exception types.
19758         * class.c, metadata.c: added a few checks to handle missing
19759         types.
19760
19761 2006-02-17  Raja R Harinath  <rharinath@novell.com>
19762
19763         Use owner-less generic-params some more.
19764         * class.c (my_mono_class_from_generic_parameter): Remove.
19765         (mono_class_from_generic_parameter): Handle null image,
19766         param->name and param->owner.
19767         (mono_class_from_mono_type): Update.
19768         (mono_class_create_from_typespec): Remove 'container' parameter.
19769         If that parameter is non-null, the result is always inflated by
19770         'mono_class_get_full' anyway.
19771         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
19772         parameter.
19773         (mono_class_get_full): Update.
19774
19775         * class.c (inflate_generic_type) [GENERICINST]: If the generic
19776         instance is not open, don't bother inflating.
19777         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
19778         parse metadata for inflated classes.
19779         (_mono_class_get): Change GenericContext* parameter to
19780         GenericContainer*.
19781         (mono_class_create_from_typespec): Likewise.  Simplify, and
19782         implement trivially.  All the cases are handled in
19783         mono_class_from_mono_type.  Don't inflate returned class.
19784         (mono_class_get_full): Delegate GENERICINST optimization to
19785         inflate_generic_type.
19786         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
19787
19788 2006-02-16  Dick Porter  <dick@ximian.com>
19789
19790         * socket-io.c (create_object_from_sockaddr): Fix typo.
19791         (create_sockaddr_from_object): Check array lengths before
19792         potentially accessing items off the end.
19793         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
19794         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
19795         (ves_icall_System_Net_Sockets_Socket_Send_internal)
19796         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
19797         length checks to avoid wraparound overflows.
19798         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
19799         contents of the array of sockets
19800         (hostent_to_IPHostEntry2)
19801         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
19802         Check return value of inet_ntop ().
19803         (addrinfo_to_IPHostEntry): Fix typo
19804
19805 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19806
19807         Type metadata parsing doesn't use generic-instantiation information.
19808         * metadata.c (mono_metadata_parse_array_full): Change
19809         MonoGenericContext* parameter to MonoGenericContainer*.
19810         (mono_metadata_parse_type_full): Likewise.
19811         (mono_type_create_from_typespec_full): Likewise.
19812         (mono_metadata_parse_mh_full): Likewise.
19813         (mono_metadata_parse_generic_inst): Likewise.
19814         (do_mono_metadata_parse_generic_class): Likewise.
19815         (do_mono_metadata_parse_type): Likewise.
19816         * metadata-internals.h: Update to changes.
19817         * class.c (mono_class_find_enum_basetype): Likewise.
19818         (mono_class_setup_fields): Likewise.
19819         (mono_class_create_from_typespec): Likewise.
19820         * loader.c (method_from_methodspec): Likewise.
19821         (mono_get_method_from_token): Likewise.
19822         (mono_method_get_header): Likewise.
19823
19824 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19825
19826         * marshal.c: handle additional GENERICINST case (patch from
19827         Thong Nguyen <tum@veridicus.com>).
19828         Fix a few cases where LDIND_I/STIND_I was used for references.
19829
19830 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19831
19832         * reflection.c (mono_reflection_get_token): Remove unused variable.
19833
19834 2006-02-16  Martin Baulig  <martin@ximian.com>
19835
19836         * reflection.c (mono_reflection_get_token): Add support for fields
19837         in instantiated generic types.
19838
19839         * icall.c
19840         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
19841
19842 2006-02-15  Martin Baulig  <martin@ximian.com>
19843
19844         * icall.c
19845         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
19846         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
19847         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
19848         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
19849
19850 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
19851
19852         * class.c, metadata.c, metadata.h, object.c, icall.c,
19853         marshal.c: changed mono_type_get_underlying_type () to do
19854         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
19855         Fixed handling of instantiated generic valuetypes (bug #75479).
19856
19857 2006-02-15  Raja R Harinath  <rharinath@novell.com>
19858
19859         * metadata.c (mono_metadata_decode_signed_value): Simplify.
19860         Delegate to mono_metadata_decode_value, and work on the returned value.
19861
19862         * icall.c (ves_icall_MonoType_GetGenericArguments):
19863         Add consistency check here too.
19864         
19865 2006-02-15  Ankit Jain  <jankit@novell.com>
19866
19867         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
19868         char/short etc.
19869
19870 2006-02-15  Ankit Jain  <jankit@novell.com>
19871
19872         * metadata.c (mono_metadata_decode_signed_value): New function to decode
19873         signed values, used only for representing lower bounds of arrays.
19874         (mono_metadata_parse_array_full): Use new
19875         mono_metadata_decode_signed_value to decode lower bounds.
19876
19877 2006-02-14  Martin Baulig  <martin@ximian.com>
19878
19879         * reflection.c
19880         (mono_reflection_get_token): Support "MonoGenericMethod" and
19881         "MonoGenericCMethod" and allow generic instances / methods.
19882
19883 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
19884
19885         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
19886         to obtain the terminal size using an ioctl.
19887
19888         * object.c (mono_nullable_init): Revert this as nullable reference
19889         types are not valid.
19890         (mono_nullable_box): Ditto.
19891
19892 2006-02-09  Dick Porter  <dick@ximian.com>
19893
19894         * threads.c (mono_thread_detach): Drop a reference to the thread
19895         we're detaching.
19896
19897 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
19898
19899         * object.c (mono_nullable_init): Handle nullable reference types.
19900         (mono_nullable_box): Ditto. Fixes #77446.
19901
19902 2006-02-07  Martin Baulig  <martin@ximian.com>
19903
19904         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
19905
19906 2006-02-07  Ankit Jain  <jankit@novell.com>
19907
19908         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
19909         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
19910         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
19911         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
19912         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
19913         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
19914
19915 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
19916
19917         * class.c (mono_class_create_generic): Set type_token as well.
19918
19919         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
19920         compatible with MS.
19921
19922 2006-02-02  Martin Baulig  <martin@ximian.com>
19923
19924         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
19925         has never been used so far.
19926
19927 2006-02-02  Martin Baulig  <martin@ximian.com>
19928
19929         * mono-debug-debugger.h: Changed comment at the top of this file;
19930         the header is not installed, but it's safe to #include it from
19931         within the JIT.
19932
19933         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
19934         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
19935
19936 2006-02-02  Martin Baulig  <martin@ximian.com>
19937
19938         * mono-debug.h
19939         (MonoSymbolTable): Removed the `metadata_info' field.
19940
19941         * mono-debug.c
19942         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
19943
19944         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19945         (mono_debugger_add_builtin_types): Removed.
19946         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
19947         (mono_debugger_create_notification_function): We now operate on a
19948         pre-allocated area; take a `gpointer' and return `void'.
19949
19950         * mono-debug-debugger.c
19951         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
19952         (mono_debugger_add_builtin_types): Removed.
19953
19954 2006-02-02  Martin Baulig  <martin@ximian.com>
19955
19956         * threads.c (mono_debugger_create_all_threads): New public method.
19957
19958 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19959
19960         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
19961         breaks on several platforms.
19962
19963 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
19964
19965         * assembly.c: the VS.NET build doesn't supply default values for
19966         MONO_ASSEMBLIES and MONO_CFG_DIR.
19967
19968 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
19969
19970         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
19971         helper function.
19972
19973         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
19974
19975         * loader.c (method_from_memberref): Fix a warning.
19976
19977         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
19978
19979         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
19980         with explicit layout. Fixes #77433.
19981
19982 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
19983
19984         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
19985         max_interface_id is initialized before using it. Fixes #77398.
19986         (ves_icall_Type_GetInterfaces): Ditto.
19987
19988 2006-01-30  Raja R Harinath  <rharinath@novell.com>
19989
19990         * metadata.c (mono_metadata_parse_method_signature_full): Don't
19991         allocate memory for parameter attributes when parsing memberref
19992         signatures.
19993         * loader.c (mono_loader_set_error_method_load): Don't warn.
19994         (method_from_memberref): Ensure MissingMethodException gets thrown
19995         if method is not found.  Make warning more informative.
19996
19997 2006-01-29  Raja R Harinath  <harinath@gmail.com>
19998
19999         Fix #77397
20000         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
20001         return true if is byref.
20002         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
20003         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
20004         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
20005
20006 2006-01-27  Raja R Harinath  <rharinath@novell.com>
20007
20008         Fix tests/find-method.2.il
20009         * loader.c (find_method, find_method_in_class): Remove is_inflated
20010         argument.  Revert 2006-01-18 change.
20011         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
20012         is generic, search for method in its generic definition.
20013         * class.c (mono_class_setup_vtable_general): Print generic
20014         arguments of generic types in debugging printf.
20015
20016 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
20017
20018         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
20019
20020         * threads.c (mono_threads_request_thread_dump): New helper function.
20021
20022 2006-01-25  Raja R Harinath  <rharinath@novell.com>
20023
20024         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
20025
20026 2006-01-25  Ankit Jain  <jankit@novell.com>
20027
20028         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
20029         move definition to ..
20030         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
20031         
20032 2006-01-25  Ankit Jain  <jankit@novell.com>
20033             Raja R Harinath  <rharinath@novell.com>
20034
20035         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
20036         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
20037         as necessary.
20038
20039 2006-01-25  Martin Baulig  <martin@ximian.com>
20040
20041         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
20042         `MonoDebuggerThread' into debug-debugger.c.
20043
20044 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
20045
20046         * profiler.c: fix printing of data.
20047
20048 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
20049
20050         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
20051           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
20052
20053 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
20054
20055         * object.c: fix deadlock related to string interning.
20056
20057 2006-01-23  Martin Baulig  <martin@ximian.com>
20058
20059         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20060
20061         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
20062
20063 2006-01-23  Martin Baulig  <martin@ximian.com>
20064
20065         * mono-debug.h: Moved the prototypes of some functions which are
20066         used by the JIT here from mono-debug-debugger.h.
20067
20068 2006-01-21  Martin Baulig  <martin@ximian.com>
20069
20070         * Makefile.am: Don't install mono-debug-debugger.h.
20071
20072 2006-01-21  Martin Baulig  <martin@ximian.com>
20073
20074         * mono-debug-debugger.h: Enforce the private status of this header
20075         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
20076         Moved some stuff from mono-debugger-jit-wrapper.h here.
20077
20078 2006-01-20  Raja R Harinath  <rharinath@novell.com>
20079
20080         * class.c (mono_class_from_typeref): Add a sanity test to help
20081         catch lack of assembly load/search hooks.
20082
20083 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
20084
20085         * marshal.c (emit_struct_conv): Relax the fields with same offset
20086         check even more. Fixes #77230.
20087
20088 2006-01-18  Martin Baulig  <martin@ximian.com>
20089
20090         * loader.c (find_method_in_class): Added `gboolean is_inflated'
20091         argument; if false, we compare the uninstantiated signatures.
20092         (method_from_memberref): Compare the uninstantiated signatures;
20093         fixes #76417.
20094
20095 2006-01-18  Robert Jordan  <robertj@gmx.net>
20096
20097         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
20098         Clear the weak link. Fixes bug #77170.
20099
20100         * gc.c (mono_gchandle_free):
20101         Reflect *-gc.c changes (tiny optimization).
20102
20103 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
20104
20105         * metadata.c (mono_metadata_signature_dup): Applied patch from
20106         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
20107         Fixes #77288.
20108
20109 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
20110
20111         * marshal.c (emit_struct_conv): Allow fields with the same offset when
20112         marshalling from native to managed code. Fixes #77230.
20113
20114 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20115
20116         * threadpool.c: fix problem (Mac only) when more than one asynchronous
20117         connect. Fixes bug #77020.
20118
20119 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
20120
20121         * class.c: fixed id assignement for nested interfaces (bug #77275).
20122         Added also better info for --print-vtable debugging.
20123
20124 2006-01-12  Martin Baulig  <martin@ximian.com>
20125
20126         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
20127         interfaces on-the-fly; fixes #76625.
20128
20129         * class-internals.h
20130         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
20131         don't need that anymore.
20132
20133 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20134
20135         * socket-io.c
20136         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20137         To avoid initing the nested_classes when not needed I turned the
20138         PeerCredData as a toplevel internal class, as it has to be shared
20139         anyways. 
20140
20141         Fixes the CASA issue.
20142
20143 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
20144
20145         * domain.c: Accessors for MonoJitInfo
20146
20147         * profiler-private.h: Add jitinfo to the end jit hook
20148
20149         * profiler.[ch]: Define new hooks, called after jitting which give
20150         the MonoJitInfo that was compiled
20151
20152 2006-01-10  Martin Baulig  <martin@ximian.com>
20153
20154         * class.c (mono_class_setup_events): Add support for generic
20155         classes; fixes #76440.
20156
20157 2006-01-06  Raja R Harinath  <rharinath@novell.com>
20158
20159         Fix #77160.
20160         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
20161         on passed-in method.
20162
20163 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20164
20165         * object.c (mono_runtime_invoke_array): Add Nullable support.
20166
20167         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
20168
20169 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
20170
20171         * file-io.c: Don't consider sockets as directory and avoid an endless
20172         loop. Fix bug #76966.
20173
20174 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20175
20176         * object.c (mono_nullable_init): New helper function.
20177         (mono_nullable_box): Ditto.
20178
20179         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
20180
20181         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
20182
20183         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
20184         
20185 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
20186
20187         * class.c (mono_class_is_assignable_from): Make T assignable to 
20188         Nullable<T>.
20189
20190 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
20191
20192         * appdomain.c: Bump corlib version to 46.
20193         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
20194         serialization purpose) and changed ves_icall_System_Reflection_
20195         Assembly_get_code_base signature to accept a boolean (to escape, or 
20196         not, the assembly code base).
20197
20198 2005-12-23  Dick Porter  <dick@ximian.com>
20199
20200         * icall.c: 
20201         * threads-types.h: 
20202         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
20203         CreateEvent icall now returns "created" boolean parameter.
20204
20205 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
20206
20207         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
20208         #76967.
20209
20210         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
20211         when attr_klass is an interface. Fixes #77045.
20212
20213 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
20214
20215         * marshal.c (emit_struct_conv): Fix previous patch.
20216         
20217         * marshal.c (emit_struct_conv): Add a check for fields with the same
20218         offset.
20219
20220 2005-12-20  Raja R Harinath  <rharinath@novell.com>
20221
20222         Fix regression in Mono.C5.
20223         * class.c (mono_class_create_generic): If 'klass' is an interface
20224         set up the interface offsets.
20225         (mono_class_is_assignable_from): Don't throw away generic arguments.
20226
20227 2005-12-19  Raja R Harinath  <rharinath@novell.com>
20228
20229         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
20230         type parameters.
20231
20232 2005-12-15  Raja R Harinath  <rharinath@novell.com>
20233
20234         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
20235         dead store.
20236         (do_mono_metadata_parse_generic_class): Don't pass the current
20237         generic context when parsing the type being instantiated: it
20238         cannot use it, anyway.
20239
20240         * loader.c (method_from_memberref): Don't inflate a signature if
20241         it doesn't contain any type parameters.
20242
20243 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
20244
20245         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
20246
20247 2005-12-14  Martin Baulig  <martin@ximian.com>
20248
20249         * class.c
20250         (mono_type_get_name_recurse): Don't return null for type
20251         parameters and open generic classes.
20252         (mono_class_setup_methods): Don't exclude generic instances.
20253         (mono_get_unique_iid): Use different IDs for different
20254         instantiations of the same generic type.
20255         (mono_class_setup_vtable): Only use setup_generic_vtable() for
20256         open generic instances; create a normal vtable for closed generic
20257         instances.
20258         (mono_class_setup_vtable_general): We're now also called for
20259         closed generic instances.
20260
20261         * reflection.c
20262         (mono_reflection_bind_generic_parameters): Correctly use
20263         mono_metadata_lookup_generic_inst() everywhere.
20264
20265 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
20266
20267         * object.c (mono_class_create_runtime_vtable): Call 
20268         mono_class_setup_vtable ().
20269
20270         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
20271         function.
20272         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
20273         #76959.
20274
20275         * loader.c (mono_loader_set_error_type_load): Print the type load
20276         warnings to the console so they are more visible to the user.
20277         (mono_loader_set_error_method_load): Ditto.
20278
20279         * reflection.c (ensure_runtime_vtable): Revert the last change as it
20280         is still broken.
20281         
20282         * reflection.c (ensure_runtime_vtable): Fix build.
20283
20284         * reflection.c (ensure_runtime_vtable): Disable an optimization which
20285         doesn't work in all cases.
20286
20287 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
20288
20289         * object.c (mono_array_new_full): Treat a single dimensional array
20290         with 0 lower bounds as an szarray. Fixes #76973.
20291
20292         * reflection.c (custom_attr_visible): Really fix this.
20293
20294 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
20295
20296         * reflection.c (custom_attr_visible): Allow nested public attributes
20297         as well.
20298
20299         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
20300         interface check.
20301
20302 2005-12-12  Raja R Harinath  <harinath@gmail.com>
20303
20304         * class.c (set_generic_param_owner): Delete.
20305         (mono_class_create_from_typedef): Don't set ->owner field of
20306         generic parameters to "param containers" of enclosing classes.
20307         * reflection.c (mono_reflection_initialize_generic_parameter):
20308         Likewise.
20309
20310 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
20311
20312         * reflection.c (custom_attr_visible): Fix build.
20313
20314 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
20315
20316         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
20317         private attributes.
20318         
20319         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
20320         handling of null parameter defaults.
20321
20322 2005-12-09  Raja R Harinath  <rharinath@novell.com>
20323
20324         * class.c (mono_class_from_generic_parameter): Don't set
20325         klass->generic_container.
20326         (my_mono_class_from_generic_parameter): Likewise.
20327
20328 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
20329
20330         * reflection.c (load_public_key): Fix a warning.
20331         (method_encode_code): Fix unaligned accesses.
20332
20333 2005-12-07  Martin Baulig  <martin@ximian.com>
20334
20335         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
20336
20337         * reflection.c
20338         (write_generic_param_entry): Encode our custom attrs.
20339
20340         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
20341
20342 2005-12-07  Martin Baulig  <martin@ximian.com>
20343
20344         * reflection.c (encode_new_constraint): Removed; we don't use the
20345         `NewConstraintAttribute' anymore.
20346
20347 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
20348
20349         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
20350         not fire a TypeResolve event when Assembly.GetType () is called.
20351
20352 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
20353
20354         Beginning of support for nullable types in the runtime. Parts of
20355         this patch are from Martin.
20356
20357         * appdomain.c (MONO_CORLIB_VERSION): Bump
20358
20359         * domain.c (mono_init_internal): get the nullable type
20360
20361         * class.c (mono_class_is_nullable): New method
20362         (mono_class_get_nullable_param): New mehod
20363         (mono_class_create_generic): In types T? set cast_class to T
20364
20365         * class-internals.h (MonoDefaults): new nullable default class
20366         (mono_class_get_nullable_param, mono_class_get_nullable_param):
20367         new methods.
20368
20369 2005-12-05  Raja R Harinath  <rharinath@novell.com>
20370
20371         * metadata.c (select_container): New.  Refactor code to select the
20372         appropriate GenericContainer given the type of generic parameter
20373         we are looking for.
20374         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
20375         not a MonoGenericContext.  Use select_container.  Update parameters.
20376         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
20377         and MONO_TYPE_MVAR.
20378         (unwrap_arrays): Remove duplicate tests.
20379         (find_generic_param): Rename from 'has_same_context'.  Now walks a
20380         generic instantiated class to find any arguments that are generic
20381         parameters.
20382         (mono_type_create_from_typespec_full): Use find_generic_param to
20383         avoid evicting some generic instantiations from the typespec
20384         cache.
20385
20386 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
20387
20388         * reflection.c: fixed writing of doubles on ARM FPA.
20389
20390 2005-12-02  Robert Jordan  <robertj@gmx.net>
20391
20392         * icall.c: Fixed EventInfo.ReflectedType (#76829).
20393
20394 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20395
20396         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
20397         least on SUSE 10 they are not the same (on debian, they are just the
20398         same thing).
20399
20400 2005-12-01  Raja R Harinath  <rharinath@novell.com>
20401
20402         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
20403         DeclaringType for VARs and MVARs.
20404         * class.c (set_generic_param_owner): Fix initialization of owner
20405         fields.
20406
20407 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
20408
20409         * icall.c: fixed Enum.ToObject() to correctly convert the values.
20410
20411 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20412
20413         * threadpool.c: workaround for a bug that shows up on the Mac:
20414         select()+connect() on a blocking socket is not like it should
20415         be, so we proceed to connect() in that case, wasting the I/O
20416         threadpool thread until connect succeedes. Fixes bug #75436.
20417
20418 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20419
20420         * threadpool.c: fix typo when setting file descriptor states.
20421
20422 2005-11-28  Raja R Harinath  <rharinath@novell.com>
20423
20424         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
20425         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20426         create a temporary signature container.
20427         (mono_metadata_parse_generic_param): Update to changes.
20428         (mono_type_create_from_typespec_full): Update to changes.
20429         * loader.c (method_from_memberref): Don't use a
20430         MonoGenericContainer while parsing a memberref signature.
20431         (method_from_methodspec): Remove dead-store of the 'container'
20432         variable.  It's overwritten before use.
20433
20434         * metadata.c (mono_type_create_from_typespec_full): Make debugging
20435         checks tighter.
20436         (mono_metadata_parse_generic_param): Likewise.
20437         * loader.c (find_method_in_class): Does not need a
20438         MonoGenericContainer.  Use 'mono_method_signature' rather than
20439         'mono_method_signature_full'.
20440         (find_method, mono_get_method_constrained, method_from_memberref):
20441         Update to changes.
20442
20443         * metadata.c (mono_type_create_from_typespec_full): Ensure that
20444         owner-less generic-parameters are never evicted from the typespec
20445         cache.
20446
20447         * loader.c (method_from_memberref): Don't use the current context
20448         when parsing signatures.
20449         (method_from_methodspec, mono_get_method_from_token): Update to changes.
20450
20451         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
20452         side-effects in g_assert.
20453         * loader.c (mono_get_method_from_token): Resolve klass earlier so
20454         that we don't potentially lose information.
20455
20456 2005-11-26  Dick Porter  <dick@ximian.com>
20457
20458         * icall.c:
20459         * threads.c: icalls to implement basic (ie, not named)
20460         System.Threading.Semaphore.
20461
20462 2005-11-24  Dick Porter  <dick@ximian.com>
20463
20464         * process.c
20465         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20466         Use GetProcessId() if it's available.
20467
20468 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
20469
20470         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
20471
20472 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20473             Ankit Jain  <jankit@novell.com>
20474
20475         * loader.c (mono_get_method_from_token): Initialize 'method' field
20476         of all generic parameters before parsing the signature.  Remove
20477         code that "fixed"-up MVAR references.
20478
20479 2005-11-23  Ankit Jain  <jankit@novell.com>
20480
20481         * metadata.c (mono_metadata_has_generic_params):
20482         (mono_metadata_load_generic_param_constraints):
20483         (mono_metadata_load_generic_params): Move duplicate code ...
20484         (mono_metadata_get_generic_param_row): ... here. Returns the
20485         first row-id in GenericParam table for a given owner (token).
20486         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
20487         prototype.
20488
20489 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20490             Ankit Jain  <jankit@novell.com>
20491
20492         * metadata.c (mono_metadata_class_equal): Pass signature_only when
20493         comparing VARs too.
20494         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
20495         type->data.generic_param only if the type is an MVAR.
20496         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
20497         leak owner-less VARs and MVARs into managed space.
20498
20499 2005-11-21  Martin Baulig  <martin@ximian.com>
20500
20501         * class-internals.h
20502         (MonoMethod): Moved the `generic_container' here from
20503         `MonoMethodNormal' since we now also need it for
20504         `MonoMethodPInvoke';
20505         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
20506         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
20507         an union containing both `MonoMethodNormal' and
20508         `MonoMethodPInvoke'.
20509
20510         * loader.c
20511         (mono_get_method_from_token): Allow implementing generic methods
20512         as interncalls.
20513
20514         * threads.c
20515         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
20516         icall.
20517
20518 2005-11-17  Dick Porter  <dick@ximian.com>
20519
20520         * icall.c: 
20521         * process.h: 
20522         * process.c: Split the Process Start_internal icall into
20523         ShellExecuteEx_internal and CreateProcess_internal, which are
20524         called depending on whether UseShellExecute is true.  Fixes bug
20525         76670.
20526
20527         * appdomain.c (MONO_CORLIB_VERSION): Incremented
20528
20529 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
20530
20531         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
20532         'msize' parameters, use the information in 'mspec' instead.
20533         (emit_object_to_ptr_conv): Ditto.
20534
20535         * marshal.c (emit_struct_conv): Handle explicit layout structs with
20536         fields out of order. Fixes #76733.
20537
20538 2005-11-17  Ankit Jain  <jankit@novell.com>
20539
20540         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
20541
20542 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
20543
20544         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
20545           bug #76575.
20546
20547 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20548
20549         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
20550         for types with non-auto layout. Fixes #76717.
20551
20552 2005-11-16  Ankit Jain  <jankit@novell.com>
20553
20554         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
20555         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
20556         if generic_context is null.
20557           (mono_metadata_generic_param_equal): param->owner can be null.
20558           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
20559         null.
20560
20561 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20562
20563         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
20564         the correct value.
20565
20566 2005-11-15  Martin Baulig  <martin@ximian.com>
20567
20568         * object.c (set_value): Use mono_class_from_mono_type() instead of
20569         the hack for generic instances; fixes #76136.
20570
20571 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
20572
20573         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
20574         fields.
20575
20576         * image.c (load_metadata_ptrs): Initialize the new fields.
20577
20578         * reflection.c (create_dynamic_mono_image): Ditto.
20579
20580         * reflection.c (build_compressed_metadata): Use the new fields.
20581
20582         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
20583         icall.
20584
20585         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
20586         icall.
20587         
20588 2005-11-15  Ankit Jain  <jankit@novell.com>
20589             Raja R Harinath  <harinath@gmail.com>
20590
20591         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
20592         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
20593         new per-generic_container cache if the cached MonoType's context matches
20594         the current context.
20595           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
20596         to the expected context.
20597           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
20598
20599 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20600
20601         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
20602         we changed the signature of an icall.
20603         * icall.c: Modify to mono_double_ParseImpl return true/false 
20604         depending on the success, instead of throwing the exception. This will
20605         help us in Double.TryParse methods.
20606         
20607 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
20608
20609         * marshal.c (emit_marshal_object): Throw an exception when
20610         marshalling 'object' instead of crashing. Fixes #76696.
20611
20612 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20613
20614         * class-internals.h: Add prototype for mono_type_get_full_name ().
20615
20616 2005-11-11  Dick Porter  <dick@ximian.com>
20617
20618         * threads.c (mono_thread_manage): Make sure the main thread has
20619         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
20620
20621 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20622
20623         * loader.c (mono_loader_set_error_type_load): Log a warning to the
20624         console about the missing type.
20625         (mono_loader_set_error_method_load): Ditto.
20626
20627 2005-11-09  Miguel de Icaza  <miguel@novell.com>
20628
20629         * mono-config.c (mono_get_config_dir): Set the system defaults if
20630         none is specified.
20631
20632         * assembly.c (mono_set_dirs): New API entry point to set the
20633         assembly and the config directory in one call
20634
20635 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
20636
20637         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
20638         the ftnptr was created from a delegate in a domain other than the
20639         current domain. Fixes #75377.
20640
20641         * exception.h exception.c: Add mono_get_exception_not_supported ().
20642
20643 2005-11-08  Martin Baulig  <martin@ximian.com>
20644
20645         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
20646
20647 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
20648
20649         * security-manager.h: Added definitions to deal with strongname key 
20650         pairs bigger (and smaller) than 1024 bits.
20651         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
20652         adjust wrt the public key length being used.
20653
20654 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
20655
20656         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
20657           Windows build (r51396-51397).
20658
20659 2005-11-03  Martin Baulig  <martin@ximian.com>
20660
20661         * class.c (mono_class_setup_vtable_general): Also add generic
20662         methods to the vtable; fixes #76581.
20663
20664 2005-11-01  Miguel de Icaza  <miguel@novell.com>
20665
20666         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
20667         sure that we lookup GetString method from the System.Text.Encoding
20668         class, not the derived class or we get an empty method.
20669
20670         Fixed class #76612.
20671
20672 2005-10-25  Miguel de Icaza  <miguel@novell.com>
20673
20674         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
20675         if it has been previously set (embedders). 
20676
20677         Make mono_set_rootdir available also on Unix.
20678
20679 005-10-24  Robert Jordan  <robertj@gmx.net>
20680
20681         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
20682
20683 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
20684
20685         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
20686         only calls which are made to native code use this flag.
20687
20688         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
20689
20690 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
20691
20692         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
20693         Add support for FieldBuilders.
20694
20695 2005-10-29  Martin Baulig  <martin@ximian.com>
20696
20697         * mono-debug.c
20698         (mono_debug_using_mono_debugger): New public method; returns
20699         whether we're running inside the debugger.
20700
20701 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
20702
20703         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
20704         for Method/Constructor/FieldBuilders.
20705
20706 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
20707
20708         * reflection.c (module_add_cattrs): Save custom attributes for global methods
20709         and fields as well.
20710
20711 2005-10-26  Martin Baulig  <martin@ximian.com>
20712
20713         * mono-debug-debugger.c
20714         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
20715
20716 2005-10-24  Raja R Harinath  <harinath@gmail.com>
20717
20718         * icall.c (base64_to_byte_array): Don't pass an out-of-range
20719         integer to isspace.
20720
20721 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
20722
20723         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
20724         when passing valuetypes byref. Fixes #76502.
20725
20726 2005-10-19  Jackson Harper  <jackson@ximian.com>
20727
20728         * profiler.c: Don't put a . in front of types that are not in a
20729         namespace.
20730
20731 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
20732
20733         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
20734
20735 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
20736
20737         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
20738         #76436.
20739         (mono_marshal_get_ldflda_wrapper): Fix a warning.
20740
20741 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20742
20743         * assembly.c metadata-internals.h icall.c: Define an additional
20744         parameter for mono_assembly_name_parse_full, so we can avoid creating
20745         S.R.AssemblyName.Version when no version info wasn't passed.
20746         
20747 2005-10-09  Miguel de Icaza  <miguel@novell.com>
20748
20749         * class.c (mono_type_get_full_name): Reimplement method that was
20750         removed. 
20751
20752         * image.c: Some docs
20753
20754 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
20755
20756         * profiler.c (output_newobj_profile): Fix printing of Total memory
20757         on x86.
20758
20759 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20760
20761         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
20762
20763 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
20764
20765         * threads.c: remove debug output.
20766
20767 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20768
20769         * threads.c (mono_thread_manage): Fix crashes if more than 64
20770         threads need to be aborted. Hopefully fixes #75899.
20771
20772         * assembly.c (mono_stringify_assembly_name): New helper function.
20773
20774         * class.c: Use mono_stringify_assembly_name instead of the similar
20775         static function.
20776
20777         * assembly.h assembly.c: Add support for calling a postload search 
20778         hook if an assembly cannot be loaded.
20779
20780         * appdomain.c: Register new search hooks which call the AssemblyResolve
20781         events in AppDomain. Fixes #75231
20782
20783 2005-10-07  Martin Baulig  <martin@ximian.com>
20784
20785         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
20786         methods without debug info.
20787
20788 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
20789
20790         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
20791         wrappers.
20792
20793 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20794
20795         * file-io.c: now that we return symlinks, use lstat and, when the file
20796         is a symbolic link, stat, to get the file attributes. Also avoid the
20797         conversion to/from utf16/external.
20798
20799 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
20800
20801         * class.c (mono_class_layout_fields): Compute klass->has_references
20802         correctly if an embedded valuetype is not yet initialized. Fixes
20803         #76331.
20804
20805 2005-10-04  Martin Baulig  <martin@ximian.com>
20806
20807         * metadata.c
20808         (mono_metadata_load_generic_param_constraints): New public
20809         function; splitted the constraints loading out from
20810         mono_metadata_load_generic_params().
20811
20812         * class.c (mono_class_create_from_typedef): Call
20813         mono_metadata_load_generic_param_constraints() after setting up
20814         the type and creating our parent; fixes #75329.
20815
20816 2005-10-04  Martin Baulig  <martin@ximian.com>
20817
20818         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
20819         non-dynamic parent classes.
20820
20821 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
20822
20823         * file-io.c : win32 build fix (ETXTBSY seems not found).
20824
20825 2005-10-04  Martin Baulig  <martin@ximian.com>
20826
20827         * reflection.c
20828         (mono_image_get_methodspec_token): Make the cache actually work;
20829         fixes #75974.
20830
20831 2005-10-04  Martin Baulig  <martin@ximian.com>
20832
20833         * class.c (mono_class_name_from_token): Removed the unneccessary
20834         `MonoGenericContext *' argument.
20835
20836 2005-10-04  Martin Baulig  <martin@ximian.com>
20837
20838         * loader.c
20839         (method_from_methodspec): Make the caching work again; fixes the
20840         performance regression from #76262.
20841
20842 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20843
20844         * file-io.c:
20845         * file-io.h:
20846         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
20847         GetFileSystemEntries that performs the same work but without going
20848         into io-layer, locking, etc.
20849
20850 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
20851
20852         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
20853         ThreadState_Stopped as well. Fixes #76047.
20854
20855 2005-09-29  Martin Baulig  <martin@ximian.com>
20856
20857         * class.c
20858         (inflate_generic_context): If the new context has a `gmethod', set
20859         its `container' that that gmethod's `container'.
20860
20861         * metadata.c
20862         (mono_metadata_parse_generic_param): Simplify things;
20863         `generic_container = generic_context->container;' is just fine.
20864
20865         * loader.c (method_from_methodspec): Code cleanups.
20866
20867 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
20868
20869         * decimal.c: fix warning (and let gcc generate correct
20870         code on ARM with optimizations).
20871
20872 2005-09-28  Martin Baulig  <martin@ximian.com>
20873
20874         * loader.c
20875         (method_from_memberref): Added `MonoGenericContext *class_context'
20876         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
20877         (method_from_methodspec): If we're a memberref, use the enclosing
20878         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
20879
20880 2005-09-28  Martin Baulig  <martin@ximian.com>
20881
20882         * object.c (mono_runtime_invoke_array): Added support for
20883         MONO_TYPE_GENERICINST; fixes #75917.
20884
20885 2005-09-27  Martin Baulig  <martin@ximian.com>
20886
20887         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
20888         `k->byval_arg.type' to determine the actual type.
20889
20890         * loader.c (method_from_methodspec): Removed some hacks.
20891
20892 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
20893
20894         * class-internals.h (mono_field_is_deleted): Do the test for
20895         rtspecialname before we check the actual name of the field. This
20896         prevents us from dereferencing a pointer into the string table,
20897         saving us from accessing a few pages
20898
20899         * *.c: Replace the use of {Enter,Leave}CriticalSection with
20900         macros. This will allow a deadlock debugger to easily be plugged
20901         in.
20902
20903 2005-09-27  Martin Baulig  <martin@ximian.com>
20904
20905         * loader.c (method_from_methodspec): Create a "signature"
20906         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
20907
20908 2005-09-27  Martin Baulig  <martin@ximian.com>
20909
20910         * class.c
20911         (inflate_generic_class): Correctly set the new context's
20912         container.
20913
20914         * loader.c
20915         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
20916         instead of a `MonoGenericContext *'.
20917         (mono_method_signature_full): Take a `MonoGenericContainer *'
20918         instead of a `MonoGenericContext *'.
20919
20920         * metadata.c
20921         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
20922         instead of a `MonoGenericContext *'.
20923         (mono_metadata_parse_method_signature_full): Likewise.
20924
20925 2005-09-26  Martin Baulig  <martin@ximian.com>
20926
20927         * class.c
20928         (mono_class_from_generic_parameter): Set `klass->generic_container'
20929         (mono_class_from_generic_parameter): Likewise.
20930         (mono_bounded_array_class_get): We inherit the generic container
20931         from the element class.
20932
20933         * loader.c
20934         (find_method, find_method_in_class): Take a `MonoGenericContext *'
20935         argument rather than computing it here.
20936         (method_from_memberref): Correctly set the generic context before
20937         parsing the signature.  Fixes #75681.
20938
20939 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
20940
20941         * object.c (mono_class_has_special_static_fields): Fix warnings.
20942
20943 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20944
20945         * assembly.c: Add parse_public_key function, to
20946         par the public keys. Also added mono_assembly_name_parse_full,
20947         to define it the parsed key should be freed or not.
20948         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
20949         to parse a long format assembly name.
20950         * metadata-internals.h: Keep mono_assembly_name_parse_full as
20951         private, since calling it to preserve the key requires
20952         freeing it manually.
20953         
20954 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
20955
20956         * locales.c : removed HAVE_ICU part.
20957
20958 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
20959
20960         * object.c (mono_class_create_runtime_vtable): Avoid calling 
20961         field_is_special_static if the klass has no special static fields.
20962
20963         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
20964         (MonoCachedClassInfo): Likewise.
20965
20966         * object.c (mono_class_has_special_static_fields): New helper function.
20967
20968 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20969
20970         * class.c (mono_class_create_from_typedef): Don't call 
20971         interfaces_from_typedef_full for enums.
20972         (mono_class_create_from_typedef): Compute the base types of enums directly
20973         without calling mono_class_setup_fields ().
20974         (mono_class_find_enum_basetype): New helper function.
20975
20976         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
20977         one place inside the string heap.
20978         
20979 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
20980
20981         * class.c: locking fixes, code cleanups, some docs added.
20982         Allocate some data structures in the image mempool.
20983
20984 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20985
20986         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20987         the example code.
20988         
20989 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
20990
20991         * class-internals.h, class.c, reflection.c: reduce memory taken by
20992         MonoClass.
20993
20994 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
20995
20996         * metadata.c, metadata.h, loader.h: documentation updates, code and
20997         API cleanups.
20998
20999 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21000
21001         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21002         the example code.
21003
21004         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
21005         page faults caused by the runtime while reading metadata.
21006
21007 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21008
21009         * socket-io.c: the field names were changed 3 months ago and no one
21010         realized until bug #76077 got filed!
21011
21012 2005-09-20  Martin Baulig  <martin@ximian.com>
21013
21014         * icall.c (assembly_icalls): Removed some unused debugger icalls.
21015
21016 2005-09-20  Martin Baulig  <martin@ximian.com>
21017
21018         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
21019         write the rank into the class entry.
21020
21021 2005-09-20  Martin Baulig  <martin@ximian.com>
21022
21023         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
21024
21025 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
21026
21027         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21028
21029         * icall.c (custom_attrs_defined_internal): New icall.
21030
21031         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
21032         function.
21033         (mono_custom_attrs_construct_by_type): New helper function.
21034
21035 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
21036
21037         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
21038         terminate the resulting string. Fixes #76123.
21039
21040 2005-09-16  Martin Baulig  <martin@ximian.com>
21041
21042         * mono-debug.c
21043         (mono_debug_add_method): Ignore inflated methods for the moment.
21044
21045 2005-09-14  Martin Baulig  <martin@ximian.com>
21046
21047         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
21048
21049 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
21050
21051         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
21052         return a success/failure indication.
21053         (mono_metadata_interfaces_from_typedef_full): Ditto.
21054         (get_constraints): Ditto.
21055
21056 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
21057
21058         * marshal.c (emit_marshal_array): Fix handling of null arrays.
21059         
21060         * marshal.c (emit_marshal_array): Add support for returning string
21061         arrays from delegates. Fixes #76063.
21062
21063         * marshal.c: Use the emit_ldloc/stloc macros where possible.
21064
21065 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
21066
21067         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
21068         icall.
21069
21070 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
21071
21072         * reflection.c icall.c: Fix after mono_get_exception_type_load
21073         signature change.
21074
21075         * assembly.c (mono_assembly_get_assemblyref): New helper function.
21076         (mono_assembly_load_reference): Use the new helper.
21077
21078         * class-internals.h (MonoLoaderError): New structure containing 
21079         information about type loading errors.
21080
21081         * class-internals.h loader.c: Add APIs to store per-thread loader
21082         error information.
21083
21084         * loader.c class.c: Set the loader error if needed.
21085
21086         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
21087
21088 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
21089
21090         * decimal.c: fixed to handle the broken ARM fp format.
21091
21092 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
21093
21094         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
21095         broken.
21096
21097 2005-09-06  Martin Baulig  <martin@ximian.com>
21098
21099         * domain.c (supported_runtimes): Added v2.0.50727.
21100
21101 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
21102
21103         * culture-info.h: reduce the size of some structures.
21104
21105 2005-09-05  Martin Baulig  <martin@ximian.com>
21106
21107         Reflect latest API changes in the August CTP.
21108
21109         * icall.c
21110         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
21111         ("MonoType.HasGenericArguments"): Removed.
21112         ("MonoMethod.BindGenericParameters"): Renamed to
21113         "MakeGenericMethod".
21114         ("MethodBuilder.BindGenericParameters"): Renamed to
21115         "MakeGenericMethod".    
21116
21117 2005-09-05  Martin Baulig  <martin@ximian.com>
21118
21119         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
21120
21121 2005-09-05  Martin Baulig  <martin@ximian.com>
21122
21123         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21124
21125         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
21126         generic_container is non-NULL.
21127
21128 2005-09-05  Martin Baulig  <martin@ximian.com>
21129
21130         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21131
21132         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
21133
21134 2005-08-29  Michal Moskal  <malekith@nemerle.org>
21135
21136         * reflection.c (encode_locals,
21137         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
21138         for large generic types.
21139
21140 2005-09-05  Martin Baulig  <martin@ximian.com>
21141
21142         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21143
21144         * class.c (mono_dup_array_type): New public method.
21145         (mono_metadata_signature_deep_dup): New public method.
21146         (dup_type): Correctly duplicate array and function types.
21147
21148 2005-09-05  Martin Baulig  <martin@ximian.com>
21149
21150         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21151
21152         * reflection.c (get_default_param_value_blobs): Handle generic types
21153         and generic methods.
21154
21155 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
21156
21157         * class.c: Fixed error reporting (method/class were inversed) for 
21158         inheritance demands.
21159         * security-manager.c|h: Added the AppDomain when calling the managed
21160         System.Security.SecurityManager.InheritanceDemand method.
21161
21162 2005-09-01  Raja R Harinath  <rharinath@novell.com>
21163
21164         * reflection.c (encode_marshal_blob): 'marshaltype' and
21165         'marshaltyperef' are alternate sources for the custom marshaler
21166         name.
21167
21168 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
21169
21170         * class.c: fix creation of array classes with rank == 1
21171         (patch by Ankit Jain <jankit@novell.com>).
21172
21173 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
21174
21175         * object.c: fix check for creating the bound data for arrays vs
21176         szarrays.
21177
21178 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21179
21180         * object.c: configuration file name is now based on the executable name,
21181         not the image name. Fixes bug #75931.
21182
21183 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
21184
21185         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
21186         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
21187
21188 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
21189
21190         * rand.c: Use wincrypt.h instead of WinCrypt.h.
21191
21192 2005-08-24  Ankit Jain  <jankit@novell.com>
21193             Raja R Harinath  <rharinath@novell.com>
21194
21195         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
21196           called by it recursively.
21197           (mono_class_init): Remove special case in pending_init handling, since it's
21198           superseded by the fix to mono_class_from_typeref.
21199
21200 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
21201
21202         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
21203         BROKEN_THREAD_START stuff.
21204
21205 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
21206
21207         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
21208         trampoline.
21209
21210         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
21211         
21212         * object.c (mono_delegate_ctor): Replace the original function address with
21213         a delegate trampoline.
21214
21215 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
21216
21217         * icall.c: add boolean argument to base64_to_byte_array and 
21218         InternalFromBase64String to control whether a whitespace-only string
21219         is allowed (or should casue a FormatException to be thrown). We need
21220         this as the behavior has changed between MS.NET 1.x and 2.0, and we
21221         to match the MS behaviour in both profiles.
21222         * appdomain.c: Bump corlib version.
21223
21224 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21225
21226         This patch implements a big portion of publisher policy
21227         support, used to bind assembly versions and redirect
21228         one assembly from version A to version B.
21229
21230         * assembly.c:
21231         New GSList loaded_assembly_bindings, for storing the cached
21232         assembly bindings.
21233         (assembly_binding_maps_name): New static function for checking if a 
21234         assembly binding information maps an assembly name.
21235         (mono_assembly_binding_info_free): New function for freeing
21236         assembly binding information resources.
21237         (get_publisher_policy_info): New static function for retrieving 
21238         assembly binding information from a MonoImage.
21239         (compare_versions): New static function for comparing an assembly
21240         binding information data and the version of an assembly name.
21241         (check_policy_versions): New static function for checking if an
21242         assembly binding info mapping an assembly name is valid for it.
21243         (mono_assembly_load_publisher_policy): New static function for
21244         loading the 'policy.major.minor.MyAssembly' image for an assembly
21245         with an assembly name 'aname'.
21246         (mono_assembly_bind_version): New static function for updating
21247         assembly redirection.
21248         (mono_assembly_apply_binding): New static function for applying
21249         assembly binding.
21250         (search_binding_loaded): New static function for searching 
21251         loaded assembly binding infos in the cache domain.
21252         (mono_assembly_load_full): Don't apply assembly binding for
21253         reflection only assemblies.
21254
21255         * metadata-internals.h: Add MonoAssemblyBindingInfo,
21256         which contains information about assembly binding. Also
21257         declare signature for mono_config_parse_publisher_policy ()
21258         function, used to retrieve pub policy info.
21259         
21260         * mono-config.c:
21261         (publisher_policy_start): New static function used to parse publisher 
21262         policy config files.
21263         (publisher_policy_parser): New static MonoParseHandler containing 
21264         the functions used when parsing config files.
21265         (mono_config_parse_publisher_policy): New function for parsing
21266         publisher policy files.
21267         
21268 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
21269
21270         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
21271
21272         * marshal.c (mono_delegate_free_ftnptr): Ditto.
21273
21274         * object.c (mono_get_addr_from_ftnptr): New helper function.
21275
21276         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
21277
21278         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21279
21280 2005-08-19  Dick Porter  <dick@ximian.com>
21281
21282         * threads.c, threads.h, appdomain.c, appdomain.h,
21283         profiler-private.h, monitor.c, object.c, object-internals.h,
21284         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
21285         store the thread ID, so it can hold a 64 bit value if needed.
21286
21287 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
21288
21289         * reflection.c (mono_reflection_create_dynamic_method): Store the
21290         handle class into the method references as well so ldtoken works in
21291         dynamic methods.
21292
21293         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
21294         types.
21295
21296 2005-08-19  Ankit Jain <jankit@novell.com>
21297
21298         Fix #75847.
21299         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
21300           here rather than using the method signature of a arbitrary function
21301           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
21302           two arguments.
21303           Hack done with Harinath.
21304
21305 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21306
21307         * threadpool.c: disable printing stack traces when we get a exception
21308         in a threadpool thread. I need to do more testing to figure out which
21309         cases actually print this. Fixes bug #75828.
21310
21311 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21312
21313         * icall.c: there might be ignored whitespace after the last '='. This
21314         fixes length computation and bug #75840.
21315
21316 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
21317
21318         * assembly.c (mono_assembly_load_full): Consider .exe extension as
21319         well. Fixes #75809.
21320
21321         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
21322         #75784.
21323         
21324         * reflection.c (create_custom_attr_data): Ditto.
21325
21326 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
21327
21328         * locales.c, culture-info.h : removed RegionLCIDMap.
21329         * culture-info-tables.h : regenerated.
21330
21331 2005-08-16  Martin Baulig  <martin@ximian.com>
21332
21333         * class.c (mono_type_get_name_recurse): Small fix.
21334
21335 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
21336
21337         * locales.c : indentation fixie.
21338
21339 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
21340
21341         * object-internals.h,
21342           locales.h,
21343           locales.c,
21344           culture-info.h,
21345           icall.c : added RegionInfo table support.
21346         * culture-info-table.h : regenerated for region support.
21347
21348 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
21349
21350         * reflection.c (resolve_object): handle all kinds of MonoMethod
21351         including generic ones
21352
21353 2005-08-12  Ankit Jain <jankit@novell.com>
21354
21355         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
21356           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
21357
21358 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
21359
21360         * process.c: Don't close a thread handle when it's NULL. This is a
21361         workaround for bug #75733.
21362
21363 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
21364
21365         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
21366
21367 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
21368
21369         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
21370
21371 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21372
21373         * threadpool.c: if a work item in the thread pool has a callback that
21374         catches a exception, don't propagate it after invoking the callback.
21375         Fixes bug #75336.
21376
21377 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
21378
21379         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
21380
21381         * class-internals.h (MonoCachedClassInfo): Add some new fields.
21382
21383         * class.c (mono_class_init): Load field info lazily in the AOT case.    
21384
21385         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
21386
21387 2005-08-03  Ankit Jain  <jankit@novell.com>
21388
21389         Fix #75683.
21390         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
21391           PInvoke calling convention is 0.
21392
21393 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
21394
21395         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
21396         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
21397
21398 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
21399
21400         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
21401         to handle threads not started by the GC (patch by Michael Meeks
21402         <michael.meeks@novell.com>).
21403
21404 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
21405
21406         * reflection.c: Make buffer used in emitting types larger for some
21407         big generic types (patch by Michal Moskal).
21408
21409 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
21410
21411         * mono-debug.c: Fix some (not all) alignment problems.
21412
21413 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21414
21415         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
21416         Invoke mono_image_load_from_data_full passing the refonly
21417         parameter.
21418
21419         * assembly.c
21420         (mono_assembly_open_from_bundle): Add the refonly argument, 
21421         in order to pass it to other methods it calls to.
21422         (do_mono_assembly_open): Add the refonly argument, in order 
21423         to pass it to other methods it calls to.
21424         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
21425         the refonly parameter to it.
21426
21427         * image.c: Add loaded_images_refonly_hash and
21428         loaded_images_refonly_guid_hash to cache the reflection
21429         only loaded images.
21430         (mono_images_init): Initialize the hash tables used for
21431         caching the reflection only images.
21432         (load_modules): Invoke mono_image_open_full passing the refonly
21433         parameter to load the modules the correct way.
21434         (build_guid_table): Add the refonly argument, to re-build the 
21435         correct hash table.
21436         (do_mono_image_open): Added the refonly argument, in order to
21437         define it for the loaded image.
21438         (mono_image_loaded_full): New function, which receives an
21439         additional parameter to look for the image in the refonly or
21440         non-refonly section.
21441         (mono_image_loaded): Updated, using mono_image_loaded_full.
21442         (mono_image_loaded_by_guid_full): The same case that happens
21443         with mono_image_loaded_full.
21444         (mono_image_loaded_by_guid): Likewise.
21445         (register_image): Use the ref_only variable inside MonoImage
21446         to decide in which hash table store the current image.
21447         (mono_image_open_from_data_full): Rename
21448         mono_image_open_from_data to mono_image_open_from_data_full,
21449         adding the refonly argument, to define the ref_only variable 
21450         inside MonoImage.
21451         (mono_image_open_from_data): Return 
21452         mono_image_open_from_data_full.
21453         (mono_image_open_full): Rename mono_image_open to
21454         mono_image_open_full, receiving the new refonly argument,
21455         to pass it to inner methods.
21456         (mono_pe_file_open): Update this function, to open
21457         a MonoImage as a non-refonly image.
21458         (mono_image_close): Use the refonly variable inside
21459         MonoImage to remove the image from the correct caches.
21460
21461         * image.h: Add the signatures of mono_image_open_full,
21462         mono_image_open_from_data_full, mono_image_loaded_full,
21463         mono_image_loaded_by_guid_full.
21464
21465         * metadata-internals.h: Add the ref_only field to 
21466         MonoImage.
21467         
21468 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21469
21470         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
21471         Fix the last behavior, which used to load the assemblies and
21472         extract MonoReflectionAssemblyName information, instead of
21473         extract it from the metadata tables. Needed for Reflection
21474         Only assemblies.
21475         
21476 2005-07-29  Martin Baulig  <martin@ximian.com>
21477
21478         * mono-debug-debugger.c
21479         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
21480         not initialized.
21481
21482         * mono-debug.c
21483         (mono_debug_address_from_il_offset): Check whether we have
21484         debugging support before attempting to take the lock.
21485         (mono_debug_source_location_from_address): Likewise.
21486         (mono_debug_source_location_from_il_offset): Likewise.
21487         (mono_debug_il_offset_from_address): Likewise.
21488         (mono_debug_address_from_il_offset): Likewise.
21489
21490 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
21491
21492         * class.c (mono_class_from_name_case): Add support for dynamic images.
21493         Fixes #75650.
21494
21495         * object.c (mono_class_compute_gc_descriptor): Add a workaround
21496         for #75479.
21497
21498 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21499         
21500         * reflection.c (mono_method_get_object): Fix warning.
21501
21502 2005-07-28  Martin Baulig  <martin@ximian.com>
21503
21504         * mono-debug.c
21505         (mono_debug_add_wrapper): Also write the wrapper type.
21506
21507 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21508
21509         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
21510         
21511         * class.c (mono_class_init): Avoid reading nested classes if the AOT
21512         data indicates the class has none.
21513
21514 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
21515
21516         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
21517         loader lock with the debugger lock. Prevents deadlocks for beagle.
21518
21519         Beagle can now run on an smp box for a weekend without any
21520         issues. Woohoo!
21521
21522 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
21523
21524         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
21525         in a module. Fixes #75629.
21526
21527 2005-07-26  Martin Baulig  <martin@ximian.com>
21528
21529         * mono-debug.c (mono_debug_add_wrapper): New static method.
21530         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
21531         interncall or a wrapper.
21532
21533         * mono-debug.h (MonoDebugWrapperData): New public typedef.
21534         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
21535         (MONO_DEBUGGER_VERSION): Bump to 51.
21536
21537         * mono-debug-debugger.c
21538         (mono_debugger_add_type): Removed this empty function.
21539         (mono_debugger_add_method): Likewise.
21540
21541 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
21542
21543         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
21544         before accessing method->slot.
21545
21546 2005-07-21  Jb Evain  <jbevain@gmail.com>
21547
21548         * reflection.c (method_encode_clauses/class): Handle filters clauses.
21549         Fixes #75010.
21550
21551 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
21552
21553         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
21554         #75587.
21555
21556 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
21557
21558         * image.h image.c: Add mono_image_get_guid () API function.
21559
21560 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
21561
21562         There were issues when multiple threads tried to load
21563         assemblies. A deadlock was created between assemblies_mutex and
21564         mono_domain_assemblies_lock. This fixes the issue by making the
21565         assembly ref counting be lock free. See bug 75586.
21566         
21567         * image.c (mono_image_close): The add ref function here was using
21568         Interlocked operations while the unref was using a mutex and a
21569         --. I don't think this was ever a bug that would be exposed in a
21570         non-pendantic way (ie, by an embedder doing a ref on one thread
21571         and an unref on another), but for the sake of correctness, this is
21572         now Interlocked.
21573
21574         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
21575         (mono_assembly_load_reference): Call mono_assembly_addref rather
21576         than touching the refcount ourselves.
21577         (mono_assembly_close): Use InterlockedDecrement to unref the
21578         assembly. Don't acquire the lock unless it is actually needed.
21579
21580 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21581
21582         * class.c (mono_class_layout_fields): Fix calculation of has_references
21583         for generic types.
21584
21585 2005-07-12  Martin Baulig  <martin@ximian.com>
21586
21587         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21588
21589         * metadata.c
21590         (mono_type_hash): Provide better hashing for generic instances.
21591         (mono_generic_inst_hash): Improve hashing.
21592         (mono_generic_class_hash): Likewise.
21593
21594         * reflection.c (mymono_metadata_type_hash): Improve hashing for
21595         generic instances.
21596
21597 2005-07-12  Martin Baulig  <martin@ximian.com>
21598
21599         * reflection.c (mono_reflection_create_runtime_class): Remove the
21600         hack for generic type definitions and non-`Run' assemblies.
21601         (mono_reflection_bind_generic_parameters): Also use
21602         `klass->wastypebuilder' to check for TypeBuilders.
21603
21604 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21605
21606         * class.c (mono_class_layout_fields): Fix calculation of has_references
21607         for generic types.
21608
21609         * class.c (inflate_generic_class): Fix a leak.
21610         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
21611         for generic types.
21612
21613 2005-07-11  Martin Baulig  <martin@ximian.com>
21614
21615         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
21616         on error.
21617
21618 2005-07-11  Martin Baulig  <martin@ximian.com>
21619
21620         * loader.c (find_method): Also lookup in
21621         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
21622
21623 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21624
21625         * appdomain.c (mono_domain_unload): Don't free the error message
21626         before passing it to mono_get_exception_...
21627
21628         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
21629         
21630 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
21631
21632         * threads.c: try to better guess an available RT signal (bug #75387).
21633
21634 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21635
21636         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
21637         and CACHE_OBJECT.
21638
21639 2005-07-07  Martin Baulig  <martin@ximian.com>
21640
21641         * class.c (mono_type_get_name_full): Return NULL for
21642         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
21643         fixes #75408.
21644
21645 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21646
21647         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
21648         exit the appdomain as well being aborted.
21649
21650         * threadpool.c: Create all threadpool threads inside the root appdomain, and
21651         change back to the root domain after calling managed code. This enables
21652         appdomains using threadpools to be unloaded.
21653
21654 2005-07-07  Martin Baulig  <martin@ximian.com>
21655
21656         * class-internals.h
21657         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
21658         into `MonoDynamicGenericClass' since we only need it for dynamic
21659         types.
21660
21661         * reflection.c (mono_class_bind_generic_parameters): We don't need
21662         to compute the `parent' here.
21663
21664 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
21665
21666         * culture-info-table.h : regenerated.
21667
21668 2005-07-06  Martin Baulig  <martin@ximian.com>
21669
21670         * icall.c
21671         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
21672
21673         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
21674
21675 2005-07-06  Martin Baulig  <martin@ximian.com>
21676
21677         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
21678         we're doing a signature-only comparision; fixes #74945.
21679
21680 2005-07-06  Martin Baulig  <martin@ximian.com>
21681
21682         * class-internals.h (MonoGenericClass): Moved some things out into
21683         a new `MonoInflatedGenericClass' type.  
21684         (MonoInflatedGenericClass): New type; the `klass' of a
21685         `MonoGenericClass' is now computed lazyly in
21686         mono_get_inflated_generic_class().      
21687
21688         * class.c (mono_get_inflated_generic_class): New public function.
21689         (mono_class_inflate_generic_method): Removed the unused
21690         `MonoClass *' argument.
21691         (setup_generic_vtable): Don't call mono_get_inflated_method() on
21692         all the methods.
21693         (mono_class_create_generic): Make this static and merge it with
21694         mono_class_create_generic_2(); we're now called automatically from
21695         mono_get_inflated_generic_class().
21696
21697         * loader.c (mono_method_signature): Call
21698         mono_get_inflated_method() here.
21699
21700 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
21701
21702         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
21703         type of fields with RVA.
21704
21705         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
21706         for this pseudo class.
21707         (my_mono_class_from_generic_parameter): Likewise.
21708         (mono_class_init): Allow interfaces to have cctors.
21709
21710 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21711
21712         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
21713         lazily for AOT methods.
21714
21715 2005-07-05  Martin Baulig  <martin@ximian.com>
21716
21717         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
21718         returns FALSE for a successful match, not TRUE.
21719
21720 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21721
21722         * loader.c (mono_method_get_index): Optimize this a bit.
21723
21724 2005-07-04  Martin Baulig  <martin@ximian.com>
21725
21726         * class.c
21727         (class_compute_field_layout): Move the check for generic type
21728         definitions into mono_class_layout_fields().  Fixes #74684.
21729         (mono_class_from_generic_parameter): Correctly compute
21730         `klass->parent'; fixes #75457.
21731
21732         * reflection.c (register_assembly, register_module): Make sure
21733         `domain->rejobject_hash' is already created.
21734
21735 2005-07-02  Martin Baulig  <martin@ximian.com>
21736
21737         * class-internals.h
21738         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
21739         `MonoDynamicGenericClass'.      
21740
21741 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
21742
21743         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
21744         returned by a field getter is null, since null is a valid value.
21745
21746 2005-07-01  Martin Baulig  <martin@ximian.com>
21747
21748         * reflection.c (mono_reflection_generic_class_initialize): Update
21749         the `dgclass->fields [i].parent' to the correct class.
21750         (mono_image_get_fieldref_token): Use the declaring type, not the
21751         reflected type.
21752
21753 2005-07-01  Martin Baulig  <martin@ximian.com>
21754
21755         * loader.c (find_method): Also look in the interfaces; fixes #75429.
21756
21757 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
21758
21759         * threads.c (thread_cleanup): assert that thread != NULL
21760         (wait_for_tids_or_state_change): We were using the wrong variable
21761         when accessing wait->threads. `i' was always out of the bounds of
21762         the array.
21763
21764 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21765
21766         * loader.c: map user32 and kernel32 to libMonoSupportW
21767
21768 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
21769
21770         * appdomain.c (unload_thread_main): Mark this as WINAPI.
21771
21772 2005-06-28  Martin Baulig  <martin@ximian.com>
21773
21774         * loader.c (method_from_methodspec): Fix #75334.
21775
21776 2005-06-28  Martin Baulig  <martin@ximian.com>
21777
21778         Fix #74953 - Arrays now implement the generic IList<T> interface
21779         on the 2.0 platform.
21780
21781         * class-internals.h (MonoDefaults): Added `generic_array_class'.
21782
21783         * reflection.c (mono_class_bind_generic_parameters): New public
21784         function; similar to mono_reflection_bind_generic_parameters(),
21785         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
21786
21787         * domain.c (mono_init_internal): Try to initialize.
21788         `mono_defaults.generic_array_class' here; this'll only succeed if
21789         we're using the 2.0 corlib.
21790
21791         * icall.c
21792         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
21793         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
21794         (mono_lookup_internal_call): Added support for nested classes.
21795
21796         * loader.c
21797         (mono_get_method_from_token): Set `result->signature->pinvoke' if
21798         we're an interncall and have generic arguments.
21799
21800         * class.c
21801         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
21802         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
21803         instance of System.Array.InternalArray<T> for arrays, so they
21804         implement the generic IList<T> interface.
21805
21806 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
21807
21808         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
21809         (chastamar@yahoo.com). Fixes #75374.    
21810
21811 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
21812
21813         * culture-info-table.h: regenerated.
21814
21815 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21816
21817         * icall.c: handle spaces correctly for base64 strings.
21818
21819 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
21820
21821         * *.c: Kill some warnings.
21822
21823 2005-06-23  Duncan Mak  <duncan@novell.com>
21824
21825         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
21826         that this builds on Solaris 10 (x86).
21827
21828 2005-06-23  Martin Baulig  <martin@ximian.com>
21829
21830         * class.c
21831         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
21832         generic type definitions.
21833
21834 2005-06-23  Martin Baulig  <martin@ximian.com>
21835
21836         Fix #75331.
21837
21838         * metadata.c (mono_class_get_overrides): Renamed to
21839         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
21840         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
21841         pass it to mono_get_method_full().
21842
21843 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
21844
21845         * reflection.c (mono_reflection_create_runtime_class): take the
21846         mono_domain_lock in this method. Prevents deadlocks
21847
21848 2005-06-22  Martin Baulig  <martin@ximian.com>
21849
21850         * loader.c (method_from_methodspec): Fix #75330.
21851
21852 2005-06-22  Martin Baulig  <martin@ximian.com>
21853
21854         * reflection.c (type_get_qualified_name): Use
21855         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
21856         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
21857         argument; use it if we don't have an assembly name.
21858
21859 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
21860
21861         * object.c: In mono_message_init, set "copy out" flag for in
21862         parameters with the [Out] flag.
21863
21864 2005-06-21  Martin Baulig  <martin@ximian.com>
21865
21866         * class.c
21867         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
21868         and MONO_TYPE_PTR.
21869
21870 2005-06-21  Martin Baulig  <martin@ximian.com>
21871
21872         * class.c (mono_class_init): Don't initialize `class->fields' for
21873         generic instances since they're initialized again in
21874         compute_field_layout(). 
21875         (compute_field_layout): Set the field's `generic_info' here; fix
21876         #75320. 
21877
21878 2005-06-21  Martin Baulig  <martin@ximian.com>
21879
21880         * class-internals.h
21881         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
21882
21883         * metadata.c (mono_metadata_generic_method_equal): Also
21884         distinguish the `generic_class'; fixes #75334.
21885
21886 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21887
21888         * domain.c:
21889         * appdomain.c:
21890         * domain-internals.h:
21891         * reflection.c: 'domain_assemblies' field is now protected by its own
21892         lock. Don't call into managed code to run the AssemblyLoad event if we
21893         now there are no registered delegates for it.
21894
21895 2005-06-20  Martin Baulig  <martin@ximian.com>
21896
21897         * class.c (mono_class_is_assignable_from): Use a custom version of
21898         mono_class_has_parent() to make things work for generic instances;
21899         fix #75300.
21900
21901 2005-06-20  Martin Baulig  <martin@ximian.com>
21902
21903         * loader.c (method_from_methodspec): Apply a patch from
21904         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
21905
21906 2005-06-20  Martin Baulig  <martin@ximian.com>
21907
21908         * class.c (mono_class_init): Reverted Zoltan's last change; it
21909         breaks generics.
21910
21911 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
21912
21913         * threads.c (wait_for_tids_or_state_change): Add missing locking.
21914
21915 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21916
21917         * socket-io.c: fix the index in the socket array for writable/error
21918         sockets. Fixes bug #75306.
21919
21920 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
21921
21922         * class.c (mono_class_init): Allow interfaces to have static ctors.
21923
21924 2005-06-17  Martin Baulig  <martin@ximian.com>
21925
21926         * loader.c (method_from_methodspec): Use `context->container' when
21927         parsing the `gmethod->inst'.
21928
21929 2005-06-17  Martin Baulig  <martin@ximian.com>
21930
21931         * class.c (mono_type_get_name_recurse): Don't add the assembly
21932         name for type arguments.
21933
21934 2005-06-15  Martin Baulig  <martin@ximian.com>
21935
21936         * reflection.c (mono_image_get_inflated_method_token): Encode
21937         correct klass; fixes #75260.
21938
21939 2005-06-13 Michal Moskal <malekith@nemerle.org>
21940
21941         * icall.c: Make GetCorrespondingMethod/Constructor take
21942         MonoReflectionMethod method not MonoMethod. Removed
21943         MonoType.GetCorrespondingField, and make
21944         MonoGenericType.GetCorrespondingField take name not
21945         MonoClassField.
21946
21947 2005-06-13  Michal Moskal <malekith@nemerle.org>
21948
21949         * reflection.c (field_encode_signature, encode_locals):
21950          Make sizes of buffers for types larger (for big generic types).
21951          (create_generic_typespec,
21952          mono_reflection_sighelper_get_signature_local,
21953          mono_reflection_sighelper_get_signature_field):
21954          Add asserts for too small buffers.
21955
21956 2005-06-15  Martin Baulig  <martin@ximian.com>
21957
21958         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
21959         if our parent is not a dynamic type.
21960
21961 2005-06-15  Martin Baulig  <martin@ximian.com>
21962
21963         * class-internals.h (MonoTypeNameFormat): New enum.
21964
21965         * class.c
21966         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
21967         (mono_type_get_full_name): Removed.
21968         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
21969         argument instead of the boolean's.
21970
21971         * icall.c (ves_icall_System_MonoType_getFullName):
21972         Added `gboolean assembly_qualified'.    
21973
21974         * reflection.h
21975         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
21976
21977         * reflection.c (mono_reflection_parse_type): Parse the new type
21978         name format.
21979
21980 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21981
21982         * icall.c: no need to convert from utf16 to utf8 and then back again
21983         after the call to GetLogicalDrives.
21984
21985 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21986
21987         * icall.c: frombase64. Fix problems exposed by new tests.
21988
21989 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21990
21991         * icall.c: added internal calls for converting char [] and strings in
21992         base64 into byte [].
21993
21994 2005-06-10  Martin Baulig  <martin@ximian.com>
21995
21996         * class.c (mono_class_create_generic_2): Read the nested classes
21997         from the metadata rather than from `gklass->nested_classes' since
21998         `gklass' might not be initialized yet.
21999
22000 2005-06-09  Duncan Mak  <duncan@novell.com>
22001
22002         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
22003         all public headers. Fixes #74919.
22004
22005 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
22006
22007         * domain.c: The key for proxy_vtable_hash is now a pointer
22008         array. Added new GHashFunc and GCompareFunc functions for this.
22009
22010         * class.h: The list of interfaces in MonoRemoteClass is known in
22011         advance and can't grow (we create a new MonoRemoteClass if needed),
22012         so now the interface array can be allocated together with
22013         MonoRemoteClass.
22014         
22015         * object.c: Added a new method create_remote_class_key.
22016         Fixed mono_remote_class so it does not depend on
22017         mono_upgrade_remote_class.
22018         Removed extend_interface_array.
22019         Added new method clone_remote_class(), which makes a copy of a remote
22020         class and adds a new interface or class to it.
22021         mono_upgrade_remote_class() now creates a new remote class (or gets
22022         it from the cache) if an vtable upgrade is needed. In this way
22023         we make sure that other objects sharing the same remote class
22024         don't get the new vtable with unwanted interfaces.
22025         
22026         * object-internals.h:
22027         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
22028         
22029         * marshal.c: Track changes in mono_upgrade_remote_class().
22030
22031 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
22032         * icall.c: Add runtime methods for obtaining members of inflated
22033         class, which were created from supplied non-inflated members. It
22034         is used in internal Get{Method,Constructor,Field} methods in
22035         System.Type
22036
22037 2005-06-09  Martin Baulig  <martin@ximian.com>
22038
22039         * reflection.c
22040         (mono_reflection_bind_generic_method_parameters): Fix #75169.
22041
22042 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22043         * reflection.c (mono_image_basic_init): Define
22044         Version in MonoDynamicAssembly. 
22045         
22046 2005-06-08  Martin Baulig  <martin@ximian.com>
22047
22048         Fix #75136.
22049
22050         * loader.c
22051         (mono_method_signature_full): New public method; takes a
22052         `MonoGenericContext *'.
22053         (find_method): Use mono_method_signature_full() and pass the
22054         klass'es context to it.
22055
22056         * class.c (mono_class_is_inflated_method): Use
22057         mono_method_signature_full() and pass the context to it.
22058
22059 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
22060
22061         * object.c: add proper locking in mono_remote_class_vtable(),
22062         fixes possible memory corruption.
22063
22064 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
22065
22066         * marshal.c (mono_remoting_marshal_init): set
22067         initialized after initialization.
22068
22069 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
22070
22071         * locales.c : hush.
22072
22073 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
22074
22075         * object.c (extend_interface_array): fix really silly
22076         memory corrupting / comparison bug.
22077
22078 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22079
22080         * reflection.c: Functions added to support the creation
22081         of CustomAttributeData, which includes Attribute data
22082         used by ReflectionOnly methods.
22083
22084         * reflection.h:  mono_reflection_get_custom_attrs_data and
22085          mono_custom_attrs_data_construct added (functions exposed).
22086
22087          * icall.c: Added mono_reflection_get_custom_attrs_data
22088          as icall.
22089         
22090 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
22091
22092         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
22093         lupus's request.
22094
22095 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
22096
22097         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
22098
22099         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
22100         dynamic DllImportAttribute.
22101
22102         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
22103         dynamic DllImportAttribute.
22104
22105         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
22106         Fixes #75162.
22107
22108 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22109
22110         * threads.c: avoid segfault when an unstarted thread is aborted.
22111
22112 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
22113
22114         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
22115         Returns the name and version of the runtime for reporting.
22116
22117 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22118
22119         * appdomain.c: bump corlib version.
22120         * object-internals.h: new field in MonoReflectionAssembly.
22121
22122 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22123
22124         * object-internals.h: Carlos forgot to add this field.
22125
22126 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22127
22128         * icall.c: Added create_version to create instances
22129         of Version of MonoReflectionAssemblyName. This change helps
22130         the AssemblyName tests to keep running fine.
22131         
22132 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
22133   
22134         * object.c (mono_method_return_message_restore): A somehow less
22135         intrusive fix for #75138.
22136
22137 2005-06-03  Raja R Harinath  <rharinath@novell.com>
22138
22139         * object.c (mono_method_return_message_restore): Fix computation
22140         of expected number of out args.
22141
22142 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22143
22144         * reflection.c (mono_image_get_method_info): Fix the case when the
22145         charset is empty.
22146
22147 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
22148
22149         * object.c: Added missing null check in
22150           mono_method_return_message_restore.
22151
22152 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22153
22154         * reflection.c (mono_image_get_method_info): Handle the case when
22155         dllentry is empty.
22156
22157 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
22158
22159         * object.c: When creating the vtable for a proxy, take into account
22160         all inherited interfaces, not only the ones registered in
22161         iclass->interfaces. This fixs bug #74996.
22162         Also, in mono_method_return_message_restore, verify that the array
22163         of out args has the expected lengh.
22164
22165 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22166
22167         * socket-io.c: update the timeout in Poll when the call is interrupte.
22168
22169 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22170
22171         * socket-io.c: support abort/suspend in Select_internal after last
22172         change.
22173
22174 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22175
22176         * threadpool.c: remove warning.
22177
22178 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22179
22180         * icall.c:
22181         * socket-io.[ch]: Select_internal uses poll() now when available, thus
22182         removing the 1024 limit from select(). Runtime part of the fix for
22183         bug #71203.
22184
22185 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22186
22187         * socket-io.c: when resolving the addresses for the same
22188         host returned by gethostname(), get the local IPs from the interface
22189         list. Loopback addresses are discarded if the are interfaces up with
22190         non-loopback ones. Fixes bug #63265.
22191
22192 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
22193
22194         * appdomain.c, verify.c, object-internals.h, reflection.c:
22195         bumped corlib number to 36, and added new extra_flags field
22196         to ReflectionMethodBuilder and friends.  Fixes #75060.
22197
22198 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
22199
22200         * gc.c: register a new weak link only if the object is non-null
22201         (fixes bug#75047).
22202
22203 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22204
22205         * culture-info.h : short time pattern too.
22206
22207 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22208
22209         * culture-info.h : expand long time pattern string length.
22210
22211 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22212
22213         * culture-info-table.h : update (more French date format; #72788).
22214
22215 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
22216
22217         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
22218         the method is static. Fixes #75029.
22219
22220 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
22221
22222         * reflection.c: Update the table_idx field of method builders after
22223         saving the module, since it can change. This is a workaround for
22224         bug #74914. 
22225
22226 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22227
22228         * culture-info-table.h : update (additional French date format).
22229
22230 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
22231
22232         * icall.c (ves_icall_type_Equals): Revert last change.
22233         
22234         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
22235
22236         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
22237
22238 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
22239
22240         * class-internals.h: Added executioncontext_class field to 
22241         MonoDefaults structure.
22242         * domain.c: Cache System.Threading.ExecutionContext class in 
22243         mono_defaults.
22244         * object.c: Capture the ExecutionContext for asynchroneous calls in
22245          mono_async_result_new.
22246         * object-internals.h: Added execution_context and original_context 
22247         fields to MonoAsyncResult. Added execution_context to MonoThread.
22248         * security-manager.c|.h: Added mono_get_context_capture_method to 
22249         return the capture method (if required by the security manager or by
22250         the framework version used).
22251         * threadpool.c: Apply capture (if present) ExecutionContext in 
22252         mono_async_invoke and revert to original context after it completes.
22253
22254 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
22255
22256         * culture-info-table.h : updated (real hacky solution for zh-CHT).
22257
22258 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
22259
22260         * culture-info-table.h : zh-CHT related workaround.
22261
22262 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22263
22264         * marshal.c (emit_marshal_custom): Add some error checking and call the
22265         methods in the ICustomMarshaler interface. Fixes #74875.
22266         
22267         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
22268         native->managed wrappers.
22269
22270 2005-05-12  Martin Baulig  <martin@ximian.com>
22271
22272         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
22273         here and use the loader lock.
22274
22275         * mono-debug.c: Properly lock when the debugger is not attached.
22276         (mono_debug_init): Release the initial lock if we're not running
22277         in the debugger.
22278
22279 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22280
22281         * marshal.c (emit_marshal_custom): Pass through NULL values without
22282         calling the custom marshalling routines.
22283
22284         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
22285         conversion in structures. Fixes #74882.
22286
22287 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
22288
22289         * culture-info-table.h : zh-* cultures were missing.
22290
22291 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
22292
22293         * threads.c: Added a new event background_change_event which is signaled
22294         when a thread changes its background mode.
22295         Moved here several checks previously done in managed code. The checks
22296         require the thread lock, and using the thread lock in managed code
22297         can result in deadlocks.
22298         Merged Start_internal and Thread_internal into a single method. Now 
22299         Thread_internal does all work of creating and starting a thread.
22300         Added icalls for setting and getting the state of the object. Moved from
22301         managed code to avoid locking there.
22302         Added wait_for_tids_or_state_change() which is called instad of
22303         wait_for_tids when waiting for non-backround threads to end. This method
22304         will return if one of the threads ends or the background_change_event
22305         is signaled.
22306         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
22307         the background mode. This method signals the background_change_event
22308         event.
22309         * icall.c:
22310         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
22311         removed Start_internal.
22312         
22313 2005-05-11  Martin Baulig  <martin@ximian.com>
22314
22315         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
22316         to order of some fields to get proper alignment on 64-bit machines.
22317
22318 2005-05-11  Martin Baulig  <martin@ximian.com>
22319
22320         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
22321         changes as they're broken and completely fuck up the debugger.
22322
22323         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
22324
22325 2005-05-10  Martin Baulig  <martin@ximian.com>
22326
22327         * reflection.c (mono_reflection_generic_class_initialize): Don't
22328         call mono_class_setup_parent() here.
22329
22330 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22331
22332         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
22333         send/receive timeout use an integer in milliseconds. We were using a
22334         struct timeval.
22335
22336 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22337
22338         * locales.c:
22339         (internal_get_cultures): reserve the first slot of the array for the
22340         InvariantCulture, which will be filled in managed code.
22341
22342 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
22343
22344         * reflection.c (mono_image_fill_module_table): Initialize the
22345         GENERATION field as well.
22346
22347 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22348
22349         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
22350         Monitor.Enter on the object.
22351
22352 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
22353
22354         * threads.c: Enable the wait for running threads when exiting.
22355         * icall.c: Suspend all threads before exiting.
22356
22357 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
22358
22359         * assembly.c (mono_assembly_load_reference): Fix warning.
22360
22361 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22362
22363         * threadpool.c: changed the default number of threads per cpu. From now
22364         on, the default will be 20 + (5 * number of cpus) instead of 50.
22365
22366 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
22367
22368         * loader.c (mono_method_get_signature_full): Add locking here.
22369
22370 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
22371
22372         * appdomain.c: Moved methods for parsing and freeing assembly
22373         names to assembly.c.
22374         * assembly.c, domain-internals.h: Created public methods for parsing
22375         assembly names. Fixed mono_assembly_load_with_partial_name:
22376         it now finds the best match, taking into account the version,
22377         token and culture specified in the partial name. Also return
22378         the latest version if no version information is specified.
22379
22380 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
22381
22382         * threadpool.c: replace check for SocketAsyncCall class.
22383
22384 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22385
22386         * threadpool-internals.h:
22387         * Makefile.am: added threadpool-internals.h
22388
22389         * threadpool.c: call mono_unhandled_exception on exceptions not handled
22390         that happen in threadpool threads (tested on MS).
22391         (mono_thread_pool_remove_socket): new function that dispatch any pending
22392         AIO call on a socket that is closing. By now only epoll really needs it,
22393         as select/poll wake up when the socket closes.
22394
22395
22396         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
22397
22398 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
22399
22400         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
22401
22402 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
22403
22404         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
22405
22406 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
22407
22408         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
22409         has an abort request, convert it into a suspend request.
22410
22411 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
22412
22413         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
22414         warning for the usage of `UnmanagedFunctionPointerAttribute' which
22415         is not supported yet.
22416
22417 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22418
22419         * image.c: register assemblies loaded from data (bundles) in the loaded
22420         assemblies hash. Fixes bug #74772.
22421
22422 2005-04-29  Martin Baulig  <martin@ximian.com>
22423
22424         * class.c (mono_type_get_name_recurse): Update to the new naming
22425         schema from the latest .NET 2.x beta2.
22426         (mono_class_setup_vtable_general): If we're a generic instance,
22427         copy the vtable from our generic type definition and inflate all
22428         the methods in it.
22429
22430         * loader.c (find_method): Update to the new naming schema from the
22431         latest .NET 2.x beta2.
22432
22433 2005-04-29  Raja R Harinath  <harinath@gmail.com>
22434
22435         * class.c (mono_class_init): Add a mono_loader_unlock to the
22436         #74734 fix.
22437
22438 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
22439
22440         * icall.c (ves_icall_System_Environment_Exit): Remove the 
22441         suspend_all_other_threads () call for the time being, since it can hang.
22442
22443         * threads.c (mono_thread_manage): Similarly, disable the waiting for
22444         the background threads to exit, since it can also hang.
22445
22446         * class.c (mono_class_init): Applied patch from Ankit Jain 
22447         (radical@gmail.com). Avoid pending init errors when a field refers
22448         to a nested class using a typeref. Fixes #74734.
22449
22450         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
22451         this for dynamic modules.
22452
22453 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22454
22455         * threads.c: don't wait for threads that are in the process of aborting
22456         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
22457         and waiting for background threads to finish. This makes xsp and
22458         mod-mono-server exit without random length delays and/or hangs.
22459
22460 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22461
22462         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
22463
22464 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
22465
22466         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
22467         dynamic types to prevent infinite loops. Fixes #74727.
22468
22469         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
22470         ..._is_assignable_to.
22471
22472 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
22473
22474         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
22475
22476 2005-04-25  Martin Baulig  <martin@ximian.com>
22477
22478         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
22479
22480         * domain.c
22481         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
22482
22483         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
22484
22485         * reflection.c (build_compressed_metadata): Set metadata header
22486         version to 2.0.
22487
22488 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
22489
22490         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
22491         number into an integral and a decimal part. Fixes #70473.
22492
22493         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
22494
22495 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
22496
22497         * culture-info-table.h : reflected the latest locale-builder output.
22498
22499 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22500
22501         * threadpool.c: check for SuspendRequested too when deciding if
22502         mono_thread_interruption_checkpoint should be called.
22503
22504 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22505
22506         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
22507         * threads.c: remove interruption_mutex and use Interlocked instead. When
22508         suspending all the threads, wait for all the suspended events at once.
22509         If we're shutting down and get an APC that is going to be queued,
22510         call mono_thread_execute_interruption immediately, as the thread might
22511         be sleeping on a pthread condition or mutex.
22512
22513         * icall.c: call mono_runtime_set_shutting_down before suspending the
22514         threads.
22515
22516         Fixes bug #74693. And now xsp is happier when exiting.
22517
22518 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
22519
22520         * loader.c (mono_stack_walk): Fix #74690.
22521
22522 2005-04-22  Martin Baulig  <martin@ximian.com>
22523
22524         * mono-debug.h (MonoDebugMethodJitInfo): Added
22525         `MonoDebugMethodJitInfo *jit'.
22526
22527         * mono-debug.c (mono_debug_read_method): Cache the
22528         MonoDebugMethodJitInfo in `address->jit'.
22529         (mono_debug_free_method_jit_info): New public method.
22530
22531 2005-04-22  Martin Baulig  <martin@ximian.com>
22532
22533         * class.c (mono_class_is_assignable_from): Disallow
22534         type parameter -> interface.
22535
22536 2005-04-21  Dick Porter  <dick@ximian.com>
22537
22538         * threads.c (mono_thread_create): Turn an assertion into an error.
22539
22540 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
22541
22542         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
22543         
22544         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
22545         Fix some gcc 4.0 warnings.
22546
22547 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
22548
22549         * file-io.c: fix alt dir separator char on unix systems
22550         and cleanup (fixes bug #71214).
22551
22552 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
22553
22554         * marshal.c: Use CALLVIRT instead of CALL when dispatching
22555         a call to a remote domain, since the method may be an
22556         interface method in the client domain. This fixes bug #74192.
22557
22558 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22559
22560         * threadpool.c: recv/send are now performed before going back to managed
22561         code to save one transition.
22562
22563 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22564
22565         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
22566
22567         * metadata/threadpool.c: removed hack to workaround the bug above.
22568
22569         Fixes bug #74618.
22570
22571 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
22572
22573         * reflection.c reflection.h: Fix handling of parameter defaults in
22574         dynamic methods. Also fixes handling of parameter attributes.
22575         Fixes #74609.
22576
22577         * mono-debug.c (mono_debug_close_image): Fix warning.
22578
22579 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22580
22581         * socket-io.h: replaced old unused field with new 'blocking'.
22582         * threadpool.c: restore socket blocking state on windows(tm).
22583
22584 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
22585
22586         * icall.c: don't return the codebase in the AssemblyName[] returned by
22587         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
22588         * object-internals.h: Removed FIXME (fields were presents) and fixed
22589         versioncompat declaration.
22590
22591 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22592
22593         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
22594         not closed, so don't cleanup when it happens.
22595
22596 2005-04-13  Chris Toshok  <toshok@ximian.com>
22597
22598         * mono-debug-debugger.h: change prototype for
22599         mono_debugger_lookup_type.
22600
22601         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
22602         this function, although it should probably be named
22603         mono_debugger_init_type.
22604
22605 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22606
22607         * threadpool.c: fix non-AIO case.
22608
22609 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
22610
22611         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
22612         the built-in profiler to measure just JIT compilation times.
22613
22614 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22615
22616         * threadpool.c: the epollfd might be closed by another thread at
22617         any time, so ignore EBADF at treat it as a "we're closing" sign.
22618
22619 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22620
22621         * threadpool.c: release the semaphores with a count equals to the number
22622         of working threads in both IO and regular pools. Fixed typo that messed
22623         up the count of IO pool threads. Don't initialize the pipe handles if
22624         we're using epoll.
22625
22626 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22627
22628         * threadpool.c: some systems don't like a NULL when deleting the socket
22629         from epoll.
22630
22631 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22632
22633         * threadpool.c: fix semaphore allocation.
22634
22635 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22636
22637         * threadpool.c: added epoll() based implementation for asynchronous IO
22638         that is used instead of the default poll() when available.
22639         It can be disabled by setting MONO_DISABLE_AIO.
22640
22641 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22642
22643         * threadpool.c: windows needs 'closesocket' and instead of returning
22644         0 when the stream is closed while in select, it returns -1. Fixes bug
22645         #74573.
22646
22647 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
22648
22649         * class.c (class_compute_field_layout): Fix the regression caused by
22650         the previous try.
22651
22652 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22653
22654         * threadpool.c: separate pool for socket async. IO.
22655         * threadpool.h: mono_max_worker_threads is not a global any more.
22656
22657 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
22658
22659         * class.c (class_compute_field_layout): Fix #74549.
22660
22661 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22662
22663         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
22664         use 2 connected sockets instead.
22665
22666 2005-04-08  Miguel de Icaza  <miguel@novell.com>
22667
22668         * mono-config.c: Add new entry point for mkbundle
22669         mono_config_parse_memory. 
22670
22671 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22672
22673         * threadpool.c: removed another unused function.
22674
22675 2005-04-08  Ankit Jain  <radical@corewars.org>
22676
22677         * reflection.c (get_default_param_value_blobs): Add 'types'
22678         parameter to get the types encoded in the constant table.
22679         (mono_param_get_objects): Use the type from the constant table,
22680         not the type of the parameter, when creating default values.
22681         Handle null default values correctly.
22682
22683 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22684
22685         * file-io.c:
22686         * file-io.h:
22687         * threadpool.c:
22688         * threadpool.h:
22689         * icall.c:
22690         * socket-io.c: removed dead code for async IO.
22691
22692 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22693
22694         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
22695
22696         * threadpool.c: intercept socket async. calls and pass them to a thread
22697         that is polling and dispatching the job items to the threadpool as
22698         socket become ready. Fixes bugs #71217, #71933.
22699
22700         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
22701         between char and short/ushort arrays.
22702
22703         * socket-io.c: remove dead code.
22704
22705 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22706
22707         * locales.c,
22708           icall.c : removed InternalToUpper_Comp() and
22709           InternalToLower_Comp().
22710
22711 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22712
22713         * char-conversions.h : The tables were incorrectly generated. Should
22714           be generated against invariant culture.
22715
22716 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
22717
22718         * object.c (mono_runtime_invoke_array): Fix return value when 
22719         passing pre-created valuetype objects to ctors.
22720
22721         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
22722         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
22723         Fixes #74338.
22724
22725 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
22726
22727         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
22728         only used with --security and hides the wrong corlib version error.
22729
22730 2005-03-30  Joshua Tauberer  <tauberer@for.net>
22731
22732         * class.c: Changed mono_class_name_from_token so that types
22733         outside of a namespace don't have an initial period.  Improved
22734         the g_warning message used in _mono_class_get when loading
22735         fails.
22736         * assembly.c: In mono_assembly_load_reference, when an assembly
22737         can't be found, "No such file or directory" is misleading and
22738         unhelpful because a few paths were checked for the presence of
22739         the assembly.  When that happens (ENOENT), display a nicer
22740         message indicating the directories that were searched.  In all
22741         cases, the warning is made easier to read for non-hackers.
22742
22743 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
22744
22745         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
22746         project/solution.
22747         * appdomain.h|domain.c: Removed inline from functions.
22748         * appdomain.c: Reduced warnings when compiling on windows.
22749         * icall.c: Fixed output_debug declaration to gunichar2*.
22750         * mono-config.c: Reduced warnings when compiling on windows.
22751         * rand.c: Added missing "windows.h". Added missing return value.
22752         * rawbuffer.c: Added missing winsock2.h for windows.
22753         * sysmath.h: Added mono-compiler.h header to allow/ease 
22754         compilation with non-GCC compilers.
22755         * threads.c: Fixed declarations to compile with VS.NET C compiler.
22756         Removed cast warnings.
22757
22758         Adapted from the work of J Lothian (for VC6).
22759
22760 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
22761
22762         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
22763         from default_path.
22764
22765 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
22766
22767         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
22768         the 2.0 profile.
22769
22770 2005-03-27  Raja R Harinath  <harinath@gmail.com>
22771
22772         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
22773         has to be in $(exec_prefix).  $(prefix) is for arch-independent
22774         stuff, and it would probably use $(prefix)/share rather than
22775         $(prefix)/lib.
22776
22777 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22778
22779         * console-io.c: added 2 includes that might be missing.
22780
22781 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
22782
22783         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
22784         profile.
22785
22786         * reflection.c (create_custom_attr): Allocate the params array using
22787         alloca so it gets GC tracking.
22788
22789 2005-03-23  Chris Toshok  <toshok@ximian.com>
22790
22791         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
22792         out some spew.
22793
22794 2005-03-24  Raja R Harinath  <rharinath@novell.com>
22795
22796         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
22797         changes to pick up any changes in prefix, etc.
22798
22799 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22800
22801         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
22802         
22803         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
22804         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
22805
22806 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22807
22808         * class-internals.h object-internals.h class.c reflection.c: Extend the
22809         mono_lookup_dynamic_token () function to return the class of the
22810         token as well. 
22811
22812         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
22813         well. Fixes #73848.
22814
22815 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
22816
22817         * security-manager.c: Skip inheritance checks for intra-corlib
22818         class inheritance and method overrides. This skips a lot of checks
22819         and (anyway) permissions cannot work until corlib is loaded.
22820
22821 2005-03-23  Martin Baulig  <martin@ximian.com>
22822
22823         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
22824         MONO_TYPE_GENERICINST.  
22825
22826 2005-03-23  Martin Baulig  <martin@ximian.com>
22827
22828         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
22829
22830 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22831
22832         * class.c: added locking comments to some functions.
22833         Cache the interface offsets arrays (saves about 20 KB
22834         of runtime memory in a typical app).
22835         Reduce the time overhead in mono_class_setup_supertypes ().
22836
22837 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
22838
22839         * icall.c: speedup and fix leaks in GetMethodsByName and
22840         GetPropertiesByName.
22841
22842 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22843
22844         * reflection.c: some locking fixes.
22845
22846 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22847
22848         * metadata.c: added missing break in case statement.
22849
22850 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
22851
22852         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
22853         typedbyref return values. Fixes #73941.
22854
22855 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
22856
22857         * security-manager.c|h: Added demandunmanaged method and 
22858         suppressunmanagedcodesecurity class to MonoSecurityManager.
22859         Renamed aptc class to allowpartiallytrustedcallers.
22860
22861 2005-03-17  Martin Baulig  <martin@ximian.com>
22862
22863         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
22864
22865 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22866
22867         * file-io.c: disabled file async. IO using aio_*. It uses the
22868         threadpool now. Workaround for bug #73718.
22869
22870 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22871
22872         * assembly.h, mono-config.c: added code to deal with bundled configs
22873         for bundled assemblies.
22874
22875 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
22876
22877         * *.c, private.h: cleanup, removing old private.h header file.
22878
22879 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
22880
22881         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
22882         and throw_on_unmappable_char attributes.
22883
22884 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
22885
22886         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
22887         _ProcessName_internal.
22888
22889 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
22890
22891         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
22892         #73631.
22893
22894         * icall.c threads.c threads-types.h: Remove slothash icalls as they
22895         are no longer used.
22896
22897 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
22898
22899         * object.c (compute_class_bitmap): Add support for generics. Fixes
22900         #73527.
22901
22902 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22903
22904         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
22905
22906 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22907
22908         * filewatcher.c: commented out the code for windows watcher, as we don't
22909         use it (we use the managed implementation instead).
22910
22911 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22912
22913         * object-internals.h (MonoThread): Remove 'unused1' field.
22914
22915         * appdomain.c: Bump corlib version.
22916
22917         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
22918
22919         * reflection.c (mono_reflection_create_runtime_class): Remove the
22920         AssemblyBuilder.Save optimization since it causes too many problems.
22921
22922 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
22923
22924         * exception.c|h: Added mono_get_exception_reflection_type_load to
22925         create a ReflectionTypeLoadException object.
22926         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
22927         to return NULL is a InheritanceDemand fails during reflection. Updated
22928         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
22929         ReflectionTypeLoadException if an InheritanceDemand fails during 
22930         reflection. Added icall mapping for GetLinkDemandSecurity.
22931         * security-manager.c|h: Added ves_icall_System_Security_
22932         SecurityManager_GetLinkDemandSecurity internal call to return the
22933         class and methods permissions set for a LinkDemand. Removed unused
22934         fields in MonoSecurityManager.
22935
22936 2005-03-10  Martin Baulig  <martin@ximian.com>
22937
22938         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
22939         it's a generic instance.
22940
22941 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
22942
22943         * reflection.c (mono_get_object_from_blob): Applied patch from
22944         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
22945
22946         * class.c (mono_class_is_assignable_from): Another try at fixing 
22947         #73469 without breaking anything.
22948
22949 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
22950
22951         * class.c: (mono_class_is_assignable_from): Revert the last changes
22952         since they don't work with generics.
22953         
22954         * class.c (mono_class_is_assignable_from): Fix build bustage.
22955
22956         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
22957         the managed IsAssignableFrom method. Fixes #73469.
22958
22959         * reflection.c (mono_reflection_call_is_assignable_from): New helper
22960         function.
22961
22962 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
22963
22964         * object.c (mono_load_remote_field_new): Fix returning uninitialized
22965         memory when the remoting callback does not sets the out arguments.
22966         Fixes #73007.
22967
22968         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
22969         by mistake.
22970
22971         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
22972
22973         * object-internals.h (MonoStackFrame): Sync with managed object layout.
22974
22975         * appdomain.c: Bump corlib version.
22976
22977 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
22978
22979         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
22980         function.
22981
22982         * threads.c (mono_thread_attach): Detect threads which are not started
22983         by the GC pthread wrappers.
22984
22985 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
22986
22987         * icall.c: Added new icall for RNG.
22988         * rand.c|h: Added new icall to open the RNG. This allows to share a 
22989         single handle on Linux to access /dev/urandom and fix #73183.
22990
22991 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
22992
22993         * object.c: setting the new vtable in a transparent proxy object must
22994         not change the GC descriptor.
22995
22996 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22997
22998         * object.c: fixed compilation without GCJ support.
22999         * reflection.c: for runtime-created types ensure klass->has_references
23000         is correct (bug #73215).
23001
23002 2005-03-02  Martin Baulig  <martin@ximian.com>
23003
23004         * class.c (mono_class_is_assignable_from): Make this work if
23005         `oklass' is a generic instance; fixes #72831.
23006
23007 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23008
23009         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
23010         with hasthis set.
23011         
23012         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
23013
23014         * marshal.c: Reorganize native->managed marshalling code to also use
23015         the emit_marshal_... functions.
23016
23017 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23018
23019         * object.c: typed allocs have issues with bitmap sizes > 30,
23020         so check for max_set >= 30.
23021
23022 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23023
23024         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
23025         managed code. Fixes #73012.
23026
23027         * metadata.h (MonoMarshalSpec): Add elem_mult field.
23028
23029         * metadata.c reflection.c: Load/Emit elem_mult as well.
23030         
23031         * metadata.h (MonoMarshalSpec): Add comment.
23032
23033         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
23034
23035         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
23036         num_elem to -1 if not given.
23037
23038         * object-internals.h (MonoReflectionMarshal): Add has_size field.
23039
23040         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
23041         given values.
23042
23043 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
23044
23045         * null-gc.c (mono_gc_free_fixed): Was not compilable.
23046
23047 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
23048
23049         * reflection.c (encode_marshal_blob): Encode param_num field as well.
23050
23051         * object-internals.h (MonoReflectionMarshal): Add param_num field.
23052
23053 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23054
23055         * object.c: generalized the reference bitmap creation
23056         and added hooks for the new GC.
23057         * class-internals.c: removed the gc_bitmap field from MonoClass.
23058
23059 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23060
23061         * domain.c: help the compiler to produce better code
23062         in mono_jit_info_table_find ().
23063
23064 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23065
23066         * object.c: make all allocations look typed.
23067
23068 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23069
23070         * socket-io.c: load Mono.Posix if it's not loaded already
23071         (fixes bug#73033).
23072
23073 2005-02-24  Martin Baulig  <martin@ximian.com>
23074
23075         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
23076         * reflection.c (dup_type): Likewise.
23077
23078 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
23079
23080         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
23081         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
23082
23083 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23084
23085         * domain.c, threads.c, object-internals.h: make the critical thread
23086         local vars use the fast access mode (even when we're compiled in
23087         a lib). Provide accessors to be used by the jit during codegen.
23088
23089 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
23090
23091         * appdomain.c: Changed hook functios behavior to include
23092         support for the reflection only assemblies. Some icalls were changed
23093         to support the mentioned assemblies too. Signatures of static methods
23094         try_assembly_resolve and real_load now have an additional parameter:
23095         refonly.
23096
23097         * assembly.c: General changes to mono_assembly_ methods to support
23098         reflection only api. Functions mono_assembly_open, mono_assembly_load,
23099         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
23100         suffix, to support an additional gbool parameter to specify whether
23101         the assembli is reflection only or not. Created some new hook functions 
23102         to add support for reflection only assemblies. Signatures of static 
23103         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
23104         have now an additional parameter: refonly.
23105
23106         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
23107         indicating whether the assembly is reflection only or not.
23108
23109         * exception.c: Add mono_get_exception_invalid_operation.
23110
23111         * icall.c: Throw an InvalidOperationException when trying to invoke
23112         a property/method/event, or trying to set/get the value of a field.
23113         Also add an icall to retrieve the ref_only flag to the
23114         MonoReflectionAssembly.
23115
23116 2005-02-23  Chris Toshok  <toshok@ximian.com>
23117
23118         Part of fix for #72827.
23119         * mono-debug.c (mono_debug_add_method): add lexical block data to
23120         the info we write.  Kind of a hack at the moment - we copy the
23121         lexical block info from the MonoDebugMethodInfo to the
23122         MonoDebugMethodJitInfo here, before writing it.
23123         (mono_debug_read_method): read the lexical block info.
23124
23125         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
23126
23127         * debug-mono-symfile.h: add lexical block support.
23128
23129         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
23130         support.
23131
23132 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23133
23134         * loader.c (mono_lookup_pinvoke_call): Fix warning.
23135
23136         * object.c (mono_runtime_free_method): Call mono_free_method () and
23137         put the TODOs there.
23138
23139         * loader.c (mono_free_method): Free up most memory allocated for 
23140         dynamic methods.
23141
23142 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23143
23144         * reflection.c: properly flag a Type argument to a
23145         named custom attr value (bug #72248).
23146
23147 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23148
23149         * reflection.c: reduce code duplication in named custom
23150         attribute encoding.
23151
23152 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
23153
23154         * reflection.c: properly encode custom attrs of type object
23155         (bug #72649).
23156
23157 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23158
23159         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
23160
23161 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
23162
23163         * socket-io.c: load System.dll if it's not loaded already
23164         (bug #72850 and #70477).
23165
23166 2005-02-21  Martin Baulig  <martin@ximian.com>
23167
23168         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23169         generic instances.
23170
23171 2005-02-21  Martin Baulig  <martin@ximian.com>
23172
23173         * reflection.c (mono_image_build_metadata): We also need to
23174         "fixup" the MethodImpl table after we computed the final method
23175         indices.  Call fixup_methodimpl() to do that.
23176         (fixup_methodimpl): New private method.
23177
23178 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23179
23180         * assembly.c: special case mscorlib.dll (bug#72536),
23181         patch from Carlos Alberto Cortez.
23182
23183 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
23184
23185         * threads-types.h threads.c: Fix build bustage.
23186
23187         * threads.c: Use a union for long<->double conversions.
23188
23189         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
23190         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
23191
23192         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
23193         containing the checkpoint call with NOT_TAKEN.
23194         
23195         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
23196         checkpoint before pushing the arguments, so they won't have to be
23197         spilled to stack.
23198
23199 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23200
23201         * domain.c, assembly.c, domain-internals.h: make some data
23202         const and relocation-free.
23203
23204 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
23205
23206         * object.c, appdomain.c, class-internals.h: introduce the
23207         MonoClassRuntimeInfo structure to hold the info needed to
23208         use a class at runtime. Made mono_class_vtable() lock-free
23209         for all the appdomains.
23210
23211 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
23212
23213         * metadata-internals.h, image.c: introduce a per-image mempool to
23214         be used for memory that has the same lifetime as the image.
23215
23216 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
23217
23218         * domain.c: In mono_init_internal(), instead of selecting the first
23219         runtime version supported by an executable, get a list of all
23220         supported versions and select the one for which an mscorlib exists
23221         (since even if the runtime supports a given version, it doesn't mean
23222         that the framework for that version is installed).
23223         Modified get_runtimes_from_exe to support this behavior.
23224         In supported_runtimes, added information about additional system
23225         assembly versions.
23226         
23227         * assembly.c: Added support for more than one system assembly version
23228         per runtime version. Updated the assembly list.
23229         In mono_assembly_remap_version, removed the initial version check,
23230         since we don't know to which version we need to compare until we
23231         get the version set on which the assembly is based.
23232         Moved the code for loading corlib into the new method
23233         mono_assembly_load_corlib(), so it can be used by the initialization
23234         code.
23235         
23236         * domain-internals.h: Updated data structures and added declaration
23237         for mono_assembly_load_corlib.
23238
23239 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23240
23241         * reflection.c (resolve_object): Fix the creation of the signature in 
23242         the SignatureHelper case.
23243
23244         * assembly.c (mono_assembly_remap_version): Fix binary search.
23245         
23246 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
23247  
23248         * class.c: Added inheritance check when a method is overloaded (from a
23249         virtual method or when implementing an interface) and when a class is
23250         inherited. Added functions to set a failure for a class and to 
23251         retreive the exception from a failure.
23252         * class-internals.h: Added fields to MonoClass to keep the exception
23253         information status for inheritance (or other exceptions) to be thrown
23254         later (i.e. not at load time).
23255         * object.c: Throw the inheritance SecurityException when a type is to 
23256         be created with either class or method inheritance violations.
23257         * reflection.c|h: Fix when getting declsec from a class. Removed 
23258         unrequired code for class. Improved sanity in parameter naming.
23259         * security-manager.c|h: Added functions to check for class and method
23260         inheritance.
23261
23262 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23263
23264         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
23265         and has_finalize in dynamic types as well.
23266
23267 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
23268
23269         * culture-info-table.h : fixed currency format for en-GB (and so on).
23270
23271 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
23272
23273         * gc.c: ensure the GC handles never have 0 as a value.
23274
23275 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23276
23277         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
23278         a pointer to a struct to unmanaged code. Fixes #72625.
23279
23280 2005-02-16  Martin Baulig  <martin@ximian.com>
23281
23282         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
23283
23284 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23285
23286         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
23287
23288 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23289
23290         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
23291
23292         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
23293         UnmanagedFunctionPointerAttribute, use it for determining calling convention
23294         etc. Fixes #71471.
23295
23296         * reflection.c (mono_custom_attrs_get_attr): New helper function.
23297
23298         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
23299
23300 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
23301
23302         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
23303         changes to make the current context a field in MonoThread.
23304
23305 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23306
23307         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
23308         the last change.
23309         
23310         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
23311         extracted from mono_marshal_get_native_wrapper.
23312
23313         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
23314         to create wrappers around native functions.
23315
23316         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
23317         delegates for arbitrary function pointers. Fixes #71472.
23318
23319 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23320
23321         * threads.c: cleaned up the code a little.
23322
23323 2005-02-15  Martin Baulig  <martin@ximian.com>
23324
23325         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
23326         the data table.
23327
23328         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
23329         allocate larger chunks if needed.
23330
23331 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23332
23333         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
23334         in by mistake.
23335
23336 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
23337
23338         * domain.c: keep the domains in an array and ensure the domain ids
23339         are kept small, so they can be used as indexes to domain-specific data
23340         with a small memory overhead.
23341
23342 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23343
23344         * icall.c: Handle byref types in Type icalls. Fixes #72544.
23345
23346 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
23347
23348         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
23349
23350 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
23351
23352         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
23353
23354         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
23355         values.
23356
23357         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
23358         
23359 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
23360
23361         * domain-internals.h: add the hashtable here.
23362
23363         * class-internals.h: Remove `info' from MonoMethod
23364
23365         * domain.c: Add a new hashtable, jit_trampoline_hash
23366
23367 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23368
23369         * object.c: don't set the value of static fields
23370         (fixes bug#72494).
23371
23372 2005-02-11  Martin Baulig  <martin@ximian.com>
23373
23374         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
23375         (mono_debug_add_method): Silently ignore the method if it's too big.
23376         (mono_debug_add_type): Likewise.
23377
23378 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
23379
23380         * threads.c, appdomain.c: remove #ifdefs from the code.
23381
23382 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
23383
23384         * metadata-internals.h: Added flags to MonoAssembly to cache the most
23385         common security informations. This allows us to stay in unmanaged code
23386         when doing LinkDemand and it's special cases (except for the first 
23387         time for initialization). The flags a very much used with --security.
23388         * reflection.c|h: Added code to get declarative security attributes 
23389         for LinkDemand and InheritanceDemand. This required to refactor the
23390         existing code for Demand.
23391         * security-manager.c|h: Added new method fields for the special cases
23392         of LinkDemand.
23393
23394 2005-02-10  Martin Baulig  <martin@ximian.com>
23395
23396         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
23397         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
23398
23399 2005-02-10  Martin Baulig  <martin@ximian.com>
23400
23401         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
23402         debugging code; this is almost a complete rewrite.
23403
23404         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
23405
23406 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23407
23408         * domain.c, object.h: expose mono_string_equal () and 
23409         mono_string_hash ().
23410         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
23411         it's implemented in managed code.
23412
23413 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23414
23415         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
23416         lo leak objects between appdomains.
23417
23418 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23419
23420         * assembly.c: old compilers compilation fix from 
23421         robertj@gmx.net (Robert Jordan).
23422
23423 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
23424
23425         * class-internals.h: Little reminder for the future.
23426
23427         * debug-helpers.c: Fix up wrapper_type_names
23428
23429 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23430
23431         * image.c, metadata-internals.h: when loading an image from a file,
23432         mmap all of it and use the same codepaths as when using a
23433         in-memory image: the code is simpler and we use less memory
23434         (both writable and readonly).
23435
23436 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23437
23438         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
23439         API to alloc runtime data structures that need to be tracked by the
23440         GC and contain pointers.
23441         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
23442         make the code more readable and eventually use a different GC.
23443
23444 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
23445
23446         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
23447         for out arguments.
23448         
23449 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
23450
23451         * object.c: In release_type_locks(), don't release the cctor lock
23452         if it has already been released. This fixes a crash in the
23453         thread5 test.
23454
23455 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23456
23457         * gc.c, marshal.c, icall.c: register a delegate for finalization
23458         only when the native function pointer has been allocated for it.
23459
23460 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23461
23462         * object.c: cleaned up some code, allocate objects that are
23463         pointer free with the atomic malloc variant. Allocate memory
23464         for static data from the mempool if it's pointer-free.
23465         Allocate the bounds array at the end of the array data, when needed.
23466         * object-internals.h, object.h: move a private function in a private
23467         header.
23468         * class.c: handle missing case in tracking references in fields.
23469
23470 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23471
23472         * class.c, class-internals.h: keep track if a type has
23473         reference fields in either the instance or static fields.
23474
23475 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
23476
23477         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
23478         and renamed to MonoRuntimeInfo. Added fields to store the expected
23479         framework assembly version. Changed mono_get_framework_version and
23480         mono_get_runtime_version for a single mono_get_runtime_info method.
23481         
23482         * assembly.c: Added method to remap system assembly versions to the
23483         current executing runtime version. Removed old mapping code.
23484         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
23485         
23486         * icall.c, reflection.c: Track api changes.
23487
23488 2005-02-06  Miguel de Icaza  <miguel@novell.com>
23489
23490         * loader.c (method_from_memberref): Improve error reporting,
23491         produce the class name instead of the typeref/typedef index. 
23492
23493 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
23494
23495         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
23496
23497 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23498
23499         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
23500         stdcall and charset name mangling.  Reorganize the code and add
23501         some tracing stuff.
23502
23503 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23504
23505         * monodiet.c: More iters!
23506
23507         * marshal.c: Iter usage.
23508
23509         * icall.c: Iter usage.
23510
23511         * object.c: Use iters.
23512
23513         * debug-helpers.c: More iters
23514
23515 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23516
23517         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
23518         under win32.
23519
23520 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23521
23522         * mono-debug-debugger.c: use iters
23523
23524         * class.c, class-internals.h: mono_class_setup_events is static
23525         now
23526
23527         * All callers: use iters
23528
23529 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23530
23531         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
23532         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
23533
23534 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23535
23536         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
23537
23538         * marshal.h: Add prototypes for ldfld/stfld_remote.
23539
23540         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
23541         this is called during startup.
23542         
23543 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
23544
23545         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
23546         MonoThreadsSync struct private in monitor.c. Changed the way
23547         MonoThreadsSync is allocated so it's faster and there is no
23548         need to keep track of it with a finalizer and it uses less memory.
23549         This also finally allows us to allocate mono objects as ptrfree when
23550         there are no reference fields.
23551
23552 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
23553
23554         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
23555         disappearing link to the GC interface and use them to simplify
23556         the gchandles code.
23557
23558 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23559
23560         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
23561         stfld_remote which call mono_load/store_field_new. This allows methods
23562         calling ldfld/stfld wrappers to be AOTed.
23563
23564         * console-io.c: Include sys/filio.h under solaris.
23565         
23566         * console-io.c: Include curses.h if needed correctly.
23567
23568 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23569         
23570         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
23571         method->klass as well.
23572
23573         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
23574
23575         * class.c (mono_class_init): Switch on lazy initialization of 
23576         methods.
23577
23578         * class.c (mono_class_get_finalizer): Handle the case when the 
23579         finalizer is inherited.
23580
23581 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23582
23583         * console-io.c: <curses.h> is needed by term.h on solaris.
23584
23585 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
23586
23587         * icall.c, class-internals.h, monodiet.c, class.c: Remove
23588         mono_class_setup_properties where possible. Remove this ftn from
23589         the header file, and make it static.
23590
23591 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23592
23593         * loader.c: Add missing setup_... call.
23594
23595         * class.c: Add missing setup_... calls.
23596
23597         * class.c (mono_class_init): Switch on lazy initialization of 
23598         the generic vtable.
23599         
23600         * class.c (mono_class_init): Fix generics broken by the recent changes.
23601
23602         * monodiet.c (handle_type): Add missing setup_... calls.
23603
23604         * class.c: Back out garbage in previous patch.
23605         
23606         * class.c: Add missing setup_... calls.
23607
23608         * class.c (mono_class_get_method_from_name_flags): Avoid calling
23609         mono_class_setup_methods () if possible.
23610
23611         * class-internals.h (MonoClass): Add 'has_cctor' flag.
23612
23613         * class-internals.h (MonoCachedClassInfo): New structure.
23614
23615         * class.c: Initialize properties and events fields of MonoClass lazily.
23616
23617         * class.c: Add infrastructure for lazily initializing the methods and
23618         vtable fields of MonoClass. Not yet used.
23619
23620         * class.c (mono_class_get_finalizer): New helper function.
23621
23622         * class.c: Add infrastructure for loading some class related data from
23623         an AOT file.
23624
23625         * object.c: Add infrastructure for initializing the vtable from data
23626         in the AOT file.
23627
23628         * gc.c (run_finalize): Use mono_class_get_finalizer ().
23629
23630         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
23631         appropriate initialization function before accessing parts of the
23632         MonoClass structure.
23633
23634         * marshal.c: Fix warnings.
23635         
23636         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
23637
23638         * mono-debug-debugger.c (get_exception_message): Use 
23639         mono_class_get_method_from_name_flags ().
23640
23641 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
23642
23643         * reflection.c, appdomain.c: Replace a few manual searches that
23644         Zoltan missed. (Paolo approved this part of my initial patch).
23645
23646 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
23647
23648         * profiler.c: disable recording statistical events at report time.
23649
23650 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23651
23652         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
23653         to byteswap arrays of enum values, too (bug #72080).
23654
23655 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
23656
23657         * appdomain.c (set_domain_search_path): Allow this to be called if
23658         domain->setup is not yet set.
23659
23660         * loader.c (mono_method_get_index): New helper function.
23661
23662         * loader.c reflection.c: Use mono_method_get_index ().
23663
23664         * class.c (mono_class_get_method_from_name_flags): New helper method.
23665
23666         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
23667         this.
23668
23669         * class.c (mono_class_get_cctor): New helper method.
23670
23671         * string-icalls.c object.c class.c marshal.c reflection.c: Use
23672         mono_class_get_method () to look up methods.
23673
23674 2005-02-01  Miguel de Icaza  <miguel@novell.com>
23675
23676         * console-io.c: Fix the build, this should work on Windows.
23677
23678 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
23679
23680         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
23681         be set to null to keep things valid
23682
23683 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23684
23685         * icall.c: added Console 2.0 icalls.
23686         * Makefile.am: added console-io.[ch]
23687         * console-io.[ch]: internal calls for Console 2.0 API.
23688
23689 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23690
23691         * class.c: make sure we consider all the interfaces
23692         when calculating max_interface_id (bug found by
23693         Jeroen Frijters running ikvm).
23694
23695 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
23696
23697         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
23698         valuetype fields to null.
23699
23700         * object.c (set_value): Ditto. Fixes #71669.    
23701
23702 2005-01-31  Martin Baulig  <martin@ximian.com>
23703
23704         * metadata.c (mono_metadata_has_generic_params): New public
23705         function; checks whether something is a generic method.
23706
23707 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
23708
23709         * appdomain.c: fix infinite recursion when adding assemblies.
23710
23711 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
23712
23713         * object.c: Fix small typo to return all items for Environment.
23714         GetCommandLineArgs.
23715
23716 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23717
23718         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
23719         reflection.c: more domain and assembly-unload related fixes
23720         and memory leaks plugs.
23721
23722 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
23723
23724         * 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.
23725
23726 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
23727
23728         * loader.c (mono_method_signature): Make this method lazy
23729         (mono_get_method_from_token): Don't computate the signature here.
23730
23731         Doing this saves quite a bit of memory. I got 90 kb on starting up
23732         monodoc. It should also save some disk reads on startup.
23733
23734         * *: MonoMethod->signature might be NULL now. You *MUST* use
23735         mono_method_signature.
23736
23737 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
23738
23739         * object.c (mono_runtime_get_main_args): Return an array from the
23740         current domain here. Fixes #71938.
23741
23742 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
23743
23744         * monitor.c: formatting changes to comply with the
23745         mono coding style and remove #ifdefs from the code.
23746
23747 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23748
23749         * metadata.c, private.h: remove some unneeded data
23750         and use a more compact representation for table schemas.
23751
23752 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
23753
23754         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
23755         to get a better distribution in hash tables.
23756         * *.c: use mono_aligned_addr_hash() where appropriate.
23757         * assembly.c: make var static.
23758
23759 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
23760
23761         * domain-internals.h: Put MonoJitInfo on a diet.
23762
23763         * domain.c: Fix a warning.
23764
23765 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23766
23767         * gc.c: rework the gc handles code to reuse handles
23768         when freed.
23769
23770 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23771
23772         * domain.c: fixed long standing bug in mono_string_equal() which
23773         was brought to light with the ldstr changes.
23774
23775 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
23776
23777         * reflection.c: Remove warning by adding missing include for marshal.h
23778
23779 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23780
23781         * domain.c, object.c: change the ldstr_table to hold
23782         MonoString* as keys: makes the runtime isinterned lookup
23783         faster and simplifies memory management.
23784
23785 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
23786  
23787         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
23788         possible to add imperative security checks before calling the icall.
23789         * reflection.c: Return security attributes on the original MonoMethod
23790         (and not the wrapped one). This fix permissions on icalls.
23791
23792 2005-01-25  Dick Porter  <dick@ximian.com>
23793
23794         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
23795         the check for mktime() support actually test the mktime() return
23796         value.  "Fixes" bug 71682, though the output is still different to
23797         MS.
23798
23799 2005-01-25  Martin Baulig  <martin@ximian.com>
23800
23801         * class.c (mono_class_is_assignable_from): Make this work for
23802         generic instances.
23803
23804 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
23805
23806         * marshal.c (mono_string_utf8_to_builder)
23807         (mono_string_builder_to_utf16): We might not have ownership of the
23808         string. In thise case, we need to create a new buffer.
23809
23810         * object-internals.h (mono_stringbuilder_capacity): sb->str might
23811         be null, in which case, use the default capacity.
23812
23813 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23814
23815         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
23816         GC events to the profiler.
23817
23818 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23819
23820         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
23821         if you don't want the GC to run.
23822
23823 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
23824
23825         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
23826         start providing a GC API and keeping different implementations in
23827         their own file.
23828         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
23829
23830 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
23831
23832         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
23833         mmap rather than allocating a huge buffer.
23834         (mono_debug_close_mono_symbol_file): Free the buffer allocated
23835         above.
23836
23837 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
23838
23839         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
23840         and CheckExecutionRights.
23841         * reflection.c|h: Keep the index of the declarative security to be 
23842         used, instead of the pointer, when AOT compiler is used. Also add 
23843         class initialization when requesting demands.
23844         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
23845         CheckExecutionRights. Both properties are now FALSE by default, and
23846         unmodifiable, unless the --security option is used.
23847
23848 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23849
23850         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
23851         reflection.c: properly refcount images and assemblies, many leaks fixed.
23852
23853 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23854
23855         * threadpool.c: increase the timeout for threads in the thread pool to
23856         10s.  Fixes bug #67159.
23857
23858 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
23859
23860         * class-internals.h: Sun's compiler insists on explicit
23861         signed on bit fields to handle then correctly.
23862
23863 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
23864
23865         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
23866         Make the size of the array fit only the number of invalid path
23867         chars that we have.
23868
23869         * class.c (_mono_class_get): Improve the error reporting when a
23870         class referenced is not found, to assist debugging. 
23871
23872 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
23873
23874         * threads.c: fix off-by-one error.
23875         * domain.c: free data allocated in the domain.
23876
23877 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23878
23879         * reflection.c (mono_method_body_get_object): Fill out exception info
23880         as well.
23881
23882         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
23883         structure.
23884         
23885 2005-01-19  Martin Baulig  <martin@ximian.com>
23886
23887         * loader.c (mono_get_method_constrained): Make this work again.
23888
23889 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23890
23891         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
23892         guint16 to match the managed side.
23893
23894         * reflection.c (mono_reflection_body_get_object): Fill out local
23895         variables array.
23896
23897         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
23898         as well.
23899
23900         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
23901         'local_var_sig_token'.
23902
23903 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
23904
23905         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
23906         System.Drawing.
23907
23908         * reflection.c (mono_method_body_get_object): Handle abstract and
23909         runtime methods.
23910
23911 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
23912
23913         * marshal.c, loader.c, class-internals.h, reflection.c:
23914         store the emthod data for a wrapper in an array instead of a list.
23915
23916 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
23917
23918         * marshal.c: change the code to allocate memory more
23919         conservatively for method wrappers.
23920
23921 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
23922
23923         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
23924         fields from MonoClass to the marshal info structure where they belong.
23925
23926 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23927
23928         * class.c, object.c, class-internals.h, marshal.c: rearrange
23929         some fields and tweak some types to lower memory usage.
23930
23931 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
23932
23933         * threads.c (signal_thread_state_change): Handle the case when the
23934         target thread is the current thread.
23935
23936         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
23937
23938         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
23939         emit_ptr_to_object_conv. 
23940
23941         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
23942         marshalling. Fixes #71352.
23943
23944 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23945
23946         * metadata.h, blob.h: move table enum to blob.h so it can be included
23947         in any header.
23948         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
23949         cut the size of MonoImage/MonoDynamicImage.
23950
23951 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
23952
23953         * profiler.c (mono_profiler_install_simple): Fix default arguments.
23954
23955 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
23956
23957         * reflection.c, reflection.h, icall.c: add a function to check
23958         if an attribute type is defined for a metadata object.
23959
23960 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
23961
23962         * object-internals.h: Added some needed fields from StringBuilder class.
23963         * marshal.c: Set the maxCapacity when creating a StringBuilder.
23964
23965 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
23966
23967         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
23968         threads before shutting down the runtime.
23969
23970         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
23971
23972 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23973
23974         * object-internal.h, threads.c: implement stacksize and 
23975         parameterized thread start functionality (requires
23976         matching corlib). Marked broken code for later removal.
23977
23978 2005-01-12  Martin Baulig  <martin@ximian.com>
23979
23980         * class-internals.h (MonoGenericClass): Moved the `initialized'
23981         flag to MonoDynamicGenericClass, removed `init_pending'.
23982         (MonoGenericInst): Added `is_reference' flag.
23983
23984 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
23985
23986         * reflection.c (mono_image_create_pefile): Only set the pe_offset
23987         inside the MSDOS header. Fixes #71201.
23988
23989         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
23990         gc thread.
23991         (mono_domain_finalize): Ditto.
23992
23993 2005-01-12  Martin Baulig  <martin@ximian.com>
23994
23995         * class.c (mono_get_shared_generic_class): Use the cache for
23996         non-dynamic generic classes.
23997
23998         * class-internals.h (mono_class_create_generic_2): Removed
23999         function prototype, this function is now static inside class.c.
24000
24001         * class.c (mono_class_create_generic_2): Made this static, only
24002         call it from mono_class_init() and mono_class_setup_parent().
24003         (collect_implemented_interfaces_aux): Call mono_class_init() on
24004         the interfaces we collect.
24005         (mono_class_setup_vtable): Call mono_class_init (class->parent).
24006
24007 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24008
24009         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
24010         it a real thread handle.
24011
24012         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
24013         MonoJitExceptionInfo, since each catch clause needs its own variable.
24014         
24015 2005-01-11  Dick Porter  <dick@ximian.com>
24016
24017         * image.c (mono_pe_file_open): New variant on mono_image_open()
24018         that does not set up the CLI metadata; used for FileVersionInfo so
24019         it can get the data for windows binaries too.
24020         
24021         * process.c (process_read_string_block): Don't read off the end of
24022         the StringTable block.
24023
24024         These both fix bug 70766.
24025
24026 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
24027
24028         * gc.c: set some fields to NULL at GC cleanup time.
24029         * threads.c: if we quit the main thread, call exit ().
24030
24031 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24032
24033         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
24034
24035 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
24036
24037         * threads.h, threads.c, object.c: added accessor and settor for
24038         main_thread. Handle it specially when exiting from it: wait
24039         for other foreground threads to exit.
24040
24041 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
24042
24043         * process.c, verify.c: remove some bloat.
24044
24045 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
24046
24047         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
24048         the calling convention to cdecl under win32.
24049
24050 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
24051
24052         * object.c (mono_object_get_size): New function to get the size of
24053         an object instance.
24054
24055         * profiler.c (simple_allocation): Use above.
24056
24057 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
24058
24059         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
24060         ves_icall_System_AppDomain_getRootDomain (as it's not required to
24061         get an appdomain by it's id and we can't assume the root's id is 0).
24062         * domain-internals.h: Change the function prototype to match.
24063         * icall.c: Change the icall table for AppDomain.
24064
24065 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
24066
24067         * locales.c (string_invariant_compare_char): Only compute
24068         GUnicodeTypes in the case where we need them.  Test for ordinality
24069         first and return if so.
24070
24071         From the commit:
24072
24073                 /*
24074                  * FIXME: here we must use the information from c1type and c2type
24075                  * to find out the proper collation, even on the InvariantCulture, the
24076                  * sorting is not done by computing the unicode values, but their
24077                  * actual sort order.
24078                  */
24079
24080 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
24081
24082         * loader.c: for P/Invoke methods, allow the "Internal" shared
24083         library name to refer to the calling process symbol namespace.
24084
24085 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
24086
24087         * Makefile.am: Add the security manager to the build.
24088         * security-manager.c|h: New. Initialization of the security manager.
24089
24090 2005-01-07  Dick Porter  <dick@ximian.com>
24091
24092         * threads.c: 
24093         * monitor.c: Update thread state during Monitor and WaitHandle
24094         waits.  Fixes bug 71031.
24095
24096 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
24097
24098         * reflection.c (property_encode_signature): Correctly handle when the
24099         property has no methods.
24100
24101 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
24102
24103         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
24104         
24105         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
24106         fields from mb, not rmb. Fixes #71017.
24107
24108         * marshal.c (emit_ptr_to_str_conv): Add support for 
24109         ByValTStr -> string conversion. Fixes #71015.
24110
24111         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
24112
24113         * mempool.c (mono_mempool_contains_addr): New helper function.
24114
24115 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24116
24117         * metadata.c (mono_metadata_compute_size): Fix size calculation of
24118         HasSematics encoded fields.
24119         
24120         * metadata.c (mono_type_to_unmanaged): Improve error message for 
24121         invalid string marshalling.
24122
24123         * metadata.c: Fix warnings.
24124         
24125 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24126
24127         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
24128         profiler support.
24129
24130 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24131
24132         * domain.c object.c domain-internals.h: Revert part of r38077 since the
24133         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
24134         tests.
24135
24136 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
24137
24138         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
24139         so methods containing these can be AOTed.
24140
24141 2005-01-03  Martin Baulig  <martin@ximian.com>
24142
24143         * loader.c (find_method): Removed the hack for generic instances.
24144         (method_from_memberref): If our parent is a generic instance, pass
24145         its generic type definition to find_method() and then inflate the
24146         method.
24147         (mono_get_method_constrained): Pass the generic type definition to
24148         find_method() and inflate the method later.
24149
24150         * class-internals.h (MonoStats): Added `generic_class_count'.
24151
24152         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
24153         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
24154
24155         * reflection.c (mono_custom_attrs_from_params): Don't ignore
24156         generic type definitions.
24157
24158 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
24159
24160         * loader.c icall.c: Fix warnings.
24161
24162 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
24163
24164         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
24165         blittable types. Fixes #70864.
24166
24167 2004-12-29  Martin Baulig  <martin@ximian.com>
24168
24169         * icall.c
24170         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
24171
24172         * reflection.c (mono_method_get_object): Create a
24173         "System.Reflection.MonoGenericMethod" for inflated methods; don't
24174         call mono_get_inflated_method().
24175
24176         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
24177
24178 2004-12-27  Martin Baulig  <martin@ximian.com>
24179
24180         * class-internals.h (MonoMethod): Added `is_inflated' flag.
24181         (MonoMethodInflated): Added `inflated' field.
24182
24183         * class.c (mono_class_inflate_generic_method): Don't really
24184         inflate the method here; just set the `is_inflated' flag in the
24185         MonoMethod.
24186         (mono_class_get_inflated_method): Actually inflate the method here
24187         if it's not already inflated; we use the MonoMethodInflated's new
24188         `inflated' field as a cache.
24189
24190 2004-12-26  Martin Baulig  <martin@ximian.com>
24191
24192         * class.c
24193         (inflate_generic_class): Moved some code out of inflate_generic_type().
24194         (mono_class_inflate_generic_method): If we're already inflated,
24195         inflate the context and use the declaring method; ie. make sure
24196         the declaring method of an inflated method is always the generic
24197         method definition.
24198         (mono_class_create_from_typedef): Create
24199         `class->generic_container->context->gclass'.
24200
24201 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
24202
24203         * metadata-internals.h, marshal.c, reflection.c: More
24204         MonoGHashTable->GHashTable.
24205
24206         * domain-internals.h, class.c: Change MonoGHashTable's into
24207         GHashTables for some cases where no gc stuff is used
24208
24209         All users: update apis
24210
24211 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
24212
24213         * metadata.c (builtin_types): Make this `const'. Makes this get
24214         put into the shareable section.
24215         (mono_metadata_init): Casts to make gcc happy.
24216
24217 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
24218
24219         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
24220
24221 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
24222
24223         * icall.c: Added an internal call to retrieve the position and length
24224         of assembly-level declarative security attributes (RequestMinimum, 
24225         RequestOptional and RequestRefuse). This is used by the Assembly class
24226         to re-create the corresponding permission sets.
24227
24228 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
24229
24230         * marshal.c: fix the stelemref wrapper to be type correct
24231         (and faster).
24232
24233 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
24234
24235         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
24236         to do key & 0x7fffffff. Hashtable already does this. It just
24237         results in longer code.
24238
24239 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
24240
24241         * appdomain.c: Bump corlib version.
24242         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
24243         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
24244         * reflection.c|h: Add functions to get declarative security infos
24245         (blob position and length) for assemblies, classes and methods.
24246
24247 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
24248
24249         * reflection.c: sort the constant table (bug #70693).
24250
24251 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
24252
24253         * object-internals.h, threads.c, domain.c: add accessors for
24254         the MonoThread and MonoDomain tls keys.
24255
24256 2004-12-18  Martin Baulig  <martin@ximian.com>
24257
24258         * class.c (inflate_generic_type): If we're inflating a generic
24259         instance, set `ngclass->context->container = context->container';
24260         ie. the container we inflated into.
24261
24262         * metadata.c (mono_metadata_parse_generic_param): Reflect above
24263         inflate_generic_type() changes.
24264
24265 2004-12-17  Martin Baulig  <martin@ximian.com>
24266
24267         * class-internals.h
24268         (MonoGenericClass): Replaced `MonoType *generic_type' with
24269         `MonoClass *generic_class'.  Removed `dynamic_info'; if
24270         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
24271         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
24272
24273 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
24274
24275         * exception.c (mono_exception_from_token): New helper function.
24276
24277 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
24278
24279         * assembly.c (mono_assembly_load_with_partial_name): Call 
24280         mono_assembly_loaded before invoking the preload hooks. Fixes
24281         #70564.
24282
24283         * object-internals.h (MonoThread): Change culture_info and 
24284         ui_culture_info into an array.
24285
24286         * threads.c: Cache culture info objects from more than one appdomain.
24287
24288         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
24289         current UI culture.
24290
24291 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
24292
24293         * threads.h threads.c appdomain.c: Clear the culture_info field of
24294         all threads during unloading if they point to an object in the dying
24295         appdomain.
24296
24297 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
24298
24299         * culture-info.h (TextInfoEntry): New struct
24300         * object-internals.h: sync with managed
24301         * locales.c: fill the `text_info_data' field
24302         * culture-info-tables.h: update
24303
24304 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
24305
24306         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
24307         collector.
24308
24309 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
24310
24311         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
24312         (ves_icall_ModuleBuilder_getMethodToken): Ditto
24313
24314 2004-12-12  Martin Baulig  <martin@ximian.com>
24315
24316         * mono-debug-debugger.c (write_type): If we're an enum and the
24317         builtin types have already been initialized, call mono_class_init().
24318
24319 2004-12-11  Martin Baulig  <martin@ximian.com>
24320
24321         * metadata.c (mono_metadata_load_generic_params): Added
24322         `MonoGenericContainer *parent_container' argument; automatically
24323         compute `container->is_method'; pass the correct owner to
24324         get_constraints().      
24325
24326         * reflection.c (compare_genericparam): Sort the GenericParam table
24327         according to increasing owners. 
24328
24329 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
24330
24331         * profiler.c: allow disabling the default profiler.
24332
24333 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
24334
24335         * decimal.c, icall.c: allow disabling System.Decimal support.
24336
24337 2004-12-09  Marek Safar <marek.safar@seznam.cz>
24338
24339         * reflection.c: Add support for null attribute arguments.
24340
24341 2004-12-09  Martin Baulig  <martin@ximian.com>
24342
24343         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
24344         names to get rid of compiler warnings.
24345
24346 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24347
24348         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
24349         mono_marshal_load_type_info (). Fixes #69625.
24350         (mono_marshal_get_ptr_to_struct): Likewise.
24351
24352 2004-12-08  Martin Baulig  <martin@ximian.com>
24353
24354         * mono-debug.h: Bumped version number to 47.
24355
24356         * mono-debug-debugger.c
24357         (mono_debugger_event_handler, mono_debugger_event): Take two
24358         guint64 arguments insteed of a gpointer and a guint32.  
24359
24360 2004-12-08  Martin Baulig  <martin@ximian.com>
24361
24362         * debug-mono-symfile.h
24363         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
24364         `address' to `native_offset'.
24365
24366 2004-12-08  Martin Baulig  <martin@ximian.com>
24367
24368         * class.c (mono_class_create_from_typespec): Only inflate if we
24369         either have `context->gclass' or `context->gmethod'.
24370
24371 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24372
24373         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
24374
24375         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
24376
24377         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
24378
24379         * reflection.c (mono_assembly_get_object): Remove the workaround put
24380         in for the release.
24381         
24382         * appdomain.c: Use the corlib_internal field from MonoAssembly.
24383
24384         * appdomain.c: Bump corlib version.
24385
24386         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
24387         be visible in other appdomains.
24388
24389 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
24390
24391         * threads.c: Interlocked inc and dec for longs were messed up,
24392         use a KISS based impl for this. Fixes 70234
24393
24394 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
24395
24396         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
24397
24398 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
24399
24400         * icall.c: fix to follow policy not to allow struct
24401         arguments in icalls.
24402
24403 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24404
24405         * process.c: make the patch that handles spaces in file paths work
24406         on mono/windows too.
24407
24408 2004-12-06  Martin Baulig  <martin@ximian.com>
24409
24410         * class.c (mono_class_create_generic): Call
24411         mono_class_setup_supertypes() if we're dynamic.
24412         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
24413
24414 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
24415
24416         * object-internals.h: Add new fields to MonoThread.
24417
24418         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24419
24420         * icall.c threads-types.h threads.c: Add new icalls.
24421
24422         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
24423
24424         * object-internals.h (MonoReflectionAssembly): Sync object layout with
24425         managed side.
24426
24427         * appdomain.c: Bump corlib version.
24428
24429         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
24430         internal assemblies. Fixes #69181.
24431
24432 2004-12-05  Martin Baulig  <martin@ximian.com>
24433
24434         * class.c (mono_class_inflate_generic_signature): Make this a
24435         no-op if `context' is NULL or we don't have any type parameters;
24436         also copy `sentinelpos'.        
24437
24438 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
24439
24440         * image.c: Add unbox_wrapper_cache.
24441
24442         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
24443
24444         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
24445         function generator.
24446         
24447         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
24448         Fixes #70173.
24449
24450         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
24451         
24452 2004-12-04  Martin Baulig  <martin@ximian.com>
24453
24454         * loader.c (mono_method_get_signature_full): New public function;
24455         like mono_method_get_signature(), but with an additional
24456         `MonoGenericContext *' argument.
24457
24458         * class.c (mono_class_inflate_generic_signature): Formerly known
24459         as inflate_generic_signature(); make this public.
24460
24461 2004-12-04  Martin Baulig  <martin@ximian.com>
24462
24463         * metadata.c
24464         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
24465         instead of a `MonoGenericContainer *'.  
24466         (mono_metadata_parse_array_full): Likewise.
24467         (mono_metadata_parse_signature_full): Likewise.
24468         (mono_metadata_parse_method_signature_full): Likewise.
24469         (mono_metadata_parse_generic_inst): Likewise.
24470         (mono_metadata_parse_generic_param): Likewise.
24471         (mono_metadata_parse_mh_full): Likewise.
24472         (mono_type_create_from_typespec_full): Likewise.
24473
24474 2004-12-03  Martin Baulig  <martin@ximian.com>
24475
24476         * class-internals.h (MonoGenericContainer): Replaced the
24477         `MonoGenericContext * pointer with a `MonoGenericContext'
24478         structure and made it the first element.
24479
24480 2004-12-03  Martin Baulig  <martin@ximian.com>
24481
24482         * class.c
24483         (inflate_generic_type): Set the `context->container' when creating
24484         a new MonoGenericContext.
24485         (mono_class_inflate_generic_method): Likewise.
24486         (mono_class_create_from_typespec): Just use `context->container'
24487         to get the container.
24488
24489         * loader.c (method_from_methodspec): Set `context->parent' from
24490         `context->container' - and if that's a method container, use its
24491         parent.  Also set the `context->container' when creating a new
24492         MonoGenericContext.
24493         (mono_get_method_from_token): Use just `context->container' to get
24494         the container.
24495
24496         * metadata.c (do_mono_metadata_parse_generic_class): Also set
24497         `gclass->context->container'.
24498
24499         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
24500         the `context->container' when creating a new MonoGenericContext.
24501
24502 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
24503
24504         * reflection.c (compare_genericparam): Sort params with identical
24505         owner by their number. Fixes gen-111 on sparc.
24506
24507 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24508
24509         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
24510         around the domain changes.
24511
24512         * appdomain.c (mono_domain_unload): Handle the case when the thread
24513         calling Unload is itself being aborted during unloading. Fixes #70022.
24514
24515         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
24516
24517         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
24518         checkpoint_func as an icall so it gets a wrapper.
24519         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
24520         in the cross-appdomain wrappers too.
24521
24522         * threads.c (mono_thread_has_appdomain_ref): Make this public.
24523
24524         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
24525
24526         * reflection.c: Fix some memory leaks.
24527         
24528 2004-12-02  Martin Baulig  <martin@ximian.com>
24529
24530         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
24531
24532         * metadata.c (generic_class_cache): New static hashtable.
24533         (mono_metadata_lookup_generic_class): New public method.
24534
24535 2004-12-02  Martin Baulig  <martin@ximian.com>
24536
24537         * class.c (mono_class_create_from_typedef): Call
24538         mono_class_setup_parent() and mono_class_create_mono_type() before
24539         parsing the interfaces.
24540
24541 2004-12-02  Martin Baulig  <martin@ximian.com>
24542
24543         * metadata.c (generic_inst_cache): New static hashtable.
24544         (mono_metadata_lookup_generic_inst): New public function.
24545         (mono_metadata_inflate_generic_inst): New public function.
24546         (mono_metadata_parse_generic_inst): New public function.
24547         (do_mono_metadata_parse_generic_class): Use the new
24548         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
24549         since this'll also use the cache.
24550
24551         * reflection.c (mono_reflection_bind_generic_method_parameters):
24552         Use mono_metadata_lookup_generic_inst() to use the new cache.
24553
24554         * class.c (inflate_mono_type): Use
24555         mono_metadata_inflate_generic_inst() to inflate a generic
24556         instance; this'll also use the new cache.
24557
24558         * loader.c (method_from_methodspec): Use
24559         mono_metadata_parse_generic_inst() and
24560         mono_metadata_inflate_generic_inst() rather than parsing it
24561         manually, so we can use the new cache.
24562
24563 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24564
24565         * threads.c (wait_for_tids): Do not incorrectly free threads when 
24566         the wait times out.
24567
24568 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
24569
24570         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
24571         iter->args based on whether parameters are passed in registers (i.e.
24572         MONO_ARCH_REGPARMS is defined)
24573
24574 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
24575
24576         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
24577         the exception message. Fixes #70070.
24578         (method_from_methodspec): Fix warnings.
24579
24580 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24581
24582         * process.c: (complete_path) return the path quoted
24583
24584 2004-12-01  Martin Baulig  <martin@ximian.com>
24585
24586         * class-internals.h (MonoGenericInst): New structure.
24587         (MonoGenericClass): Replaced `type_argc', `type_argv' and
24588         `is_open' with `MonoGenericInst *inst'.
24589         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
24590         `is_open' with `MonoGenericInst *inst'.
24591
24592 2004-11-30  Martin Baulig  <martin@ximian.com>
24593
24594         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
24595
24596         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
24597         to `generic_class_cache'.
24598
24599         * metadata.c
24600         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
24601         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
24602         (mono_generic_inst_is_valuetype): Renamed to
24603         mono_generic_class_is_valuetype().
24604
24605         * class-internals.h
24606         (MonoGenericInst): Renamed to MonoGenericClass.
24607         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
24608         (MonoClass): Renamed `generic_inst' to `generic_class'.
24609         (MonoGenericContext): Renamed `ginst' to `gclass'.
24610
24611         * object-internals.h
24612         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
24613
24614         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
24615         mono_reflection_generic_class_initialize().
24616
24617         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
24618         now known as "System.Reflection.MonoGenericClass".
24619         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
24620
24621 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
24622
24623         * class-internals.h: Added a flag field to MonoClass to cache the
24624         declarative security attributes actions associated with the class.
24625         * domain-internals.h: Added booleans to MonoJitInfo to cache the
24626         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
24627         applicable to the JITted method.
24628         * reflection.c|h: Added functions to extract (as flags) which security
24629         actions are available (declaratively) for a method, class or assembly.
24630         * metadata.c|h: Added functions to search the declarative security
24631         table in the metadata.
24632         
24633 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
24634
24635         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
24636         EXPORTEDTYPES are already in the class name cache, so there is no
24637         need to add extra code here to look at them. Just removes a bit of
24638         cruft.
24639
24640         (ves_icall_System_Environment_get_TickCount): No need for #if
24641         WINDOWS. We already have the code in io-layer.
24642
24643 2004-11-28  Martin Baulig  <martin@ximian.com>
24644
24645         * loader.c
24646         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
24647         Fixes gen-112.cs.
24648
24649 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
24650
24651         * assembly.c (do_mono_assembly_open): Instead of having a
24652         conditional WITH_BUNDLE, incorporate support for bundles here, by
24653         having a global `bundles' variable holding a pointer to the actual
24654         bundles. 
24655
24656         (mono_register_bundled_assemblies): New API call used by the
24657         bundle code. 
24658
24659         See mkbundle.1 for details.
24660         
24661 2004-11-27  Martin Baulig  <martin@ximian.com>
24662
24663         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
24664         the vtable for generic methods.
24665
24666 2004-11-26  Martin Baulig  <martin@ximian.com>
24667
24668         * metadata.c
24669         (mono_metadata_generic_method_hash): New public function.
24670         (mono_metadata_generic_method_equal): Likewise.
24671
24672         * class-internals.h
24673         (MonoGenericContainer): Added `GHashTable *method_hash'.
24674
24675         * reflection.c (ReflectionMethodBuilder): Added
24676         `MonoGenericContainer *generic_container'.
24677         (reflection_methodbuilder_to_mono_method): Don't create a new
24678         MonoGenericContainer each time we're called.
24679         (mono_reflection_bind_generic_method_parameters): Use
24680         `container->method_hash' to cache the results so we don't create a
24681         different method if we're called several times with the same
24682         arguments.
24683
24684         * loader.c (method_from_methodspec): Use the new
24685         `container->method_hash' here, too.
24686
24687 2004-11-26  Martin Baulig  <martin@ximian.com>
24688
24689         * class.c (inflate_generic_signature): Correctly compute
24690         `res->has_type_parameters'.
24691         (mono_class_vtable): Use the `has_type_parameters' flag to
24692         determine whether we're a generic method.
24693
24694         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
24695
24696 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
24697
24698         * object.c (mono_runtime_run_main): Fix a small memory leak.
24699
24700 2004-11-25  Martin Baulig  <martin@ximian.com>
24701
24702         * class.c (set_generic_param_owner): Fixed the loop.
24703
24704 2004-11-25  Martin Baulig  <martin@ximian.com>
24705
24706         * object.c (mono_class_vtable): Don't create any JIT wrappers for
24707         generic methods.
24708
24709 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
24710
24711         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
24712         names. Fixes #69787.
24713
24714 2004-11-24  Martin Baulig  <martin@ximian.com>
24715
24716         * class.c (mono_class_create_generic_2): If we don't have a
24717         `ginst->parent', inflate `gklass->parent' to get our parent.
24718
24719 2004-11-24  Martin Baulig  <martin@ximian.com>
24720
24721         * reflection.c (compare_genericparam): Correctly sort the
24722         GenericParam table; fixes #69779.
24723
24724 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
24725
24726         * reflection.c: When writing a PE file, don't create a huge
24727         buffer in memory. Just write the arrays we have to the file.
24728         This reduces memory usage.
24729
24730         * metadata-internals.h: MonoDynamicStream pefile is no longer used
24731         globally.
24732
24733 2004-11-17  Martin Baulig  <martin@ximian.com>
24734
24735         * class.c (mono_class_init): Don't setup `class->parent' for
24736         dynamic instances; moved this to mono_class_generic_2().
24737         (mono_class_create_generic): Also set `klass->inited' for dynamic
24738         generic instances.
24739         (mono_class_create_generic_2): Don't do anything for dynamic
24740         generic instances.  Set `klass->parent' here and also call
24741         mono_class_setup_parent() here. 
24742
24743         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
24744         `MonoType *parent' argument; set `ginst->parent' before calling
24745         mono_class_create_generic_2(), so we set the correct parent.
24746
24747 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
24748
24749         * reflection.c: allow getting attributes from ModuleBuilder
24750         (used by ikvm).
24751
24752 2004-11-17  Martin Baulig  <martin@ximian.com>
24753
24754         * class.c (mono_class_create_from_typedef): If a type parameter is
24755         inherited from an outer class, set its owner to that class.
24756
24757 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
24758
24759         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
24760           for (int*) written size. This fixes bug #69592.
24761
24762 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
24763
24764         * icall.c: Added IsAuthenticodePresnet internal call.
24765         * image.c|h: New function that check a MonoImage for an Authenticode
24766         signature in the certificate PE data directory.
24767         * security.c|h: New internal call to ask the runtime if an 
24768         Authenticode signature seems referenced in the PE header.
24769
24770 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
24771
24772         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
24773
24774         * reflection.c (mono_image_create_pefile): Free the assembly streams
24775         after writing out the assembly file.
24776
24777         * object.c (mono_runtime_run_main): Fix small memory leak.
24778
24779         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
24780         property access modifiers. Fixes #69389.
24781
24782 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
24783
24784         * domain.c, object.c, object-internals.h, domain-internals.h,
24785         object.h, marshal.c: keep dynamic code info per domain.
24786
24787 2004-11-15  Martin Baulig  <martin@ximian.com>
24788
24789         * class.c (mono_type_get_name_recurse): Put type arguments in
24790         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
24791         see bug #68387.
24792
24793 2004-11-15  Martin Baulig  <martin@ximian.com>
24794
24795         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
24796         (mono_class_setup_vtable): When computing `the_cname' for a
24797         generic instance, don't include the namespace since we'd otherwise
24798         add it twice.
24799
24800 2004-11-15  Martin Baulig  <martin@ximian.com>
24801
24802         * class.c (mono_class_create_generic): Changed return type to void.
24803         (mono_class_create_generic_2): New public function; setup
24804         `class->method', `class->field' and `class->interfaces' here
24805         instead of in mono_class_init().
24806
24807         * class.h (mono_class_create_generic): Moved to class-internals.h.
24808
24809 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
24810
24811         * reflection.c (mono_image_create_pefile): take a file HANDLE.
24812         rather than writing to memory, write to this file. Right now,
24813         we are just writting into a buffer, and copying that. However
24814         we can avoid the buffer later.
24815
24816         (mono_dynamic_stream_reset): new function
24817
24818         * icall.c, object-internals.h: update for the above.
24819
24820 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
24821
24822         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
24823         have been using gc'd memory. First it is slower, unlikely
24824         the comment in the source code said, secondly, it increases
24825         our footprint to do it in the gc.
24826
24827         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
24828         the method so that it does not have to copy to managed code.
24829
24830 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
24831
24832         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
24833
24834 2004-11-12  Martin Baulig  <martin@localhost>
24835
24836         * reflection.c (mono_image_create_token): Allow generic method
24837         definitions here, since they may appear in an `.override'; see
24838         gen-98/gen-99 for an example.
24839
24840 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
24841
24842         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
24843         #69365.
24844
24845         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
24846         descriptive.
24847
24848 2004-11-11  Martin Baulig  <martin@ximian.com>
24849
24850         * class.c (mono_class_setup_vtable): In an explicit interface
24851         implementation, the method name now includes the arity.
24852
24853 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
24854
24855         * object.c (mono_array_full_copy): Fix warning.
24856
24857 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
24858
24859         * appdomain.c: Removed look_for_method_by_name(). Use the new method
24860         mono_class_get_method_from_name() instead.
24861         
24862         * class-internals.h: Added two new types of wrappers. 
24863         Added MonoRemotingTarget enum. Added new trampoline function type, which
24864         takes an additional MonoRemotingTarget value as parameter, so it is
24865         possible to request a trampoline for a specific target.
24866         
24867         * class.c: Added new mono_class_get_method_from_name() method.
24868         
24869         * class.h: In MonoRemoteClass, we can have now to vtables, one for
24870         general remoting sinks and one specific for cross domain calls.
24871         
24872         * debug-helpers.c: Added new wrapper names.
24873         
24874         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
24875         of a remote class.
24876         
24877         * image.c: Porperly delete value objects form the remoting invoke hashtable.
24878         
24879         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
24880         with several other methods (mono_marshal_get_xappdomain_dispatch,
24881         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
24882         and others) can generate a fast remoting wrapper for cross domain calls.
24883         More information can be found in docs/remoting.
24884         Other changes: Removed mono_find_method_by_name, and used
24885         mono_class_get_method_from_name instead.
24886         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
24887         is stored in the remoting invoke hashtable.
24888         
24889         * marshal.h: published the new method for getting the xdomain wrapper,
24890         and also added a method for getting the adequate wrapper for a given
24891         method and target.
24892         
24893         * object-internals.h, object.c: Added a couple of methods for capying and
24894         cloning arrays.
24895         Modified mono_install_remoting_trampoline, which takes the new remoting
24896         trampoline that has a remoting target as parameter.
24897         mono_class_proxy_vtable now also takes a remoting target as parameter, and
24898         will return the most suitable vtable for the target.
24899         Added mono_remote_class_vtable, which returns the vtable of a remote class
24900         (which can be the normal remoting vtable or the xdomain vtable).
24901         
24902         * threads.c: the xdomain invoke and dispatch wrappers must also be
24903         protected against interruptions.
24904
24905 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24906
24907         * icall.c: use memmove in BlockCopyInternal when the source and
24908         destination arrays are the same.
24909
24910 2004-11-09  Martin Baulig  <martin@ximian.com>
24911
24912         * class-internals.h (MonoGenericContainer): Removed `method' and
24913         `signature', replaced them with `is_method' and `is_signature'
24914         flags.  Added `context'.
24915
24916         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
24917         instead of a `MonoGenericContainer *'.
24918
24919         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
24920         for dynamic type parameters.
24921         (mono_metadata_load_generic_params): Setup `container->context'.
24922
24923         * reflection.c (mono_reflection_setup_generic_class): Setup
24924         `tb->generic_container->context'.
24925         (do_mono_reflection_bind_generic_parameters): Use
24926         mono_class_inflate_generic_type() to correctly inflate types,
24927         rather than using our own hack just for MONO_TYPE_VAR.
24928
24929 2004-11-09  Martin Baulig  <martin@ximian.com>
24930
24931         * class.c (mono_class_inflate_generic_method): Small fix; don't
24932         crash here.
24933
24934         * icall.c
24935         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
24936         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
24937         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
24938         (ves_icall_Type_BindGenericParameters): Likewise.
24939         (ves_icall_Type_get_IsGenericInstance): Likewise.
24940         (ves_icall_Type_GetGenericParameterPosition): Likewise.
24941         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
24942         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
24943         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
24944
24945 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
24946
24947         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
24948         assembly versions and public key tokens. Fixes #69113.
24949
24950 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
24951
24952         * metadata.c: fix bug introduced with the type cache changes
24953         on 2004-11-06.
24954
24955 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
24956
24957         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
24958         the MonoClass pointer instead of the token in exception clauses.
24959         * reflection.c: updates for the above and make the code not depend
24960         on the structure of MonoExceptionClause.
24961
24962 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
24963
24964         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24965         Add support for dynamic assemblies. Fixes #69114.
24966
24967         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
24968
24969 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
24970
24971         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
24972         since most only those methods use it. the code member of
24973         MonoMethodPInvoke was dead, so that can be removed too. Also,
24974         remove inline_count (again, not used), and move slot so that it
24975         can share bits with some other flags. This saves 8 bytes in the
24976         structure and gives us about 50 kb back for mcs helloworld.cs
24977
24978         * *.[ch]: Do naming changes for the above.
24979
24980         * loader.c (mono_method_get_header): Lazily init the header
24981         on first access.
24982         (mono_get_method_from_token): don't init the header here
24983         (mono_free_method): the header may never be allocated
24984
24985         Overall, this saves 150 kb of unmanaged allocations
24986         for mcs helloworld.cs. That accounts for 10% of the unmanaged
24987         memory at runtime.
24988         
24989         * loader.c, loader.h (mono_method_get_header): new accessor.
24990
24991         * *.[ch]: use the above method. Prepares us to lazily load
24992         the header.
24993
24994         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
24995         three warnings, which are actual bugs (see 69206).
24996
24997         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
24998         unused. Saves a cool 4 bytes / method.
24999
25000 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
25001
25002         * metadata.c (builtin_types): Add types for System.Object here.
25003         (mono_metadata_parse_type_full): Cache MonoType*'s that are
25004         for a class or valuetype from klass->this_arg or klass->byval_arg.
25005
25006         On mcs for a hello world, this gets us down from 21836 MonoType's
25007         to 14560.
25008
25009         (mono_metadata_free_type): Account for the above change.
25010
25011 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
25012
25013         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
25014         exception instead of asserting if name is null.
25015         (ves_icall_System_AppDomain_GetData): Ditto.
25016
25017 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
25018
25019         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
25020         EnumBuilder.
25021
25022         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
25023         Return NULL when the domain does not have entry_assembly set.
25024
25025         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
25026         Add a 'resource_modules' argument.
25027         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
25028
25029         * reflection.c (mono_reflection_create_runtime_class): Move setting
25030         of wastypebuilder here, so mono_get_type_object () returns a MonoType
25031         for enums too.
25032
25033         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
25034         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
25035         Throw an ArgumentNullException if 'ptr' is null.
25036
25037         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
25038         assemblies here. Fixes #69020.
25039
25040 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
25041
25042         * reflection.c (build_compressed_metadata): Fix the previous patch for
25043         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
25044         the stack.
25045
25046 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
25047
25048         * assembly.c (mono_assembly_names_equal): Allow a match if one of
25049         the cultures is false. Fixes #69090.
25050
25051         * reflection.c (build_compressed_metadata): Fix invalid memory read 
25052         detected by valgrind.
25053         
25054         * reflection.c (mono_reflection_get_type): Avoid triggering a 
25055         TypeResolve multiple times for the same type. Fixes #65577.
25056
25057 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
25058
25059         * marshal.c: Avoid using ldftn to call managed functions. It is
25060         much slower than just a call.
25061
25062         * reflection.c (mono_module_get_object): free the basename we
25063         allocate here from glib.
25064         
25065         * reflection.c (ensure_runtime_vtable): make sure to free
25066         overrides.  Also, we were allocating an array of MonoMethod not an
25067         array of MonoMethod*.
25068
25069         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
25070
25071         * image.c (mono_image_close): free image->guid here.
25072
25073 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
25074
25075         * reflection.c: Fix some spec conformance issues with the PE file
25076         structures so mcs compiled apps run on the Net 2.0 beta.
25077
25078 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
25079
25080         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
25081         Implement this. Fixes #67264.
25082
25083         * debug-helpers.h debug-helpers.c marshal.c: Move 
25084         mono_find_method_by_name to debug-helpers.c.
25085
25086 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
25087
25088         * object.c (mono_release_type_locks): type_initialization_hash is
25089         a GHashTable.
25090
25091         * reflection.c object.c object-internals.h: Fix warnings.
25092
25093         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
25094         without accessors. Fixes #61561.
25095
25096         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
25097         application base from the root domain if not set. Fixes #65641.
25098         (mono_runtime_init): Fix warning.
25099
25100 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25101
25102         * appdomain.c: call mono_thread_pool_init.
25103         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
25104         of worker threads based on the number of CPUs and the environment
25105         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
25106         for non-windows (windows) systems.
25107
25108 2004-10-27  Chris Toshok  <toshok@ximian.com>
25109
25110         * mono-debug-debugger.c (write_class): don't call mono_class_init
25111         here, as even with the check for (!klass->init_pending), we get
25112         into a situation where we're hitting cycles in class
25113         initialization.  Fixes #68816.
25114
25115 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
25116
25117         * image.c: Avoid overwriting values in the loaded_images_hash when an
25118         assembly is loaded multiple times. Fixes #61152.
25119
25120         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
25121         so multiple satellite assemblies for the same name can be loaded.
25122         Fixes #68259.
25123
25124         * mono_domain_assembly_preload: Actually return the loaded assembly, 
25125         not NULL.
25126
25127         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
25128         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
25129
25130         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
25131         pending finalizers are not invoked after the appdomain has been 
25132         unloaded. Fixes #67862.
25133
25134 2004-10-22  Martin Baulig  <martin@ximian.com>
25135
25136         * mono-debug-debugger.c
25137         (mono_debugger_runtime_invoke): Don't box valuetypes.
25138
25139 2004-10-22  Chris Toshok  <toshok@ximian.com>
25140
25141         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
25142         don't hide private methods.
25143
25144 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
25145
25146         * icall.c: Allows the runtime to "share" (when known) the public key
25147         token of an assembly. This avoid the need to recalculate the token 
25148         (from the public key) in managed code.
25149
25150 2004-10-21  Chris Toshok  <toshok@ximian.com>
25151
25152         * debug-helpers.c (append_class_name): argh, revert last patch.
25153         
25154 2004-10-21  Chris Toshok  <toshok@ximian.com>
25155
25156         * debug-helpers.c (append_class_name): use '+' as the delimiter,
25157         not '/', so that it matches what the debugger uses to look up
25158         methods.
25159
25160 2004-10-21  Martin Baulig  <martin@ximian.com>
25161
25162         * mono-debug-debugger.c (mono_debugger_throw_exception): New
25163         public method; this is called each time an exception is thrown and
25164         allows the debugger to use exception catch points.
25165
25166 2004-10-21  Martin Baulig  <martin@ximian.com>
25167
25168         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
25169         the stack pointer and the exception object in some struct and pass
25170         that to the debugger.
25171
25172 2004-10-21  Chris Toshok  <toshok@ximian.com>
25173
25174         * mono-debug-debugger.c (do_write_class): add instance/static
25175         event support.  We don't expose "raise" or "other" yet.
25176         (event_is_static): new method.
25177
25178 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
25179
25180         * mono-debug-debugger.c
25181         (mono_debugger_handle_exception): Remove
25182         bogus return value for fussy compilers.
25183
25184 2004-10-20  Martin Baulig  <martin@ximian.com>
25185
25186         * mono-debug-debugger.c
25187         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
25188         (mono_debugger_handled_exception): Likewise.
25189
25190 2004-10-20  Martin Baulig  <martin@ximian.com>
25191
25192         * mono-debug-debugger.h (MonoDebuggerEvent): Added
25193         MONO_DEBUGGER_EVENT_EXCEPTION.
25194
25195         * mono-debug-debugger.c (mono_debugger_handle_exception): New
25196         public function to send the debugger a notification for an
25197         exception and inform it about a catch/finally clause.
25198
25199 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
25200
25201         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
25202         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
25203         fix 2.95 build. 
25204
25205         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
25206
25207 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
25208
25209         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
25210         marshalled as [In,Out]. Fixes #58325.
25211
25212 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
25213
25214         * reflection.c (mono_method_body_get_object): Implement some fields.
25215
25216 2004-10-12  Martin Baulig  <martin@ximian.com>
25217
25218         * reflection.c (mono_reflection_bind_generic_parameters): Small
25219         fix, correctly retrieve our parent from a generic instance.
25220
25221 2004-10-12  Martin Baulig  <martin@ximian.com>
25222
25223         * metadata.c (mono_metadata_generic_param_equal): We always have
25224         an owner.
25225
25226         * class.c
25227         (mono_class_from_generic_parameter): We need to have an owner.
25228         (my_mono_class_from_generic_parameter): Likewise.
25229
25230         * reflection.c (mono_reflection_setup_generic_class): Renamed to
25231         mono_reflection_create_generic_class() and added a new
25232         mono_reflection_setup_generic_class().  
25233         (mono_reflection_initialize_generic_param): If we're a nested
25234         generic type and inherited from the containing class, set our
25235         owner to the outer class.
25236
25237 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
25238
25239         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
25240
25241         * reflection.c (mono_method_body_get_object): New function to create
25242         a MethodBody object.
25243
25244         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
25245
25246 2004-10-11  Martin Baulig  <martin@ximian.com>
25247
25248         * metadata.c (_mono_metadata_type_equal): Renamed to
25249         do_mono_metadata_type_equal() and made static.
25250
25251 2004-10-11  Martin Baulig  <martin@ximian.com>
25252
25253         * appdomain.c: Bump corlib version number to 28.
25254
25255 2004-10-10  Martin Baulig  <martin@ximian.com>
25256
25257         * class-internals.h
25258         (MonoGenericInst): Added `MonoGenericContainer *container'.
25259         (MonoGenericMethod): Likewise.
25260         (MonoGenericContext): Likewise.
25261         (MonoGenericParam): Added `MonoGenericContainer *owner'.
25262
25263         * metadata.c
25264         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
25265         (do_mono_metadata_parse_generic_inst): Likewise.
25266         (mono_metadata_parse_type_full): New public method.  This is the actual
25267         mono_metadata_parse_type() implementation - with an additional
25268         `MonoGenericContainer *' argument.
25269         (mono_metadata_parse_array_full): Likewise.
25270         (mono_metadata_parse_signature_full): Likewise.
25271         (mono_metadata_parse_method_signature_full): Likewise.
25272         (mono_metadata_parse_mh_full): Likewise.
25273         (mono_type_create_from_typespec): Likewise.
25274         (mono_metadata_interfaces_from_typedef_full): New public method;
25275         this is similar to the other _full() methods, but we take a
25276         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
25277         (mono_metadata_parse_generic_param): Take an additional
25278         `MonoGenericContainer *' argument and lookup the MonoGenericParam
25279         from that container.
25280         (mono_metadata_generic_param_equal): New static method to compare
25281         two type parameters.
25282         (_mono_metadata_type_equal): New static method; takes an
25283         additional `gboolean signature_only' argument - if true, we don't
25284         compare the owners of generic parameters.
25285         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
25286         with a TRUE argument - do a signature-only comparision.
25287
25288         * loader.c: Use the new _full() methods and pass the
25289         MonoGenericContainer to them.
25290
25291         * object-internals.h (MonoReflectionTypeBuilder): Added
25292         `MonoGenericContainer *generic_container' field.
25293         (MonoReflectionMethodBuilder): Likewise.
25294
25295 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
25296
25297         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
25298         case initial images of dynamic assemblies.
25299
25300         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
25301
25302         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
25303
25304         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
25305         length of event->other array.
25306         (typebuilder_setup_events): Ditto.
25307
25308         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
25309         'assembly_by_name' and add an 'assemblies' list.
25310
25311         * assembly.h assembly.c: Add a new search hook for determining whenever
25312         an assembly is already loaded. Use this instead of searching in the
25313         loaded_assemblies list.
25314
25315         * domain.c appdomain.c: Implement the new search hook so loaded 
25316         assemblies are now scoped by appdomain. Fixes #67727.
25317
25318 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
25319
25320         * threads.c (mono_thread_attach): Initialize synch_lock field so
25321         mono_thread_detach works again.
25322
25323         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
25324         'lib' too. Fixes #63130.
25325
25326 2004-10-06  Jackson Harper  <jackson@ximian.com>
25327
25328         * culture-info-tables.h: regenerated.
25329
25330 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
25331
25332         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
25333         implemented by other interfaces in the result. Fixes #65764.
25334         
25335         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25336         Handle unloadable modules without crashing.
25337
25338         * image.c (load_modules): Revert the previous patch since modules must
25339         have a fixed index inside the array.
25340         
25341         * image.c (load_modules): Don't include native modules in the modules
25342         array.
25343
25344 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
25345
25346         * reflection.h: Add param_defaults field.
25347
25348         * reflection.c: Add support for parameter defaults in dynamic methods.
25349         Fixes #64595.
25350
25351         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
25352         an empty string when a type has no namespace. Fixes #64230.
25353
25354 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
25355
25356         * tabledefs.h: Added "internal" security actions to support non-CAS
25357         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
25358         Note: they do not seems to be used anymore in 2.0 (new metadata format)
25359
25360 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
25361
25362         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
25363         constructor of abstract class. Fixes #61689.
25364
25365 2004-10-04  Martin Baulig  <martin@ximian.com>
25366
25367         * class-internals.h (MonoGenericContainer): New type.
25368         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
25369         `MonoGenericContainer *generic_container'.
25370         (MonoClass): Replaced `gen_params' and `num_gen_params' with
25371         `MonoGenericContainer *generic_container'.
25372
25373         * metadata.c (mono_metadata_load_generic_params): Return a
25374         `MonoGenericContainer *' instead of a `MonoGenericParam *';
25375         removed the `num' argument.
25376
25377 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
25378
25379         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
25380         for dynamic images.
25381
25382         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
25383         machine fields.
25384
25385         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
25386
25387         * reflection.c: Save pe_kind and machine values into the generated
25388         image file.
25389
25390         * appdomain.c: Bump corlib version number.
25391
25392         * object-internals.h: Reorganize layout of LocalBuilder.
25393
25394         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
25395         New helper function.
25396
25397         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
25398         created MonoType for dynamic types. Fixes #66180.
25399
25400 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
25401
25402         * threadpool.c: the ares hashtable needs a critical section around it.
25403         this prevents some nasty segfaults
25404
25405 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
25406
25407         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
25408         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
25409         bug 67324).
25410         
25411 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25412
25413         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
25414         
25415 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
25416
25417         * image.c: Always canonicalize image file names, to avoid loading
25418         the same assembly twice when referenced using a relative path.
25419
25420 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25421
25422         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
25423
25424         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
25425
25426         * marshal.c: Fix warnings.
25427
25428 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
25429
25430         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
25431         attempting to marshal the delegate_trampoline as the method_addr.
25432         This patch has a static hashtable of marshalled delegates so that 
25433         we can map delegate_trampoline addresses back to delegates.  This
25434         allows a delegate passed to managed code to be passed back into native
25435         code.  Fixes #67039
25436
25437 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25438
25439         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
25440
25441         * reflection.c (method_encode_code): Align method headers properly.
25442         Fixes #66025.
25443
25444 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25445
25446         * marshal.c: In the runtime invoke wrapper, reset the abort
25447         exception if it is cached. This avoids the automatic rethrowal of 
25448         the exception after the catch of the wrapper. Also check for pending
25449         interruptions before calling the managed method. This is done using
25450         the new method emit_thread_force_interrupt_checkpoint, since the
25451         normal checkpoint method is ignored when running the invoke wrapper.
25452         * object.c: If the abort exception is rethrown, set the abort_exc
25453         field of the thread, so it will be rethrown aftere every catch.
25454         * threadpool.c: Only run an interruption checkpoint if what has been
25455         requested is a stop of the thread (aborts will be ignored).
25456         * threads.c: By default, a thread will now never be interrumped while
25457         running the runtime invoke wrapper (this ensures that runtime_invoke
25458         will always return to the caller if an exception pointer is provided).
25459         There is a new special method mono_thread_force_interruption_checkpoint()
25460         to force an interruption checkpoint even if running a protected
25461         wrapper, which is used by the same runtime invoke wrapper to do a check
25462         at a safe point.
25463
25464 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25465
25466         * object.c, object-internals.h: Implemented mono_release_type_locks,
25467         which releases the cctor locks held by a thread.
25468         * threads.c, threads.h: In thread_cleanup, release cctor locks held
25469         by a thread. Added mono_thread_exit() method to be used to safely stop
25470         a thread.
25471
25472 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25473
25474         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25475         Move null check before dereference.  Avoid indexing beyond the end
25476         of the 'modules' array.
25477
25478 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25479
25480         * metadata-internals.h (MonoImage): Add module_count field.
25481         * image.c (load_modules): Set image->module_count.
25482         (mono_image_load_file_for_image): Use image->module_count.
25483         * reflection.c (mono_image_load_module): Append to image->modules array 
25484         of dynamic assembly.
25485         (mono_module_get_object): Fix loop to actually increment index.
25486         Use image->module_count.
25487         * assembly.c (mono_assembly_load_references): Use image->module_count.
25488         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25489         Likewise.
25490
25491 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25492
25493         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
25494         Avoid assert on generic types.
25495
25496 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
25497
25498         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
25499
25500         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
25501
25502         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
25503         function to convert a MarshalSpec structure to its managed counterpart.
25504
25505         * reflection.c: Fix warnings.
25506         
25507         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
25508         field.
25509
25510         * icall.c (mono_create_icall_signature): Fix build.
25511
25512 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
25513
25514         * icall.c: Add MakePointType icall.
25515
25516         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
25517         warnings.
25518
25519 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25520
25521         * threadpool.c: reuse allocated slots in the queue.
25522
25523 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
25524
25525         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
25526
25527         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
25528
25529         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
25530         previous change.
25531
25532         * tabledefs.h: Add constants for pinvoke attributes BestFit and
25533         ThrowOnUnmappableChar.
25534
25535         * icall.c (ves_icall_Type_GetPacking): New icall.
25536
25537 2004-09-24  Martin Baulig  <martin@ximian.com>
25538
25539         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
25540
25541 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25542
25543         * appdomain.c:
25544         (mono_domain_set): allow setting a domain that is being unloaded.
25545         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
25546         being unloaded.
25547
25548 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25549
25550         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
25551         the GetCustomAttributes icall.
25552
25553 2004-09-23  Martin Baulig  <martin@ximian.com>
25554
25555         * object-internals.h (MonoReflectionGenericParam): Replaced
25556         'has_ctor_constraint', `has_reference_type' and `has_value_type'
25557         with `guint32 attrs'.
25558
25559 2004-09-23  Martin Baulig  <martin@ximian.com>
25560
25561         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
25562
25563 2004-09-23  Martin Baulig  <martin@ximian.com>
25564
25565         * object-internals.h (GenericParameterAttributes): New enum.
25566
25567 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25568
25569         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
25570         
25571         * class.c (init_events): Fill out event->other field.
25572
25573         * class.c: Fix warnings.
25574
25575         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
25576
25577 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
25578
25579         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
25580         walk which doesn't supply the IL offset.
25581
25582 2004-09-22  Martin Baulig  <martin@ximian.com>
25583
25584         * reflection.c (mono_reflection_setup_internal_class): If we're
25585         System.ValueType, System.Object or System.Enum, set
25586         `klass->instance_size' and create the vtable.
25587         (mono_reflection_create_internal_class): If we're an enum type,
25588         get the base class from our current corlib.
25589
25590 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
25591
25592         * reflection.h (MonoResolveTokenError): New type.
25593
25594         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
25595         icall.
25596
25597         * icall.c: Add an 'error' argument to the ResolveToken icalls.
25598
25599 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
25600
25601         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
25602         Support also calling constructors, but only for already allocated objects.
25603
25604 2004-09-17  Geoff Norton <gnorton@customerdna.com>
25605
25606         * reflection.c (type_get_qualified_name): If the klass is null
25607         return the typename to avoid a NullRefEx.
25608         (encode_cattr_value): Get the qualified name of the boxed type,
25609         not the underlying enumtype.  Fixes #62984.
25610
25611 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
25612
25613         * marshal.c: Fix problems with previous checkin.
25614
25615 2004-09-21    <vargaz@freemail.hu>
25616
25617         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
25618         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
25619
25620         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
25621
25622 2004-09-21  Geoff Norton <gnorton@customerdna.com>
25623
25624         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
25625         should only return a type for pointers, arrays, and passbyref types.
25626         Fixes bug #63841.
25627
25628 2004-09-21  Martin Baulig  <martin@ximian.com>
25629
25630         * domain.c (mono_debugger_check_runtime_version): New public
25631         function.
25632
25633         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
25634
25635 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
25636
25637         * reflection.c: Added missing sort to the declarative security 
25638         attributes table. MS implementation stops seeing the attributes if the
25639         token number regress in the table (as shown by ildasm and permview).
25640
25641 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
25642
25643         * object-internals.h (MonoReflectionModule): Add 'token' field.
25644         
25645         * reflection.c (mono_reflection_get_token): Add support for Module
25646         and Assembly.
25647         (mono_module_get_object): Set 'token' field.
25648         (mono_module_file_get_object): Set 'token' field.
25649
25650         * icall.c: Add new Assembly and Module icalls.
25651
25652         * appdomain.c: Bump corlib version.
25653
25654 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
25655
25656         * loader.h loader.c class.h class.c: Add helper functions for obtaining
25657         tokens of metadata objects.
25658
25659         * reflection.h reflection.c (mono_reflection_get_token): New function
25660         to obtain the token of a metadata object.
25661
25662         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
25663
25664 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
25665
25666         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
25667         
25668         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
25669
25670 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
25671
25672         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
25673         * object-internals.h: Added 3 MonoArray* members to MonoReflection
25674         AssemblyBuilder to access the permissions set in the class lib.
25675         * reflection.c: Added security attributes encoding step in 
25676         mono_image_build_metadata.
25677         * tabledefs.h: Added new security actions defined in 2.0:
25678         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
25679
25680 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25681
25682         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
25683         macro parameter.
25684
25685 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25686  
25687         * locales.c: nullify the ICU_collator member of CompareInfo when it is
25688           finalized. There where random SIGSEVs at program termination, when
25689           an object being finalized was trying to do a string comparison and
25690           the current culture was already finalized.
25691  
25692 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25693
25694         * threads.c: call thread_cleanup before finishing the thread if we get
25695         there.
25696
25697 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
25698
25699         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
25700         assemblies from the parent. Fixes #65665.
25701
25702 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
25703
25704         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
25705         modifiers.
25706
25707 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
25708
25709         * reflection.h: add prototype for mono_get_dbnull_object
25710         * reflection.c: add prototypes for get_default_param_value_blobs 
25711         and mono_get_object_from_blob for fussier compilers
25712
25713 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
25714  
25715         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
25716         false deadlock checks in class initialization.
25717  
25718 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
25719
25720         * image.c (mono_image_addref): Fix comment.
25721
25722         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
25723         possible.
25724
25725 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
25726
25727         * reflection.c (mono_param_get_objects): Modified to return
25728         ParameterInfo.DefaultValue object.
25729
25730         (get_default_param_value_blobs):
25731         (mono_get_object_from_blob):
25732         (mono_get_dbnull_object): New helper routines. 
25733
25734         * object.c (mono_get_constant_value_from_blob): New helper routine
25735         carved out from get_default_field_value ()
25736
25737         * object-internals.h (mono_get_constant_value_from_blob): Added
25738         function declaration.
25739
25740 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
25741
25742         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
25743         referenced assemblies. Fixes #62135.
25744
25745         * exception.h exception.c (mono_get_exception_file_not_found2): New
25746         helper function.
25747
25748 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
25749
25750         * class.h class.c: Add mono_type_get_underlying_type ().
25751
25752 2004-09-09  Geoff Norton <gnorton@customerndna.com>
25753
25754         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
25755         Fix GetTypes() to support dynamically created assemblies.
25756
25757 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
25758
25759         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
25760         
25761         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
25762         previous patch.
25763
25764         * reflection.h reflection.c loader.c: Allow dynamic construction of
25765         pinvoke methods. Fixes #65571.
25766         
25767         * reflection.c (mono_reflection_get_type): Revert previous change since
25768         it causes regressions.
25769
25770 2004-09-08  Martin Baulig  <martin@ximian.com>
25771
25772         * class.c (class_compute_field_layout): Don't call
25773         mono_class_layout_fields() for open generic instances.
25774
25775 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
25776         * threads.c appdomain.c: fix typo in GC macro
25777
25778 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25779
25780         * threads.c: don't call mono_thread_detach() in start_wrapper(),
25781         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
25782
25783 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
25784
25785         * image.c (mono_image_close): Applied patch from 
25786         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
25787         assembly is loaded multiple times from data.
25788         
25789         * image.c (mono_image_open): Fix warning.
25790
25791 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25792
25793         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
25794         once. Fixes #58334.
25795         
25796         * reflection.c (mono_reflection_create_runtime_class): Initialize
25797         klass->nested_classes. Fixes #61224.
25798
25799 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
25800
25801         * threads.c: sched_yield() on exit, to allow threads to quit.
25802
25803 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25804
25805         * object.c (mono_unhandled_exception): Remove leftover debug code.
25806
25807 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
25808
25809         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
25810
25811 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25812
25813         * marshal.c (emit_marshal_array): Really null terminate string arrays.
25814         
25815         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
25816
25817 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25818
25819         * marshal.c (emit_marshal_array): Null terminate string arrays.
25820         
25821         * marshal.c (raise_auto_layout_exception): Fix warning.
25822
25823         * reflection.c (mono_param_get_objects): Initialize the default value
25824         with DBNull.Value, not null. Fixes #62123.
25825
25826 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
25827
25828         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
25829         throw an exception with a cute explanation.
25830
25831 2004-09-06  Dick Porter  <dick@ximian.com>
25832
25833         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
25834         Close the new process's thread handle, as we don't use it.  The
25835         handle stays around forever otherwise.
25836
25837 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25838
25839         * object.c (arith_overflow): Fix warning.
25840
25841         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
25842         calling conventions in method refs. Fixes #65352.
25843
25844         * reflection.c: Fix warnings.
25845
25846 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25847
25848         * icall.c: Add a new icall for Array.Clear
25849
25850 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25851
25852         * object.c: When allocating an array, we have to throw
25853         an overflow exception if any of the lengths are < 0.
25854
25855 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25856
25857         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
25858         properly. Also move implementation of string array marshalling to 
25859         managed code. Fixes #42316.
25860
25861 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25862
25863         * assembly.c: provide more information when loading an assembly fails.
25864
25865 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25866
25867         * filewatcher.c: don't expect the development fam package to be
25868         installed.
25869
25870 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
25871
25872         * marshal.c: Make a copy of the signature cookie since it will be
25873         freed by the caller.
25874         
25875         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
25876
25877         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
25878
25879         * metadata.c (mono_metadata_free_marshal_spec): New function to free
25880         marshal specs.
25881
25882         * marshal.c: More refactoring.
25883         
25884         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
25885         smaller functions.
25886
25887 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
25888
25889         * object.c: In mono_message_invoke, fill the output parameter array after
25890           calling the managed method (it was done before the call). This fixes
25891           bug #59299.
25892
25893 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25894
25895         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
25896         as well.
25897
25898 2004-09-02  Martin Baulig  <martin@ximian.com>
25899
25900         * class.c (mono_class_instance_size): Don't allow generic type
25901         definitions or open generic instances.
25902         (mono_class_array_element_size): If we're a value type, call
25903         mono_class_instance_size() on the original class.
25904
25905         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
25906         handle generic instances.
25907
25908         * mono-debug-debugger.c (write_type): Handle generic instances
25909         like classes.
25910
25911 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25912
25913         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
25914         the allocation request fails. Fixes #65089.
25915
25916         * object.c (mono_runtime_free_method): Do not call mono_free_method.
25917         
25918         * object.c (mono_runtime_free_method): New function to free a dynamic
25919         method.
25920
25921         * marshal.c (mono_delegate_free_ftnptr): New function to free the
25922         delegate trampoline.
25923
25924         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
25925         with hasthis as dynamic,
25926
25927         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
25928
25929         * domain.c (mono_jit_info_table_remove): New function to remove an
25930         entry from the jit info table.
25931
25932         * class-internals.h (MonoMethod): Add 'dynamic' field.
25933
25934         * loader.c: Fix warnings.
25935
25936 2004-09-01  Martin Baulig  <martin@ximian.com>
25937
25938         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
25939         instead of mono_debugger_lock() because the latter one is a no-op
25940         unless running in the debugger.
25941
25942 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25943
25944         * class.c (class_compute_field_layout): Classes with auto-layout or
25945         reference fields are not blittable.
25946         
25947 2004-09-01  Dick Porter  <dick@ximian.com>
25948
25949         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
25950         mono_image_get_filename() to get the assembly location.
25951
25952         * icall.c:
25953         * metadata.h: Fix compile warnings
25954
25955 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25956
25957         * class.c (class_compute_field_layout): System.Object is blittable.
25958
25959         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
25960         as in/out. Fixes #59909.
25961
25962 2004-09-01  Martin Baulig  <martin@ximian.com>
25963
25964         * metadata.h (MONO_TYPE_ISREFERENCE): Call
25965         mono_metadata_generic_inst_is_valuetype() if we're a generic
25966         instance to check whether our underlying type is a reference type.
25967
25968 2004-09-01  Martin Baulig  <martin@ximian.com>
25969
25970         * metadata.c (mono_type_size): If we're a generic instance, call
25971         mono_class_value_size() for value types.
25972
25973 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
25974
25975         * marshal.c: Implement more custom marshalling functionality. Fixes
25976         #64915.
25977
25978 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
25979
25980         * mono-debug.c, debug-mono-symfile.c: add some locking love.
25981
25982 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
25983
25984         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
25985
25986         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
25987
25988         * icall.c: Fix some warnings.
25989
25990         * threads.c (abort_appdomain_thread): Fix unref errors.
25991         (mono_thread_current): Fix THREAD_DEBUG define.
25992
25993 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
25994
25995         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
25996
25997         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
25998
25999 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
26000
26001         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
26002         string arrays.
26003
26004 2004-08-28  Martin Baulig  <martin@ximian.com>
26005
26006         * metadata.c
26007         (mono_metadata_generic_inst_is_valuetype): New public function.
26008
26009         * metadata.h (MONO_TYPE_ISSTRUCT): Call
26010         mono_metadata_generic_inst_is_valuetype() if we're a generic
26011         instance to check whether our underlying type is a valuetype.
26012
26013 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
26014
26015         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
26016         #63768.
26017
26018 2004-08-25  Martin Baulig  <martin@ximian.com>
26019
26020         * loader.c (mono_get_method_from_token): Abstract methods can also
26021         be generic and thus have type parameters.
26022
26023         * metadata-internals.h
26024         (MonoDynamicImage): Added `GPtrArray *gen_params'.
26025
26026         * reflection.c (mono_image_get_generic_param_info): Don't create a
26027         metadata row, just add an entry to the `gen_params' array.
26028         (build_compressed_metadata): Sort the `gen_params' array and then
26029         actually create the metadata.
26030
26031 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26032
26033         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
26034
26035 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
26036
26037         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
26038
26039 2004-08-24  Martin Baulig  <martin@ximian.com>
26040
26041         * class.cs (mono_class_is_subclass_of): Like an interface, a
26042         generic instance also derives from System.Object.
26043
26044 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
26045
26046         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
26047         custom modifiers to be in any order. Fixes #61990.
26048
26049 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
26050
26051         * object.c: Register mono_object_new_fast icall.
26052         
26053         * object.c (mono_class_get_allocation_ftn): Return to calling
26054         mono_object_new_fast, since it seems faster to compute the object 
26055         size in unmanaged code than passing it as a parameter.
26056
26057         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
26058
26059         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
26060         this function with Boehm as the oom handler, so we don't have to check
26061         the result of GC_malloc.
26062
26063         * object.c: Remove checks for oom.
26064
26065         * object.h object.c (mono_class_get_allocation_ftn): New function to
26066         return the icall which can be used to allocate an instance of a given
26067         class. 
26068
26069         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
26070
26071         * class-internals.h: Add 'enabled' field.
26072
26073 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
26074
26075         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
26076
26077 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
26078         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
26079         value 0x0010.
26080
26081 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
26082
26083         * appdomain.c: use the Tls function for appdomain too,
26084         at Zoltan's request. Actually return in mono_context_get
26085
26086         * appdomain.c, profiler.c, threads.c: use __thread
26087
26088 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
26089
26090         * appdomain.c threads.c: Call GC_CreateThread on windows.
26091
26092         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
26093         multiple libraries since this don't work on windows.
26094
26095 2004-08-18  Martin Baulig  <martin@ximian.com>
26096
26097         * class-internals.h
26098         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
26099         MonoMethodHeader.
26100
26101         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
26102         MonoMethodNormal since we also need it for abstract and interface
26103         methods.
26104
26105         * reflection.c
26106         (build_compressed_metadata): Sort the GenericParam table.
26107         (mono_image_create_token): Added `gboolean create_methodspec'
26108         argument; this is false when generating a MethodImpl token.
26109         (reflection_methodbuilder_to_mono_method): Abstract and interface
26110         methods may also have generic parameters.
26111
26112 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
26113
26114         * appdomain.c: thread local alloc
26115
26116 2004-08-17  Martin Baulig  <martin@ximian.com>
26117
26118         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
26119
26120         * icall.c
26121         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
26122         argument.
26123
26124         * class.c (mono_type_get_full_name): New public function.
26125         (mono_type_get_name): Don't include the type arguments.
26126
26127 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
26128
26129         * Makefile.am: Build static versions of libmetadata and libmonoruntime
26130         for inclusion into the mono executable.
26131
26132 2004-08-16  Martin Baulig  <martin@ximian.com>
26133
26134         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
26135         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
26136
26137 2004-08-14  Martin Baulig  <martin@ximian.com>
26138
26139         * class.c (dup_type): Also copy the `byref' field.
26140
26141 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
26142
26143         * reflection.c (create_dynamic_mono_image): Revert the last change 
26144         since it breaks bootstrap.
26145
26146 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
26147
26148         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
26149
26150         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
26151         not free them with g_free.
26152
26153 2004-08-11  Martin Baulig  <martin@ximian.com>
26154
26155         * reflection.c (mono_reflection_setup_internal_class): Also call
26156         mono_class_setup_mono_type() if we already have a `tb->type.type'.
26157
26158 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
26159
26160         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
26161         called during default (first) AppDomain creation. Keep track of
26162         Evidence when loading assemblies.
26163
26164 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26165
26166         * opcodes.c, opcodes.h: reduce runtime relocations.
26167
26168 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
26169
26170         * culture-info.h, locales.c: fixes and chages to sue the new
26171         optimized format of the locale data.
26172         * culture-info-tables.h: regenerated.
26173
26174 2004-08-06  Geoff Norton <gnorton@customerdna.com>
26175         
26176         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
26177
26178 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
26179
26180         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
26181         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
26182         * domain-internals.h: icall declaration.
26183         * icall.c: icall registration.
26184         * object-internals.h: New fields in MonoAssembly for CAS.
26185
26186 2004-08-05  Duncan Mak  <duncan@ximian.com>
26187
26188         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
26189         CEE_LDELEM_ANY.
26190
26191 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26192
26193         * reflection.c: fix to deal with object[] arrays in custom ctors
26194         (bug #62550).
26195
26196 2004-08-05  Martin Baulig  <martin@ximian.com>
26197
26198         * class.c (mono_class_array_element_size): Added support for
26199         generic instances and correctly handle "recursive" types.
26200
26201 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
26202
26203         * assembly.c: Fix warnings.
26204
26205 2004-08-04  Martin Baulig  <martin@ximian.com>
26206
26207         * class.c
26208         (mono_type_get_name_recurse): Added `gboolean include_arity'
26209         argument specifying whether or not we should include the generic
26210         arity in the type name.
26211         (_mono_type_get_name): New static function.
26212         (mono_class_setup_vtable): If we're a generic instance, don't
26213         include the generic arity in the names of explicit method
26214         implementations.        
26215
26216 2004-08-03  Martin Baulig  <martin@ximian.com>
26217
26218         * class.c (mono_type_get_name_recurse): Enclose the generic type
26219         arguments in `<', '>'.
26220
26221 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26222
26223         * gc.c: make GC warning messages use the trace API, they are just
26224         noise to most of the users.
26225
26226 2004-08-03  Martin Baulig  <martin@ximian.com>
26227
26228         * debug-mono-symfile.c (read_string): Correctly read the string.
26229
26230 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
26231
26232         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
26233         
26234         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
26235         icalls.
26236         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
26237
26238 2004-07-30  Martin Baulig  <martin@ximian.com>
26239
26240         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
26241         Reflect latest symbol writer changes.   
26242
26243 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26244
26245         * object.c: always create an object if null is passed
26246         to Invoke() where a valuetype is expected.
26247
26248 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
26249
26250         * marshal.c (mono_marshal_init): make managed
26251         signatures match native ones better for 64bits.
26252
26253 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26254
26255         * appdomain.c: hack to build correctly the private bin path on windows.
26256         Fixes bug #61991.
26257
26258 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
26259
26260         * assembly.c: Load mscorlib from the correct framework directory
26261           (mono/<version>/mscorlib.dll).
26262         * appdomain.h: Added prototypes for new functions.
26263         * internals.h: Added some prototypes.
26264         * domain.c: When initializing the runtime, get from the executable and
26265           the configuration files the runtime version that the app supports.
26266           Added support methods for reading app.exe.config. Added list of versions
26267           supported by the JIT. Added two new methods: mono_init_from_assembly,
26268           which initializes the runtime and determines the required version from
26269           the provided exe file, and mono_init_version, which initializes
26270           the runtime using the provided version.
26271         * icall.c: Get machine.config from version-specific directory.
26272         * reflection.c: When generating an image, embed the version number
26273           of the current runtime.
26274
26275 2004-07-28  Dick Porter  <dick@ximian.com>
26276
26277         * socket-io.c
26278         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
26279         returned sockaddr size before creating the remote address object.
26280         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
26281         61608.
26282
26283 2004-07-28  Dick Porter  <dick@ximian.com>
26284
26285         * locales.c (string_invariant_compare_char): Fix invariant char
26286         compares between upper and lower cases.  Fixes bug 61458.
26287
26288 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
26289         
26290         * marshal.c: actually cache stelem.ref wrappers.
26291         
26292 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
26293
26294         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
26295         sections and remove the mono_cli_rva_map () function.
26296
26297 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26298
26299         * debug-mono-symfile.c: fix one more endianess issue, from a patch
26300         by Geoff Norton (<gnorton@customerdna.com>).
26301
26302 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26303
26304         * class.c: fix class loads for pointer types (typeof(int) !=
26305         typeof(int*)).
26306
26307 2004-07-27  Martin Baulig  <martin@ximian.com>
26308
26309         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
26310         reading the debugging information from an external ".mdb" file.
26311
26312 2004-07-24  Martin Baulig  <martin@ximian.com>
26313
26314         * reflection.c (mono_image_get_type_info): Only write a class
26315         layout entry if we actually have a size or a packing size.
26316
26317 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26318
26319         * reflection.c (type_get_fully_qualified_name): 
26320         insert cast to get type checking of ?: with non-gcc compilers
26321
26322 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26323
26324         * rand.c: use g_getenv for both lookups of
26325         MONO_EGD_SOCKET
26326
26327 2004-07-17  Martin Baulig  <martin@ximian.com>
26328
26329         * reflection.c (mono_reflection_bind_generic_method_parameters):
26330         Set `gmethod->reflection_info'.
26331
26332 2004-07-17  Martin Baulig  <martin@ximian.com>
26333
26334         * class.c (mono_class_create_from_typedef): Insert the newly
26335         created class into the hash table before computing the interfaces
26336         since we could be called recursively.
26337
26338 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
26339
26340         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
26341         function to implement stelem.ref in managed code
26342         * class-internals.h, debug-helpers.c: a new wrapper type
26343         for the above.
26344
26345 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26346
26347         * gc.c: allow GC handles to work even when no GC is compiled in.
26348         Fix part of bug #61134 (GetAddrOfPinnedObject).
26349
26350 2004-07-13  Peter Williams  <peter@newton.cx>
26351  
26352         * process.c (complete_path): Make sure we don't attempt to execute
26353         directories.
26354  
26355 2004-07-12  Geoff Norton <gnorton@customerdna.com>
26356
26357         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
26358           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
26359           and will add/subtract the hour if needed
26360
26361 2004-07-12  Martin Baulig  <martin@ximian.com>
26362
26363         * reflection.c (mono_field_get_object): If we have
26364         `field->generic_info', take the attributes from
26365         `field->generic_info->generic_type'.    
26366
26367 2004-07-12  Martin Baulig  <martin@ximian.com>
26368
26369         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
26370         This function must be called before initializing the runtime.
26371         (mono_debug_init_1): New function; call this after initializing
26372         the runtime, but before loading the assembly.  It tells the
26373         debugger to load corlib and the builtin types.
26374
26375         * mono-debug-debugger.c: Did some larger changes in the debugging
26376         code; support recursive class declarations, make sure we actually
26377         add all classes.
26378
26379 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26380
26381         * debug-helpers.c: undo my previous patch and fixed the real issue in
26382         ../mini/exceptions-x86.c
26383
26384 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26385
26386         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
26387         when no HOME env. variable was set and a NullRef was thrown in a .cctor
26388         called from other .cctors.
26389
26390 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
26391
26392         * loader.c: Removed the mono_loader_wine_init hack now that we are
26393         doing a managed version of Windows.Forms.
26394
26395 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
26396
26397         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
26398         threadpool.c, threads.c: remove static data from rootset.
26399
26400 2004-07-09  Dick Porter  <dick@ximian.com>
26401
26402         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
26403         Don't do any more processing if the matched length was 0.  It was
26404         increasing the size of the string before.  Fixes bug 61167.
26405
26406 2004-07-09  Dick Porter  <dick@ximian.com>
26407
26408         * socket-io.h:
26409         * socket-io.c
26410         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
26411         Add support for SO_PEERCRED if its available.
26412
26413 2004-07-09  Peter Bartok <pbartok@novell.com>
26414         * loader.c: winelib.exe.so error message is now only displayed if
26415         MONO_DEBUG is set. To help us avoid questions when people are trying
26416         out the new Managed.Windows.Forms.
26417
26418 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
26419
26420         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
26421         for isinst and castclass wrappers.
26422
26423         * class-internals.h icall.c: Move registration and lookup of JIT icalls
26424         to libmetadata from the JIT, so they could be used by the marshalling
26425         code and the interpreter.
26426
26427         * marshal.c: Register marshalling related JIT icalls here instead of
26428         in mini.c. Use CEE_MONO_ICALL instead of the family of 
26429         CEE_MONO_PROC<x> opcodes to call marshalling functions.
26430
26431         * metadata.h: Remove unneeded marshalling conversions.
26432
26433         * opcodes.c: Update for new opcodes.
26434         
26435 2004-07-08  Martin Baulig  <martin@ximian.com>
26436
26437         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
26438         (mono_debug_get_domain_data): Make this function static.
26439
26440 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26441
26442         * gc.c, object.h: add nice GC handle API for embedders.
26443
26444 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
26445
26446         * reflection.c: more changes for the new api
26447
26448         * object.c: When we reflect on a field w/ a constant value, it
26449         will not have a memory location, so we must access metadata. Also,
26450         allow easier reading of strings so that we can read them from
26451         the constant data.
26452
26453         * class.c (mono_class_layout_fields): no need for literal fields here.
26454
26455         * class-internals.h: api changes for const fields
26456
26457         * icall.c (ves_icall_get_enum_info): use new apis for const fields
26458
26459 2004-07-06  Martin Baulig  <martin@ximian.com>
26460
26461         * mono-debug.h: Increment version number to 44.
26462
26463         * mono-debug.c (mono_debug_add_wrapper): The second argument is
26464         now a gpointer, rewrote this whole method.
26465
26466         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
26467         function.  Add information about the wrapper in a new "misc table".
26468
26469         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
26470         for the new misc table.
26471
26472 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
26473
26474         * metadata-internals.h image.c: Add a cache for helper signatures.
26475
26476         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
26477
26478 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
26479
26480         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
26481         delegates from a delegate. Fixes #61033.
26482         
26483         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
26484         marshalling of stringbuilder arrays. Fixes #59900.
26485
26486 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
26487
26488         * icall.c: Add EnumBuilder:setup_enum_type icall.
26489
26490 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
26491
26492         * icall.c: Added a new icall for the property version of
26493         OffsetOfStringData.
26494
26495 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
26496
26497         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
26498         it has a constant size across platforms.
26499
26500         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
26501         stack trace.
26502
26503 2004-06-29  Martin Baulig  <martin@ximian.com>
26504
26505         * mono-debug.c (mono_debug_add_method): Protect the whole function
26506         in mono_debugger_lock(), not just parts of it.
26507
26508 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26509
26510         * reflection.c: make sure padding bytes in heaps are zeroed.
26511
26512 2004-06-24  David Waite  <mass@akuma.org>
26513
26514         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
26515         image.c, loader.c, locales.c, marshal.c, metadata.c,
26516         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
26517         string-icalls.c, threads.c: change to C90-style comments from C99 /
26518         C++ -style
26519
26520 2004-06-24  Dick Porter  <dick@ximian.com>
26521
26522         * threads.c
26523         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
26524         return createdNew.  Fixes bug 60412.
26525
26526         * threads-types.h: 
26527         * icall.c: Add createdNew parameter to CreateMutex icall
26528
26529 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26530
26531         * reflection.c, object-internals.h: save default value in params.
26532
26533 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26534
26535         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
26536         no need to build a new path combining that with the application base.
26537         Fixes bug #60442.
26538
26539 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
26540
26541         * reflection.c: fixed minor standard compliance issues.
26542
26543 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26544
26545         * reflection.c: fixed issue with encoding some custom attributes
26546         (arrays in properties and fields, bug #60411).
26547
26548 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26549
26550         * reflection.c: fix start address when copying the public key token.
26551
26552 2004-06-23  Martin Baulig  <martin@ximian.com>
26553
26554         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
26555         the `exc' object in a static object to put it into the GC's root set.
26556
26557 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
26558
26559         * reflection.c: make mono_reflection_setup_internal_class ()
26560         callable a second time to setup a new parent class.
26561
26562 2004-06-23  Dick Porter  <dick@ximian.com>
26563
26564         * threads.c: Check for WAIT_IO_COMPLETION return values.
26565
26566 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
26567
26568         * appdomain.c: Removed the g_free on the public key token. Now copy 
26569         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
26570         * assembly.c: Added public key token string value when loading 
26571         assemblies. Fix bug #60439.
26572         * icall.c: Added missing informations (like public key) in 
26573         GetReferencedAssemblies. Fix #60519.
26574         * image.h: Changed definition for public key token from const char*
26575         public_tok_value to guchar public_key_token [17];
26576         * reflection.c: Updated for changes to public key token.
26577
26578 2004-06-22  Lluis Sanchez Gual
26579
26580         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
26581         for the field in base classes.
26582
26583 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26584
26585         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
26586         mark headers as not supported, they are installed only for use by the
26587         debugger.
26588
26589 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
26590
26591         * *.c, *.h: avoid namespace pollution in public headers.
26592
26593 2004-06-21  Martin Baulig  <martin@ximian.com>
26594
26595         * exception.c (mono_get_exception_security): It's in
26596         "System.Security", not in "System".
26597
26598         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
26599         the exception classes.
26600
26601 2004-06-21  Martin Baulig  <martin@ximian.com>
26602
26603         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
26604         Protect the exception object from being finalized.
26605
26606 2004-06-21  Martin Baulig  <martin@ximian.com>
26607
26608         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
26609         public function.
26610
26611 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
26612
26613         * reflection.c: Load the assembly in mono_reflection_type_from_name,
26614         if it was not loaded before. Fix parts of #60439.
26615
26616 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
26617
26618         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
26619         code that was broken since Ben's change: wrappers are now
26620         dependent on the method signature only again.
26621
26622 2004-06-21  Martin Baulig  <martin@ximian.com>
26623
26624         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
26625         added interface support.
26626
26627 2004-06-21  Martin Baulig  <martin@ximian.com>
26628
26629         * class.c (mono_vtable_get_static_field_data): New public method.
26630
26631 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
26632
26633         * filewatcher.c : Windows build fix to be compliant with API changes.
26634
26635 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26636
26637         * class.h, class.c: more accessors.
26638         * metadata.h, metadata.c: prepare for hiding MonoType and
26639         MonoMethodSignature: people should use the accessors from now on
26640         outside of the tree.
26641
26642 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26643
26644         * *.c, *.h: more API cleanups.
26645
26646 2004-06-18  Jackson Harper  <jackson@ximian.com>
26647
26648         * assembly.c: Trace loading assemblies.
26649         * loader.c: Trace loading native libraries.
26650         * mono-config.c: Trace loading config files.
26651         
26652 2004-06-18  Dick Porter  <dick@ximian.com>
26653
26654         * locales.c: Tell ICU the lengths of strings, it can cope with
26655         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
26656
26657 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
26658
26659         * image.c: swapped name/filename;
26660
26661 2004-06-18  Martin Baulig  <martin@ximian.com>
26662
26663         * mono-debug-debugger.c (write_class): Write the parent class at
26664         the end of the header.
26665
26666 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26667
26668         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
26669
26670 2004-06-17  Raja R Harinath  <rharinath@novell.com>
26671
26672         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
26673         (bundle_obj): New conditional define.
26674         (BUILT_SOURCES): Remove.
26675         ($(bundle_srcs)): Make parallel-make safe.
26676         (libmonoruntime_la_LIBADD): Make unconditional.
26677         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
26678         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
26679
26680 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
26681
26682         * culture-info-tables.h: It was inconsistent with the latest
26683           supp info files.
26684
26685 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
26686
26687         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
26688         be loaded.
26689
26690         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
26691         with gcc 2.95.
26692
26693 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26694
26695         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
26696         cleaned up public header threads.h.
26697
26698 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26699
26700         * Makefile.am, *.c, *.h: more API cleanups.
26701
26702 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
26703
26704         * Makefile.am: removed monosn from compilation.
26705         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
26706         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
26707         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
26708         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
26709         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
26710         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
26711
26712 2004-06-15  Jackson Harper  <jackson@ximian.com>
26713
26714         * assembly.c: Make locales lower case when searching the GAC for
26715         assemblies. gacutil will always make locales lowercase when
26716         installing so this effectively makes them case insensitive.
26717         
26718 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
26719
26720         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
26721         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
26722           parameter which allows to choose whether the wait can be interrupted or 
26723           not. Also added the method mono_monitor_enter(), which locks the monitor
26724           using an infinite wait and without allowing interruption.
26725           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
26726           interrupted.
26727         * object.h: Added new fields in MonoThread. suspend_event holds the event
26728           used to susped/resume the thread. synch_lock is the lock object to use for
26729           modifying the thread state.
26730         * threads.c: Use the new synch_lock object for locking, instead of "this",
26731           which can generate deadlocks.
26732           Moved thread state change in Thread.Sleep and Thread.Join from managed
26733           to unmanaged code. This avoids a deadlock when the thread was suspended
26734           just after acquiring the thread lock.
26735           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
26736           Implemented Thread.Suspend using an event instead of ThreadSuspend,
26737           which is not fully implemented in the io-layer.
26738         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
26739
26740 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
26741
26742         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
26743         threads-types.h: more API cleanups.
26744
26745 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26746
26747         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
26748         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
26749         threadpool.c, threads.c: first pass at the exported API cleanup.
26750
26751 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
26752
26753         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
26754
26755 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26756
26757         * icall.c: added internalGetHome.
26758
26759 2004-06-14  Dick Porter  <dick@ximian.com>
26760
26761         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
26762         possible to return successfully when '.' or '..' were the only
26763         entries in a directory, but were skipped.  The MonoIOStat was not
26764         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
26765         Fixes bug 59574.
26766
26767 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26768
26769         * reflection.c: make binaries run on .Net 1.1 by default.
26770
26771 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
26772
26773         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
26774
26775 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
26776
26777         * marshal.c: keep track of struct size with explicit layout
26778         (bug #59979).
26779
26780 2004-06-12  Martin Baulig  <martin@ximian.com>
26781
26782         * mono-debug-debugger.c: Comment out a debugging g_message().
26783
26784 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26785
26786         * reflection.c, reflection.h: do not free custom attrs that are cached.
26787         * icall.c: use braces to make code clearer.
26788
26789 2004-06-11  Martin Baulig  <martin@ximian.com>
26790
26791         * class.h (MonoInflatedField): New type.
26792         (MonoClassField): Replaced `MonoType *generic_type' with
26793         `MonoInflatedField *generic_info'.
26794
26795         * icall.c
26796         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
26797
26798 2004-06-11  Martin Baulig  <martin@ximian.com>
26799
26800         * reflection.c (mono_image_create_method_token): Correctly encode
26801         varargs methods.
26802
26803 2004-06-11  Martin Baulig  <martin@ximian.com>
26804
26805         * metadata.c (mono_metadata_parse_method_signature): When parsing
26806         a MethodDef which has VarArgs, also set sentinelpos if we don't
26807         have any parameters.
26808
26809 2004-06-11  Martin Baulig  <martin@ximian.com>
26810
26811         * verify.c (mono_method_verify): In CEE_CALL, use
26812         mono_method_get_signature() to get the method's signature, unless
26813         we're a PInvoke method.
26814
26815 2004-06-10  Jackson Harper  <jackson@ximian.com>
26816
26817         * assembly.c: Use <path>/lib/mono/gac for the extra paths
26818         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
26819         logical name as the supplied path is just a prefix to the gac not
26820         the direct path to it.
26821         
26822 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
26823
26824         * reflection.c: make the token for a created method match
26825         the token of the MethodBuilder it was created from
26826         (IKVM requires this behaviour now).
26827
26828 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
26829
26830         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
26831         reflection.c, socket-io.c: leak fixes.
26832
26833 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
26834
26835         * icall.c: handle sentinel pos in vararg methods in position different
26836         from 0.
26837
26838 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26839
26840         * culture-info-tables.h: freshly generated.
26841
26842 2004-06-09  Martin Baulig  <martin@ximian.com>
26843
26844         * loader.c (mono_get_method_constrained): Call `mono_class_init
26845         (constrained_class)'.   
26846
26847 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
26848
26849         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
26850         any methods. Fixes #59629.
26851
26852 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26853
26854         * culture-info-tables.h: reflecting locale-builder updates.
26855
26856 2004-06-08  Dick Porter  <dick@ximian.com>
26857
26858         * object.h:
26859         * locales.c: Fixed compile warnings, including a real bug in
26860         CompareInfo_internal_compare.
26861         
26862 2004-06-08  Dick Porter  <dick@ximian.com>
26863
26864         * locales.c
26865         (ves_icall_System_Globalization_CompareInfo_internal_index):
26866         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26867         Double-check the resuls of usearches, because ICU currently
26868         ignores most of the collator settings here.  Fixes bug 59720.
26869         
26870 2004-06-08  Dick Porter  <dick@ximian.com>
26871
26872         * locales.c
26873         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26874         Fix memory leak and segfault-causing typo.  No idea how this one
26875         lasted so long without being noticed.
26876
26877 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
26878
26879         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
26880         any methods. Fixes #59629.
26881
26882 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26883
26884         * assembly.c:
26885         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
26886         own the critical section before). Removed dead code (that's done
26887         in the preload hook).
26888
26889         (mono_assembly_load_with_partial_name): call the preload hook.
26890
26891 2004-06-08  Martin Baulig  <martin@ximian.com>
26892
26893         * metadata.c (mono_metadata_signature_alloc): Default
26894         `sentinelpos' to -1.
26895
26896         * reflection.c (mono_image_get_array_token): Likewise.
26897
26898 2004-06-08  Martin Baulig  <martin@ximian.com>
26899
26900         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
26901
26902         * metadata.c (mono_metadata_parse_method_signature): When parsing
26903         a MethodDef which has VarArgs, set sentinelpos.
26904
26905         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
26906         `gint16' since we're using -1 for non-varargs methods.
26907
26908         * reflection.c
26909         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
26910         (method_encode_signature): Added varargs support.
26911         (method_builder_encode_signature): Likewise.
26912         (mono_image_get_varargs_method_token): New static method.
26913         (mono_image_create_method_token): New public method; this is
26914         called via an icall instead of mono_image_create_token() when
26915         calling a varargs method.       
26916
26917 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
26918
26919         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
26920
26921 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26922
26923         * culture-info-tables.h : Reflecting the latest locale-builder that
26924           fixed empty array representation ({} to {0}).
26925
26926 2004-06-07  Jackson Harper  <jackson@ximian.com>
26927
26928         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
26929         looking up extra gac paths. This allows MONO_GAC_PATH to act
26930         exactly like a prefix.
26931         
26932 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26933
26934         * reflection.c (mono_reflection_type_from_name): Make a copy of the
26935         type name before modifying it. Fixes #59405.
26936
26937 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26938
26939         * culture-info.h: added fields for "all datetime patterns".
26940         * locales.c: (  ves_icall_System_Globalization_CultureInfo
26941           _construct_datetime_format ()): fill xxx_patterns fields.
26942         * object.h: added fields for "all datetime patterns" to
26943           MonoDateTimeFormatInfo.
26944         * culture-info-tables.h: reflecting locale-builder updates.
26945
26946 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26947
26948         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
26949         the event has no add and remove methods. Fixes #59629.
26950
26951 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
26952
26953         * object.c: Fixed possible integer overflow when allocating large
26954         strings.
26955
26956 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26957
26958         * culture-info-tables.h: reflecting locale-builder updates.
26959
26960 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26961
26962         * culture-info-tables.h: reflecting locale-builder updates.
26963
26964 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
26965
26966         * culture-info-tables.h: reflecting locale-builder updates.
26967
26968 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
26969
26970         * threads.c: Made Thread.Sleep abortable.
26971
26972 2004-06-02  Martin Baulig  <martin@ximian.com>
26973
26974         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
26975
26976         * debug-mono-symfile.h: Bumped symbol file version number to 37.
26977
26978 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
26979
26980         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
26981
26982 2004-05-30  Jackson Harper  <jackson@ximian.com>
26983
26984         * reflection.c: Do not hardcode assembly versions or public key
26985         tokens anymore. All of this except the corlib section was dead
26986         code anyways.
26987         
26988 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
26989
26990         * object.c (mono_runtime_invoke_array): Automatically create boxed
26991         objects for byref valuetypes if needed. Fixes #59300.
26992         
26993         * object.c (mono_method_return_message_restore): Handle 
26994         MONO_TYPE_OBJECT as well.
26995
26996 2004-05-28  Jackson Harper  <jackson@ximian.com>
26997
26998         * reflection.c: The modified type encoding was causing build
26999         problems. Reverted for now.
27000         
27001 2004-05-28  Jackson Harper  <jackson@ximian.com>
27002
27003         * reflection.c/h: Take an assembly ref so that we dont create
27004         fully qualified names when encoding types in the same assembly as
27005         the custom attribute being emitted.
27006         * appdomain.c: Increment version number.
27007         
27008 2004-05-26  Duncan Mak  <duncan@ximian.com>
27009
27010         * icall.c
27011         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
27012         Set the full version number (major, minor, build, revision).
27013
27014 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
27015
27016         * marshal.c (emit_struct_conv): increment src/dst after blit
27017         (mono_marshal_get_managed_wrapper,
27018         mono_marshal_get_native_wrapper): make sure we have marshalling
27019         info before marshalling params (info computation affects
27020         blittable)
27021
27022         * class.c (class_compute_field_layout): correctly deal with
27023         blittable
27024         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
27025         value types (as per what windows dows by default)
27026         (mono_class_setup_mono_type): System.ValueType is blittable
27027         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
27028         blittable
27029
27030         * marshal.c (mono_marshal_load_type_info): flag types  as
27031         non-blittable if the native layout doesn't match the managed
27032         layout
27033
27034 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27035
27036         * appdomain.c: don't add stuff in the private search path that is
27037         above the application base. If application base is not set, there's
27038         no private search path.
27039
27040 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
27041
27042         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
27043         byref struct arguments in native->managed marshalling.
27044
27045 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
27046
27047         * marshal.c (mono_marshal_get_runtime_invoke): correctly
27048         cache methods using signature (special case for methods
27049         that are value type or string class)
27050         
27051         * image.c (mono_image_close): clean up allocated GSList's
27052         in runtime_invoke_cache.
27053
27054 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27055
27056         * mono-config.c: set the correct path for mono_cfg_dir on windows when
27057         there's no MONO_CFG_DIR environment variable defined.
27058
27059 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27060
27061         * threads.c: windows version must be >= 0x0500 to include OpenThread.
27062
27063 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
27064
27065         * threadpool.c: Really wait for 500ms after the async call, even if the wait
27066           is interrumped.
27067         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
27068           before waiting for it, and call CloseHandle after the wait to unref it.
27069           This will make sure that handles are not disposed too early.
27070
27071 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27072
27073         * appdomain.c:
27074         * appdomain.h:
27075         * icall.c: removed
27076         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
27077         needed now.
27078
27079         * object.c: se the application_base only for the domain that runs
27080         Main. Fixes bug #59216,
27081
27082 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27083
27084         * appdomain.c:
27085         * object.c: only the domain in which Main is run have
27086         SetupInformation.ConfigurationFile set, so moved a few lines from
27087         appdomain.c to object.c.
27088
27089 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27090
27091         * appdomain.c: we tried to load [name].(dll|exe), but according
27092         to bug #57710, we must also try [culture]/[name].(dll|exe) and
27093         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
27094         There's a test case attached to bug #58922.
27095
27096 2004-05-27  Dick Porter  <dick@ximian.com>
27097
27098         * icall.c:
27099         * file-io.c: Implemented icalls for locking and unlocking regions
27100         in a file.
27101         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
27102         FALSE on error (fixes both compiler warning and real bug.)
27103
27104 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
27105
27106         * culture-info-tables.h: reflecting locale-builder updates.
27107
27108           (Added missing ChangeLog entry for 05/26)
27109
27110 2004-05-27  Jackson Harper  <jackson@ximian.com>
27111
27112         * locales.c: Fix some cut and paste errors.
27113         
27114 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27115
27116         * mono-config.c: set the correct path for config. directory on windows.
27117
27118 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27119
27120         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
27121           on win32.
27122
27123 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27124
27125         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
27126         from pinvoke functions.
27127         
27128         * marshal.c (mono_ftnptr_to_delegate): Implement this.
27129
27130 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27131
27132         * culture-info-tables.h: reflecting locale-builder updates.
27133
27134 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27135
27136         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
27137         #59086.
27138
27139 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
27140
27141         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
27142         * icall.c: Modified icalls for RNG.
27143         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
27144         Windows (CryptoAPI).
27145
27146 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27147
27148         * locales.c: Fix build.
27149
27150 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
27151
27152         * culture-info-tables.h: reflecting locale-builder updates.
27153
27154 2004-05-25  Jackson Harper  <jackson@ximian.com>
27155
27156         * locales.c: When creating the current culture use the $LANGs
27157         specific culture. So DateTimeFormat and NumberFormat entries are created.
27158         
27159 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27160
27161         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
27162         a char array as parameter.
27163
27164 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
27165
27166         * image.c: In mono_image_open(), always use an absolute path name to
27167           look for already loaded images.
27168
27169 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
27170
27171         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
27172         missing in the windows build (like older cygwin include files).
27173
27174 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
27175
27176         * icall.c: Fixed check for possible integer overflow in Buffer_
27177         BlockCopy icall. Replaced comments style // by /* */.
27178
27179 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
27180
27181         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
27182         
27183         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
27184         check after MONO_VTADDR. Fixes pinvoke2.exe.
27185
27186         * marshal.h marshal.c metadata.h: Add beginnings of support for
27187         ftnptr -> delegate marshalling.
27188
27189 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
27190
27191         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
27192         * threads.c: Fix warnings.
27193
27194 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
27195
27196         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
27197         * icall.c: Registered icalls for Suspend and Resume.
27198         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
27199           Thread.Abort.
27200         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
27201         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
27202         * process.c: Use WaitForSingleObjectEx.
27203         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
27204           checkpoints.
27205         * threads.c, threads.h: Make use of new Ex wait methods. Improved
27206           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
27207           for Suspend and Resume. Added new mono_thread_stop, used for stoping
27208           background threads. Added basic support for Abort in Windows.
27209           Start new threads using a managed delegate invoke wrapper. This wrapper
27210           has an interruption checkpoint that is needed since an interruption
27211           can be requested before the thread leaves the unmanaged code that starts 
27212           the thread.
27213         * marshal.c: Added interruption checkpoint after every native call, and
27214           also before managed calls for wrappers called from unmanaged code to
27215           go into managed code.
27216         * object.h: Added new field in MonoThread to keep track of interruption
27217           requests.
27218
27219 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
27220
27221         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
27222         calls.
27223
27224 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27225
27226         * appdomain.c:
27227         * assembly.c:
27228         * gc.c:
27229         * locales.c:
27230         * mono-config.c:
27231         * rand.c: getenv -> g_getenv (windows!)
27232
27233         * process.c: complete_path is also used on non-windows platforms.
27234
27235 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27236
27237         * icall.c: new signature for Process_Start.
27238
27239         * process.[ch]: new signature for Process_Start. If we're on windows
27240         and UseShellExecute is false, we have to search for the program by
27241         ourselves if we don't get a full path.
27242
27243 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
27244
27245         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
27246         marshalling and call CleanUpNativeData if needed. Fixes #58646.
27247
27248 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27249
27250         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
27251         Fixes bug #58373.
27252
27253 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27254
27255         * process.c: use double quotes to quote program name and arguments on
27256         windows. Fixes bug #58575.
27257
27258 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27259
27260         * file-io.c: don't return "." and ".." when using windows Find*File.
27261
27262 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
27263
27264         * marshal.c: Don't pass wrappers to message init because method 
27265         addressed used to lookup metadata. part of remoting[2|3] fix.
27266
27267 2004-05-15  Jackson Harper  <jackson@ximian.com>
27268
27269         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
27270         path is essentially the same as MONO_PATH except that it points to
27271         GACs instead of lib directories.
27272         * loader.h: The user gac is gone so we dont need function to
27273         enable/disable it.
27274         * mono-config.c: user gac option is now gone.
27275         
27276 2004-05-15  Jackson Harper  <jackson@ximian.com>
27277
27278         * culture-info.h: Make defines more consistent, add calendar data
27279         to the culture info table.
27280         * culture-info-tables.h: Add basic calendar data. Basically
27281         everyone gets default gregorian until all the data is
27282         updated.
27283         * locales.c: Use the new consistent defines. Set calendar data for
27284         culture info objects.
27285         * object.h: add a field for calendar data to CultureInfo
27286         
27287 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
27288
27289         * image.c: image->runtime_invoke_cache is keyed on signatures now.
27290         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
27291         a signature.
27292         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
27293         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
27294         an extra param that is the pointer of the method to invoke. The IL for
27295         the invoke method is no longer specific to the method, but to the
27296         signature of the method. Thus, we can share the same code for multiple
27297         methods. This reduces the number of methods that have to be compiled.
27298
27299 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
27300
27301         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
27302
27303         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27304
27305         * icall.c: Optimize Buffer.BlockCopy.
27306
27307 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27308
27309         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
27310         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
27311         quote). Changed them to "MMMM yyyy".
27312
27313 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
27314
27315         * rand.c
27316         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
27317
27318 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
27319
27320         * reflection.h: Updated after changes to managed structures.
27321
27322         * appdomain.c: Bump corlib version.
27323
27324 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27325
27326         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
27327         windows.
27328
27329 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27330
27331         * Makefile.am: link to ../os/libmonoos.la on windows.
27332
27333         * assembly.c:
27334                 -If MONO_DEBUG, warn about non-existing directories in
27335                 MONO_PATH.
27336                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
27337                 compile time variable.
27338                 -Removed init_default_path and call mono_set_rootdir from
27339                 libmonoos.a instead (windows only).
27340
27341         * assembly.h: declare mono_assembly_getrootdir().
27342
27343         * domain.c:
27344         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
27345
27346         * loader.c: s/getenv/g_getenv/
27347
27348 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
27349
27350         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
27351
27352         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
27353
27354         * metadata.h: Add new marshalling conversions.
27355
27356         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
27357         function.
27358
27359         * reflection.c (mono_reflection_get_type): Lookup the type in all
27360         modules of a multi-module assembly. Fixes #58291.
27361
27362 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
27363
27364         * threads.c: Before aborting a background, set the StopRequested
27365         state.  This avoids throwing the Abort exception.
27366         In mono_thread_manage, don't continue with the shutdown until all
27367         aborted threads have actually stopped.
27368
27369 2004-05-10  Jackson Harper  <jackson@ximian.com>
27370
27371         * locales.c: Remove the modifier from culture names.
27372         
27373 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27374
27375         * Makefile.am: monosn is not installed any more. It has been deprecated
27376         in favor of sn.
27377
27378 2004-05-07  Jackson Harper  <jackson@ximian.com>
27379
27380         * locales.c
27381         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
27382         Fix array construction, add bailout if the length is 0.
27383
27384 2004-05-07  Dick Porter  <dick@ximian.com>
27385
27386         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
27387         machine doesn't have a DNS entry.  Patch by Urs Muff
27388         (umuff@quark.com), fixes bug 57928.
27389
27390 2004-05-06  Jackson Harper  <jackson@ximian.com>
27391
27392         * reflection.c: Handle null PublicTokens properly. alloc mem for
27393         assembly names culture so we dont crash when freeing it.
27394         
27395 2004-05-06  Jackson Harper  <jackson@ximian.com>
27396
27397         * assembly.c: Check the usergac when loading with partial names.
27398         
27399 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27400
27401         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
27402         does nothing for now (not required for Linux/Windows) but the class
27403         library can call it (and a newer or modified runtime could need it).
27404         * icall.c: Registred icall.
27405
27406 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27407
27408         * loader.c: prints a message on module loading error we set MONO_DEBUG
27409         environment variable.
27410
27411 2004-05-05  Jackson Harper  <jackson@ximian.com>
27412
27413         * appdomain.c: Handle PublicKeyToken=null properly.
27414         
27415 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27416
27417         * environment.c|h: Added icall ves_icall_System_Environment_
27418         GetOSVersionString to get the current OS version as a string.
27419         * icall.c: Registred icall.
27420
27421 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
27422
27423         * object.c: in mono_object_get_virtual_method(), take into account that
27424         non-virtual methods don't have a slot in the vtable. Check needed when
27425         the object is a proxy.
27426
27427 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
27428
27429         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
27430         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
27431
27432         * object.c (mono_class_compute_gc_descriptor): Fix warning.
27433
27434         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
27435         passed when a valuetype is expected.
27436
27437         * object.c (mono_unhandled_exception): Only set the exit code if the
27438         exception happens in the main thread. Fixes thread5.exe.
27439
27440         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
27441         invalid names. Fixes #58047.
27442
27443 2004-05-03  Jackson Harper  <jackson@ximian.com>
27444
27445         * assembly.c: This line was committed accidently and is unneeded.
27446         
27447 2004-05-03  Jackson Harper  <jackson@ximian.com>
27448
27449         * icall.c: Add new icall for Assembly::LoadWithPartialName
27450         * assembly.c/.h: new function that probes the GAC to load partial
27451         assembly names by Paolo Molaro.
27452         
27453 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27454
27455         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
27456         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
27457         (type_get_fully_qualified_name): Added PublicKeyToken when building a
27458         full type name.
27459
27460 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27461
27462         * appdomain.c: fixed check for 'neutral' culture and removed warning.
27463         * reflection.c: fix bug when parsing a full type name and Version is not
27464         the last thing in the string.
27465
27466 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
27467
27468         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
27469         crashes when it is freed.
27470
27471 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27472
27473         * assembly.c: print the compat warning to stderr.
27474
27475 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
27476
27477         * assembly.c (mono_assembly_load_references): Add a compatibility
27478         hack to run old applications that might be still referencing the
27479         3300-based assemblies, only do this for System.xxx.
27480
27481 2004-05-01  Jackson Harper  <jackson@ximian.com>
27482
27483         * appdomain.c: If the culture is neutral we set it to "".
27484         
27485 2004-04-29  Jackson Harper  <jackson@ximian.com>
27486
27487         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
27488
27489 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
27490  
27491         * string-icalls.c: added low overhead function for copying chars
27492         * icall.c: added needed icall for the above function
27493  
27494 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27495
27496         * icall.c: fix return value of get_global_assembly_cache.  Implemented
27497         Environment.GetLogicalDrives.
27498
27499 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
27500
27501         * rand.c: try and talk to egd or prngd
27502         for random bytes if opening devices fail.
27503
27504 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
27505
27506         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
27507         alignment for the type using the native alignment of its members 
27508         instead of using klass->min_align.
27509
27510         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
27511
27512 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27513
27514         * file-io.c:
27515         * socket-io.c: added check for sys/aio.h.
27516
27517 2004-04-28  Dick Porter  <dick@ximian.com>
27518
27519         * threads.c: Don't abort a thread thats already aborting, when
27520         terminating everything.
27521
27522 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27523
27524         * icall.c: added 2 new async calls for Socket.
27525
27526         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
27527         IO on *nix systems.
27528
27529         * threadpool.c: removed unused variable.
27530
27531 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
27532
27533         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
27534
27535 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27536
27537         * locales.c: put back string_invariant_tolower () and
27538         string_invariant_toupper ().
27539
27540 2004-04-26 David Waite <mass@akuma.org>
27541
27542         * file-io.h:
27543         * socket-io.h:
27544         * threads.h:
27545         * unicode.h: remove comma from end of enumeration declarations
27546
27547 2004-04-26 David Waite <mass@akuma.org>
27548
27549         * debug-mono-symfile.h:
27550         * decimal.c:
27551         * mono_debug.h:
27552         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
27553
27554
27555 2004-04-26  Jackson Harper  <jackson@ximian.com>
27556
27557         * appdomain.c: Increment version number.
27558         
27559 2004-04-26  Jackson Harper  <jackson@ximian.com>
27560
27561         * appdomain.c: Set assembly references public token value when
27562         PublicKeyToken is specified, not the hash_value. Free public token
27563         values when free assembly name data. Previously the public key
27564         token was hex decoded, however we are using hex encoded public key
27565         tokens, so this is not neccasary.
27566         * assembly.c: Lookup assemblies in the gac if their public token
27567         value is set. Add function to allow enabling user gac
27568         lookups. Specify whether or not the assembly was loaded from the
27569         GAC. Compare full assembly names when checking the cache for
27570         assemblies (Temporarily disabled see comment in code). Remove
27571         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
27572         specifies trace-loader they get extra info to stdout on the
27573         loading of assemblies.
27574         * image.h: Add a field for an assembly references public token
27575         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
27576         whether an assembly has been loaded from the GAC.
27577         * image.c: Remove a corlib -> mscorlib name mapping.
27578         * loader.h: Add function to enable/disable the user gac.
27579         * mono-config.c: Check if the usergac is enabled in the config
27580         file.
27581         * icall.c: New icall to determine whether or not an assembly has
27582         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
27583         * tabldefs.h: Add constant for assemblyref flag that specifies a
27584         full public key is used instead of a public token.
27585         * reflection.c: Remove mscorlib -> corlib mappings. Set
27586         PublicTokenValue instead of hash value. This value is a hex
27587         string so it does not need to be expanded.
27588
27589 2004-04-26  Martin Baulig  <martin@ximian.com>
27590
27591         * mono-debug-debugger.c (mono_debugger_initialize): Set
27592         `mono_debugger_initialized' before calling mono_debug_lock().
27593
27594 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
27595
27596         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
27597           InternalToUpper/InternalToLower.
27598         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
27599           removed invariant culture shortcut.  This is now done in managed code.
27600         * locales.c: (string_invariant_toupper/tolower) removed.
27601
27602 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27603
27604         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
27605         Added Poll internal call.
27606
27607         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
27608         call for Poll. Select was too heavy for polling a single socket.
27609
27610         * threadpool.[ch]: added mono_threadpool_cleanup.
27611         * threads.c: use it. Don't use Thread_Abort on windows.
27612
27613 2004-04-23  Martin Baulig  <martin@ximian.com>
27614
27615         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
27616
27617 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
27618
27619         * icall.c: Registred new icalls for key pair protection and added an
27620         icall for Environment.GetFolderPath on Windows.
27621         * security.c|h: Added new icalls for key pair protection.
27622
27623 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27624
27625         * socket-io.c: don't display the non-supported family warning for known
27626         families. Now this is not displayed on windows when checking support
27627         for IPv4/IPv6.
27628
27629 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27630
27631         * class.c: don't display the layout warning for static fields.
27632
27633 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
27634
27635         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
27636         * locales.c, locales.h: Added new icalls for culture-specific
27637         Char.ToLower and Char.ToUpper.
27638
27639 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27640
27641         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
27642         by David Waite.
27643
27644 2004-04-20  Martin Baulig  <martin@ximian.com>
27645
27646         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
27647         of the type name before passing it to mono_reflection_type_from_name().
27648
27649 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
27650
27651         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
27652         encodings here. Fixes #56965.
27653
27654 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
27655
27656         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27657         fix test on strstr result not that I can see anything that
27658         relies on the result.
27659
27660 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
27661
27662         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
27663         Fixes #57081.
27664
27665         * marshal.c (mono_marshal_get_string_encoding): New helper function.
27666
27667         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
27668         function to determine which marshalling to use for strings. Fixes
27669         #56965.
27670
27671         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
27672
27673         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
27674
27675 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
27676
27677         * icall.c: #include mono-config.h
27678
27679 2004-04-15  Jackson Harper  <jackson@ximian.com>
27680
27681         * culture-info-tables.h: Fix date formats for en-US culture.
27682         
27683 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
27684
27685         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
27686         ThreadPool.SetMinThreads.
27687         * threadpool.c: Implemented ThreadPool.GetMinThreads and
27688         ThreadPool.SetMinThreads.
27689
27690 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27691
27692         * mono-config.c: also load the .config file in the directory
27693         where the assembly was found.
27694
27695 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
27696
27697         * assembly.c: load per-assembly config files.
27698         * icall.c: decrapified code to get the config dir and moved to
27699         mono-config.c.
27700         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
27701         per-assembly config files. When doing a dll map lookup give precedence
27702         to the per-assembly data.
27703
27704 2004-04-14  Martin Baulig  <martin@ximian.com>
27705
27706         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
27707         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
27708         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
27709
27710         * mono-debugger-debugger.c: While the debugger is locked, remember
27711         whether the symbol tables have changes and send one single
27712         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
27713
27714 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
27715
27716         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
27717
27718         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
27719         function.
27720
27721         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
27722         account when marshalling string arrays. Fixes #56965.
27723
27724 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
27725
27726         * icall.c: Add new icalls mapping for security.
27727         * security.c|h: Add internal calls for WindowsIdentity,
27728         WindowsImpersonationContext and WindowsPrincipal.
27729
27730 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
27731
27732         * class.c: Added comment to ensure the System.MonoDummy class
27733         is removed when no longer necessary
27734
27735 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
27736
27737         * appdomain.c: Pass arguments to the bootstraping exceptions to
27738         minimize JITed methods at boot
27739
27740         * metadata.c (mono_exception_from_name_two_strings): Allow for the
27741         second string to be null.
27742
27743         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27744         Change the protocol to minimize the JIT methods at startup.  Now
27745         it Returns the internal codepage, if the value of "int_code_page"
27746         is 1 at entry, and we can not compute a suitable code page
27747         number, returns the code page as a string.
27748
27749 2004-04-13  Jackson Harper  <jackson@ximian.com>
27750
27751         * culture-info-tables.h: Fix number of decimal digits for all
27752         english locales.
27753
27754 2004-04-13  Jackson Harper  <jackson@ximian.com>
27755
27756         * icall.c: Clairfy out of sync error message. It is not always
27757         your corlib that is out of sync.
27758
27759 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
27760
27761         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
27762         properties when only the set accessor is overriden. Fixes #55874.
27763
27764 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
27765
27766         * assembly.c (mono_assembly_load_references): Make this thread safe.
27767         Fixes #56327.
27768
27769 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
27770
27771         * monosn.c: Add missing initialization calls.
27772
27773 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
27774
27775         * locales.c:
27776         ves_icall_System_Globalization_CultureInfo_construct_number_format
27777         Fix g_assert so it compiles on fussier compilers re int/ptr
27778         mismatch
27779
27780 2004-04-08  Dick Porter  <dick@ximian.com>
27781
27782         * socket-io.h:
27783         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
27784         53992.  Also rearrange the code so that the internal calls return
27785         an error value and exceptions are thrown from managed code.
27786
27787         * icall.c: Add type info to the socket icalls.
27788
27789 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27790
27791         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
27792         owes me a beer.
27793
27794 2004-04-07  Martin Baulig  <martin@ximian.com>
27795
27796         * class.c (mono_class_from_generic_parameter): Don't default
27797         `klass->parent' to `mono_defaults.object_type'.
27798
27799 2004-04-07  Martin Baulig  <martin@ximian.com>
27800
27801         * reflection.c (mono_reflection_initialize_generic_parameter): Set
27802         `param->pklass->reflection_info'.       
27803
27804 2004-04-07  Jackson Harper  <jackson@ximian.com>
27805
27806         * culture-info-tables.h: Fix date separator symbol.
27807         
27808 2004-04-07  Martin Baulig  <martin@ximian.com>
27809
27810         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
27811         from System.Type to System.MonoType.
27812
27813 2004-04-07  Martin Baulig  <martin@ximian.com>
27814
27815         * reflection.h
27816         (MonoReflectionGenericParam): Added `has_reference_type' and
27817         `has_value_type' fields.
27818
27819         * reflection.c (mono_image_get_generic_param_info): Encode the
27820         correct flags if we have the `class' or `struct' constraint.
27821
27822 2004-04-07  Martin Baulig  <martin@ximian.com>
27823
27824         * reflection.h
27825         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
27826
27827 2004-04-07  Jackson Harper  <jackson@ximian.com>
27828
27829         * appdomain.c: Revert extra patches, just wanted to bump the
27830         version number.
27831         
27832 2004-04-07  Jackson Harper  <jackson@ximian.com>
27833
27834         * Makefile.am: Add culture-info private headers.
27835         * icall.c: Add new icalls for contructing locales.
27836         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
27837         * locales.h: Declare new culture info construction methods.
27838         * object.h: Add new fields used to avoid the CultureMap to
27839         MonoCultureInfo.
27840         * culture-info.h: Definition of structs used in the culture info
27841         tables.
27842         * culture-info-tables.h: Autogenerated tables that contain culture
27843         info data. This file was generated with the locale-builder tool.
27844         * appdomain.c: Incement corlib version number.
27845         
27846 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
27847
27848         * appdomain.c: (mono_runtime_init) move mono_thread_init
27849         to before mono_object_new calls so critical sections
27850         are initialized before use.
27851
27852 2004-04-07  Martin Baulig  <martin@ximian.com>
27853
27854         * icall.c
27855         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
27856         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
27857         (ves_icall_MonoGenericParam_initialize): Removed.
27858         (monogenericparam_icalls): Removed.
27859         (generictypeparambuilder_icalls): Added new table for
27860         System.Reflection.Emit.GenericTypeParameterBuilder.
27861
27862         * reflection.c
27863         (mono_reflection_define_generic_parameter): Removed.
27864         (mono_reflection_initialize_generic_parameter): This is now called
27865         from GenericTypeParameterBuilder's .ctor.
27866
27867 2004-04-06  Martin Baulig  <martin@ximian.com>
27868
27869         * class.c (mono_class_init): Don't inflate nested classes in a
27870         generic instance.
27871         (mono_type_get_name_recurse): Include the generic arguments for
27872         generic instances and generic type declarations.
27873         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
27874         (_mono_class_get_instantiation_name): Removed.
27875         (mono_class_create_generic): Always use `gklass->name' as our name.
27876
27877         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
27878
27879         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
27880         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
27881         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
27882         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
27883         closed generic methods here.
27884
27885         * reflection.c
27886         (mono_reflection_generic_inst_get_nested_types): Removed.
27887         (inflate_mono_method): Copy the generic parameters from the
27888         MonoMethodHeader into out MonoGenericMethod.
27889
27890 2004-04-06  Martin Baulig  <martin@ximian.com>
27891
27892         * row-indexes.h
27893         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
27894
27895         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
27896
27897         * reflection.c (build_compressed_metadata): If we have any entries
27898         in the GenericParam, MethodSpec or GenericParamConstraint tables,
27899         set the header version to 1.1.
27900
27901 2004-04-06  Martin Baulig  <martin@ximian.com>
27902
27903         * class.c (mono_class_init): If we're a generic instance,
27904         initialize our nested classes, too.
27905         (_mono_class_get_instantiation_name): Deal with the new `!%d'
27906         suffix. 
27907
27908 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27909
27910         * process.c: quote the argument passed to the shell on windows.
27911
27912 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
27913
27914         * threads.c (mono_alloc_special_static_data): Allow this to be
27915         called during startup.
27916
27917 2004-04-02  Martin Baulig  <martin@ximian.com>
27918
27919         * icall.c
27920         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
27921
27922 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
27923
27924         * icall.c: Fix build.
27925
27926 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
27927
27928         * Makefile.am: Added security.c|h.
27929         * icall.c: Added icall for get_UserName;
27930         * security.c: New file for security related icalls. Added function
27931         get_UserName for System.Environment (fix #56144).
27932         * security.h: New. Header file for security.c
27933
27934 2004-04-02  Dick Porter  <dick@ximian.com>
27935
27936         * icall.c: Deleted the icalls that were obsoleted some time ago
27937         by the ICU string code, and which were mixed into the icall
27938         rearranging.  Fixes bug 55969.
27939
27940         * string-icalls.h: 
27941         * string-icalls.c: Deleted the code that those icalls reference.
27942
27943 2004-04-01  Martin Baulig  <martin@ximian.com>
27944
27945         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
27946
27947         * class.c (mono_class_from_generic_parameter): Don't set 
27948         TYPE_ATTRIBUTE_INTERFACE.
27949         (my_mono_class_from_generic_parameter): Likewise.
27950
27951 2004-04-01  Martin Baulig  <martin@ximian.com>
27952
27953         * loader.c (find_method): Added an optional `MonoClass *ic'
27954         argument to search in a specific interface.
27955         (mono_get_method_constrained): New public function.
27956
27957 2004-04-01  Martin Baulig  <martin@ximian.com>
27958
27959         * reflection.c (mono_image_get_generic_field_token): Use the
27960         `handleref' cache here.
27961
27962 2004-04-01  Martin Baulig  <martin@ximian.com>
27963
27964         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
27965
27966         * reflection.c (create_generic_typespec): Use the `typespec' hash
27967         here, not the `typeref' one.    
27968
27969 2004-04-01  Martin Baulig  <martin@ximian.com>
27970
27971         * class.c (mono_class_inflate_generic_type): Moved the
27972         functionality into a new static inflate_generic_type() which
27973         returns NULL if it didn't do anything.  Only increment the
27974         `mono_stats.inflated_type_count' if we actually inflated
27975         something.
27976         (mono_class_get_full): Check the classes type to see whether we
27977         need to inflate it; also inflate MONO_TYPE_(M)VAR.
27978
27979 2004-04-01  Jackson Harper  <jackson@ximian.com>
27980
27981         * reflection.c: Set culture for assembly references.
27982         
27983 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
27984
27985         * reflection.[ch], icall.[ch], Fix support for pinning variables.
27986
27987 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27988
27989         * assembly.c:
27990         (do_mono_assembly_open): the critical section also covers
27991         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
27992
27993 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27994
27995         * threads.c:
27996         (mono_manage_threads): abort the background threads when finishing.
27997         Fixes bug #47232.
27998
27999 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28000
28001         * gc.c: only close the done_event handle if there was no timeout.
28002         C-ified comments.
28003
28004 2004-03-30  Martin Baulig  <martin@ximian.com>
28005
28006         * icall.c (icall_entries): It's called "System.Activator", not
28007         "System.Activation".    
28008
28009 2004-03-30  Martin Baulig  <martin@ximian.com>
28010
28011         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
28012         (mono_class_create_from_typespec): Likewise.
28013
28014 2004-03-30  Martin Baulig  <martin@ximian.com>
28015
28016         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
28017         `has_ctor_constraint' and `initialized'.
28018
28019 2004-03-30  Martin Baulig  <martin@ximian.com>
28020
28021         * reflection.c (encode_new_constraint): New static function to add
28022         the constructor constraint attribute to a type parameter.
28023         (encode_constraints): Call encode_new_constraint() if necessary.
28024
28025         * reflection.h
28026         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
28027
28028         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
28029         
28030 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
28031
28032         * reflection.c, icall.c: add support for pinning variables. 
28033
28034 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
28035
28036         * marshal.c (mono_marshal_get_managed_wrapper):
28037         init bool local with zero rather than null.
28038
28039 2004-03-29  Martin Baulig  <martin@ximian.com>
28040
28041         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
28042         the "official" behavior here.
28043         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
28044
28045 2004-03-29  Martin Baulig  <martin@ximian.com>
28046
28047         * icall.c: Reflect latest API changes.
28048
28049 2004-03-29  Martin Baulig  <martin@ximian.com>
28050
28051         * loader.c (mono_get_method_from_token): Also call
28052         mono_metadata_load_generic_params () for abstract and interface
28053         methods; replace the type arguments in the method signature with
28054         the ones which are loaded from the metadata.
28055
28056 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
28057
28058         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
28059         of the lock is not the current thread. MS.NET don't do it, in spite of
28060         what the documentation says. See bug #56157.
28061
28062 2004-03-28  Martin Baulig  <martin@ximian.com>
28063
28064         * class.c (mono_class_init): Don't call init_properties() and
28065         init_events() for generic instances; set `prop->parent' when
28066         inflating properties.
28067
28068         * reflection.c (mono_generic_inst_get_object): Call
28069         `mono_class_init (ginst->klass)'.
28070         (mono_type_get_object): Only create a MonoGenericInst if your
28071         generic type is a TypeBuilder.
28072         (do_mono_reflection_bind_generic_parameters): Only set
28073         `ginst->is_dynamic' if our generic type is a TypeBuilder.
28074
28075 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
28076
28077         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
28078         Fixes #56091.
28079
28080 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28081
28082         * icall.c: added Kill_internal icall.
28083         * process.[ch]: added Kill_internal icall.
28084
28085 2004-03-25  Martin Baulig  <martin@ximian.com>
28086
28087         * class.h (MonoStats): Added `generic_instance_count',
28088         `inflated_method_count', `inflated_type_count' and
28089         `generics_metadata_size'.       
28090
28091 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28092
28093         * reflection.c: no warnings now.
28094
28095 2004-03-25  Martin Baulig  <martin@ximian.com>
28096
28097         * class.c (mono_class_get_full): New public function; does a
28098         mono_class_get(), but also takes a `MonoGenericContext *'.
28099
28100         * loader.c (mono_field_from_memberref): Renamed to
28101         `field_from_memberref', made static and added `MonoGenericContext *'
28102         argument.
28103         (mono_field_from_token): Added `MonoGenericInst *' argument.
28104         (method_from_memberef): Likewise.
28105         (mono_get_method_from_token): Likewise.
28106         (mono_get_method_full): New public function; does a
28107         mono_get_method(), but also takes a `MonoGenericContext *'.
28108
28109         * verify.c (mono_method_verify): Get the method's generic context
28110         and pass it to mono_field_from_token(), mono_get_method_full() and
28111         mono_class_get_full().
28112
28113 2004-03-25  Martin Baulig  <martin@ximian.com>
28114
28115         * class.c (mono_class_inflate_generic_type): Take a
28116         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
28117         `MonoGenericMethod *'.
28118
28119 2004-03-25  Martin Baulig  <martin@ximian.com>
28120
28121         * loader.h (MonoMethodInflated): Store the MonoGenericContext
28122         instead of the MonoGenericMethod here.
28123
28124 2004-03-25  Martin Baulig  <martin@ximian.com>
28125
28126         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
28127         each time we create a new MonoGenericInst, we also create a new
28128         context which points back to us.
28129
28130         * class.c (inflate_method): Use `ginst->context' instead of
28131         creating a new context.
28132
28133         * loader.c (method_from_memberref): Use
28134         `klass->generic_inst->context' instead of creating a new context.
28135
28136 2004-03-25  Martin Baulig  <martin@ximian.com>
28137
28138         * class.h (MonoGenericContext): New struct.
28139         (MonoGenericMethod): Removed `generic_inst'.
28140
28141         * class.c (mono_class_inflate_generic_method): Take a
28142         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
28143
28144 2004-03-25  Martin Baulig  <martin@ximian.com>
28145
28146         * loader.h (MonoMethodInflated): New typedef.
28147
28148         * metadata.h (MonoMethodSignature): Removed `gen_method', make
28149         `generic_param_count' consume just 30 bits, added `is_inflated'
28150         and `has_type_parameters' flags (one bit each).
28151
28152         * class.c (mono_class_inflate_generic_method): Create a
28153         MonoMethodInflated instead of a MonoMethodNormal and set
28154         `is_inflated' in the method signature.
28155
28156         * class.h (MonoGenericMethod): Removed `generic_method'.
28157
28158 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
28159
28160         * image.c: Make sure the name of a MonoImage is always an absolute path.
28161           This fixes bug #54415.
28162
28163 2004-03-24  Martin Baulig  <martin@ximian.com>
28164
28165         * class.c (mono_class_setup_vtable): If we're a generic instance,
28166         use our generic type's vtable size.
28167
28168 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
28169
28170         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
28171         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
28172         problems.
28173
28174 2004-03-23  Martin Baulig  <martin@ximian.com>
28175
28176         * class.h (MonoDynamicGenericInst): Added `int count_events' and
28177         `MonoEvent *events'.
28178
28179         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
28180         (typebuilder_icalls): Added "get_event_info"; calls
28181         mono_reflection_event_builder_get_event_info(). 
28182
28183         * reflection.c (mono_reflection_generic_inst_initialize): Added
28184         `MonoArray *events'.
28185         (mono_reflection_event_builder_get_event_info): New function.
28186
28187 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
28188
28189         * object.h: add mono_type_initialization_init
28190
28191         * object.c (mono_runtime_class_init): 
28192         implement class constructor synchronization rules
28193         to cope with threading issues.  
28194         add mono_type_initialization_init
28195
28196         * appdomain.c (mono_runtime_init): call 
28197         mono_type_initialization_init
28198
28199         * class.h: removing initializing field from MonoVTable
28200
28201 2004-03-23  Martin Baulig  <martin@ximian.com>
28202
28203         * class.c (my_mono_class_from_generic_parameter): Use
28204         `param->name' if it's not NULL. 
28205
28206 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
28207
28208         * class.c: do not insert non-virtual methods in the vtable.
28209         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
28210         that means the method is non-virtual. This never would have
28211         happened before.
28212
28213 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
28214
28215         * profiler.c: Added lock for accessing coverage_hash.
28216
28217 2004-03-22  Martin Baulig  <martin@ximian.com>
28218
28219         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
28220         `method->method->signature->generic_param_count != 0' to make it
28221         work for interface methods.
28222
28223 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28224
28225         * process.c: quote the string passed to the shell using g_shell_quote.
28226
28227 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28228
28229         * threads.c:
28230         (mono_threads_manage): don't remove the finalizer thread and self
28231         from the threads hash table so that mono_thread_manage can be called
28232         more than once.
28233
28234 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28235
28236         * process.c: quote the arguments when UseShellExecute is true. Fixes
28237         bug #55790.
28238
28239 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28240
28241         * threads.c: set mono_thread_detach as a cleanup routine for every
28242         thread. This way it's always executed upon thread termination, either
28243         aborted or finished normally. No more xsp hangs!
28244
28245 2004-03-17  Martin Baulig  <martin@ximian.com>
28246
28247         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
28248         `int count_nested' and a `MonoType **nested'.
28249
28250         * reflection.c (mono_reflection_bind_generic_parameters): Moved
28251         most of the functionality into a new static
28252         do_mono_reflection_bind_generic_parameters() and don't take a
28253         `MonoType *nested_in' argument any more.  Don't compute nested
28254         types here.
28255         (mono_reflection_generic_inst_get_nested_types): New public method
28256         to get nested types.
28257
28258         * class.c (mono_class_create_generic): Set `klass->nested_in' if
28259         we're a nested class.
28260
28261         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
28262         mono_reflection_generic_inst_get_nested_types() to compute the
28263         nested types.
28264
28265 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28266
28267         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
28268         descriptive error message under windows.
28269         
28270 2004-03-17  Martin Baulig  <martin@ximian.com>
28271
28272         * class.c (dup_type): Added `const MonoType *original' argument;
28273         copy the attrs from the original type.
28274
28275 2004-03-17  Martin Baulig  <martin@ximian.com>
28276
28277         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
28278         `m->generic_inst_cache' here.
28279
28280 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28281
28282         * exception.h exception.c: Add stack_overflow_exception.
28283
28284 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28285
28286         * threadpool.c:
28287         (overlapped_callback): call SetEvent *after* invoking the callback.
28288         No need to call CloseHandle.
28289
28290 2004-03-16  Martin Baulig  <martin@ximian.com>
28291
28292         * reflection.c (mono_image_get_fieldref_token): Take a
28293         `MonoReflectionField *' instead of a `MonoClassField *' and a
28294         `MonoClass *'; store the `MonoReflectionField *' in the hash.
28295
28296 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28297
28298         * appdomain.c: don't add the culture to the filename we're looking for
28299         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
28300
28301 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28302
28303         * locales.c: don't ignore symbols when doing case insensitive compares.
28304         Thanks Dick! Fixes bug #54046.
28305
28306         * threads.c: surround 'threads' usage with enter/leave in
28307         mono_thread_manage.
28308
28309 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
28310
28311         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
28312         implicitly marshalled as [Out]. Fixes #55450.
28313
28314         (mono_marshal_get_runtime_invoke): Zero out the result if there is
28315         an exception.
28316
28317 2004-03-16  Martin Baulig  <martin@ximian.com>
28318
28319         * class.c (mono_class_from_generic_parameter): Use the actual
28320         parameter name. 
28321
28322 2004-03-16  Martin Baulig  <martin@ximian.com>
28323
28324         * reflection.c (type_get_signature_size): New static function.
28325         Compues the size of the type in a method signature.
28326         (method_get_signature_size): New static function; calls
28327         type_get_signature_size() to compute the actual size of the
28328         method's signature.
28329         (method_encode_signature): Use method_get_signature_size() to get
28330         the signature's size rather than using `nparams * 10'.
28331
28332 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28333
28334         * file-io.h: define here WapiOverlapped on windows. I don't want the
28335         regular OVERLAPPED one.
28336
28337         * file-io.c:
28338         * threadpool.c: somehow, BindIoCompletionCallback is not found.
28339         Disabling AIO on windows.
28340
28341 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28342
28343         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
28344         bug #55385.
28345
28346 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28347
28348         * appdomain.c: upgraded corlib version.
28349
28350         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
28351         and BeginWrite. Allow opening files for asynchrnous operations.
28352
28353         * file-io.h: new struct that maps FileStreamAsyncResult.
28354         * icall.c: added new icalls.
28355         * process.[ch]: support setting child process environment variables
28356         and use the SHELL or COMSPEC when UseShellExecute is true.
28357
28358         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
28359         callback for async. IO is here and also BindHandle.
28360
28361         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
28362         from here.
28363
28364 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
28365
28366         * reflection.c (create_custom_attr): Allow len == 0.
28367
28368         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
28369         computation on big-endian machines.
28370
28371 2004-03-13  Martin Baulig  <martin@ximian.com>
28372
28373         * class.h (MonoGenericInst): Added `int count_ifaces'.
28374
28375         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
28376         `ginst->count_ifaces' instead `klass->interface_count' since we
28377         may get called before the vtable is created.
28378
28379         * loader.c (mono_method_get_param_names): If we're a generic
28380         instance, return and don't initialize the class.
28381
28382         * reflection.c (mono_reflection_setup_generic_class): Don't call
28383         ensure_runtime_vtable().
28384         (mono_reflection_bind_generic_parameters): Set
28385         `ginst->count_ifaces'.
28386
28387 2004-03-11  Jackson Harper <jackson@ximian.com>
28388
28389         * icall.c:
28390         * unicode.c:
28391         * unicode.h: Remove unused System.Char icalls.
28392         
28393 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
28394
28395         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
28396         code when we P/Invoke the first library in Windows.Forms, instead
28397         of when we first open the assembly.
28398
28399         * assembly.c: Drop the lookup from here.
28400
28401 2004-03-10  Martin Baulig  <martin@ximian.com>
28402
28403         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
28404         class for properties, fields and events.  Finally fixes #54945.
28405
28406 2004-03-10  Martin Baulig  <martin@ximian.com>
28407
28408         * metadata.c (mono_metadata_class_equal): New static function;
28409         checks whether two generic instances or two generic parameters are
28410         equal.
28411         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
28412         compare classes.        
28413
28414 2004-03-10  Martin Baulig  <martin@ximian.com>
28415
28416         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
28417
28418         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
28419         argument and write it into the `reflection_info' field.
28420
28421         * icall.c
28422         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
28423         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
28424
28425 2004-03-09  Jackson Harper  <jackson@ximian.com>
28426
28427         * char-conversions.h: use 8 bits for numeric data its all we need
28428         * icall.c: numeric data is only 8 bits now.
28429
28430 2004-03-09  Martin Baulig  <martin@ximian.com>
28431
28432         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
28433
28434         * class.c (init_properties, init_events): Initialize the new
28435         `parent' field.
28436
28437         * reflection.c (typebuilder_setup_properties): Likewise.
28438         (typebuilder_setup_events): Likewise.
28439
28440         * reflection.h (MonoEventInfo): Replaced `parent with
28441         `declaring_type' and `reflected_type'.
28442
28443         * icall.c (ves_icall_get_property_info): Distinguish between
28444         declaring and reflected type.
28445         (ves_icall_get_event_info): Likewise.
28446
28447 2004-03-09  Martin Baulig  <martin@ximian.com>
28448
28449         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
28450         (ves_icall_Type_GetField): Correctly set field->klass.
28451
28452 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
28453
28454         * loader.h: Fix warning.
28455
28456 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
28457
28458         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
28459         library routine if present.  Notice that it will still continue
28460         executing even if its missing, for those working on the Gtk#
28461         edition of Windows.Forms.
28462
28463         * assembly.c (do_mono_assembly_open): If loading the
28464         System.Windows.Forms call mono_loader_wini_init.
28465
28466 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
28467
28468         * class.h: Added MonoRemoteClass struct.
28469         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
28470         function for MonoStrings.
28471         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
28472         Added internal call for getting the proxy type.
28473         * marshal.c: Get the type of transparent proxies from its remote_class.
28474         Added methods that generate the IL for type checks and casts:
28475         mono_marshal_get_isinst, mono_marshal_get_castclass, 
28476         mono_marshal_get_proxy_cancast.
28477         * marshal.h: Declaration of the previous new methods.
28478         * object.c: Added new moethods for creating and updating MonoRemoteClass
28479         instances: mono_remote_class, mono_upgrade_remote_class, 
28480         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
28481         * verify.c: FIx transparent_proxy_fields layout.
28482         * appdomain.c: Bump corlib version.
28483
28484 2004-03-04  Jackson Harper  <jackson@ximian.com>
28485
28486         * icall.c: Add icall to access char conversion tables.
28487         * char-conversions.h: Character conversion tables.
28488         * Makefile.am: Add char-conversions.h private header file.
28489         
28490 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
28491
28492         * appdomain.c (unload_thread_main): Increase unloading timeout to
28493         10 sec as a temporary workaround for Nant problems.
28494
28495 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
28496
28497         * gc.c: Add checks for GC_enable and GC_disable.
28498
28499         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
28500         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
28501         (bug #54988).
28502         
28503 2004-02-27  Martin Baulig  <martin@ximian.com>
28504
28505         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28506         `MonoReflectionType *' instead of a `MonoType *'.
28507
28508 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
28509
28510         * gc.c (run_finalize): Avoid finalizing the object representing the
28511         finalizer thread.
28512         (finalizer_thread): Fix warning.
28513
28514 2004-02-25  Martin Baulig  <martin@ximian.com>
28515
28516         * class.c (_mono_class_get_instantiation_name): Added `int offset'
28517         argument for nested types.
28518         (mono_class_create_generic): Added support for nested generictypes.
28519
28520         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
28521         `GList *nested'.
28522
28523         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
28524
28525         * reflection.c (method_encode_signature): Increase the minimum
28526         value of `size' from 10 to 11.
28527         (mono_reflection_bind_generic_parameters): Take `int type_argc'
28528         and `MonoType **types' arguments instead of the `MonoArray
28529         *types'; added `MonoType *nested_in'.  Recursively instantiate
28530         nested classes. 
28531
28532 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
28533
28534         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
28535         stack_overflow_ex members which are used by exception handling.
28536
28537         * appdomain.c (mono_runtime_init): Initialize the new members.
28538
28539         * gc.c (mono_gc_enable): New helper function.
28540         * gc.c (mono_gc_disable): New helper function.
28541
28542 2004-02-23  Martin Baulig  <martin@ximian.com>
28543
28544         * icall.c: I must have been really stupid - make it actually work
28545         this time ;-)
28546
28547 2004-02-23  Martin Baulig  <martin@ximian.com>
28548
28549         * loader.c (method_from_memberref): Only inflate the method if
28550         it's in another klass.
28551
28552 2004-02-23  Martin Baulig  <martin@ximian.com>
28553
28554         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
28555         (mono_class_init): If we're a generic instance and an interface,
28556         compute `class->interface_id'; also create `class->interfaces'
28557         here and inflate them.
28558
28559         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
28560         `ginst->is_open'.
28561         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
28562
28563         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
28564
28565 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
28566
28567         * reflection.c (method_encode_code): Improved the error message
28568         generated by the exception.
28569
28570 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28571
28572         * icall.c: Martin did not do what he said in the ChangeLog for
28573         2004-02-18, but put back the changes for properties and events.
28574         Commenting those changes out again and adding comment to bug #54518.
28575         
28576         * process.c: removed warning.
28577
28578 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
28579
28580         * marshal.c (emit_struct_conv): Print an error message instead of
28581         asserting when a type does not have the StructLayout attribute.
28582
28583 2004-02-20  Martin Baulig  <martin@ximian.com>
28584
28585         * reflection.c (mono_type_get_object): Also use the cache for
28586         generic instances.
28587         (mono_reflection_bind_generic_parameters): Always compute
28588         `ginst->ifaces'.        
28589
28590 2004-02-20  Martin Baulig  <martin@ximian.com>
28591
28592         * class.h (MonoGenericMethod): Removed `klass'.
28593
28594         * class.c (mono_class_inflate_generic_method): Added `MonoClass
28595         *klass' argument.
28596
28597 2004-02-20  Martin Baulig  <martin@ximian.com>
28598
28599         * reflection.c (method_encode_methodspec): Actually use the
28600         uninflated signature for the memberref.
28601
28602 2004-02-20  Martin Baulig  <martin@ximian.com>
28603
28604         * class.h (MonoGenericMethod): Removed `declaring'.
28605
28606         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
28607         is NULL, compute it here.
28608
28609 2004-02-20  Martin Baulig  <martin@ximian.com>
28610
28611         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
28612
28613         * metadata.c (mono_metadata_generic_inst_hash): New method.
28614         (mono_metadata_generic_inst_equal): New method.
28615
28616         * reflection.c (mono_reflection_bind_generic_parameters): Use the
28617         `klass->image->generic_inst_cache' cache to avoid creating
28618         duplicate MonoGenericInst's.
28619
28620         * class.c (mono_class_inflate_generic_type): Use the cache.
28621
28622 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
28623
28624         * object.c: fixed gc descriptor calculation for embedded valuetypes.
28625
28626 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28627
28628         * icall.c: added Socket.WSAIoctl icall.
28629
28630         * socket-io.[ch]: implemented
28631         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
28632
28633 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
28634
28635         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
28636
28637 2004-02-18  Urs C Muff  <umuff@quark.com>
28638
28639         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
28640         this work on PPC and other big-endian architectures.
28641
28642         * debug-mono-symfile.h: Prepended the names of all the `guint32'
28643         fields with an underscore to make sure they're only accessed by
28644         the read32() macro.
28645
28646 2004-02-18  Martin Baulig  <martin@ximian.com>
28647
28648         * icall.c: Put the klass->refclass changes back for methods and
28649         fields, but not for properties and events.  We're currently not
28650         distinguishing between DeclaringType and ReflectedType for
28651         properties and events, that's what caused the regressions.
28652
28653 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28654
28655         * object.c:
28656         (mono_async_result_new): the handle can be NULL.
28657
28658         * threadpool.c: Use an event instead of a semaphore, don't initialize
28659         it until needed. This saves quite a few semaphores from being created
28660         when using the threadpool.
28661
28662 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
28663
28664         * object.c (mono_string_is_interned_lookup): Fix interning of long
28665         strings. Fixes #54473.
28666
28667         * domain.c (ldstr_equal): Optimize if the two strings are equal.
28668
28669         * icall.c: Revert the klass->refclass changes since they introduce
28670         regressions (bug #54518).
28671
28672 2004-02-18  Martin Baulig  <martin@ximian.com>
28673
28674         * class.c (mono_class_init): If we're a generic instance and don't
28675         come from a TypeBuilder, inflate our members here.
28676         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
28677         (mono_class_create_generic): New public method.
28678         (mono_class_initialize_generic): Removed.
28679         (get_instantiation_name): Renamed to
28680         _mono_class_get_instantiation_name() and made it public.
28681
28682 2004-02-18  Martin Baulig  <martin@ximian.com>
28683
28684         * class.c (mono_class_inflate_generic_type): Clear the new
28685         instance's `nginst->klass' when inflating a generic instance.
28686         (mono_class_is_subclass_of): Added (basic) support for generic
28687         instances.
28688
28689 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
28690
28691         * appdomain.h, domain.c: use a MonoCodeManager instead of a
28692         MonoMempool to hold compiled native code.
28693
28694 2004-02-17  Martin Baulig  <martin@ximian.com>
28695
28696         * class.h (MonoDynamicGenericInst): Added `count_properties' and
28697         `properties'.
28698
28699         * reflection.c (mono_reflection_generic_inst_initialize): Added
28700         `MonoArray *properties' argument.
28701
28702         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
28703
28704 2004-02-17  Martin Baulig  <martin@ximian.com>
28705
28706         * icall.c (ves_icall_Type_GetFields): Renamed to
28707         ves_icall_Type_GetFields_internal() and added a
28708         `MonoReflectionType *rtype' argument; pass it to
28709         mono_field_get_object() to set the field's "reflected" type.
28710         (ves_icall_Type_GetConstructors): Likewise.
28711         (ves_icall_Type_GetEvents): Likewise.
28712         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
28713         argument; pass it to mono_method_get_object() to set the method's
28714         "reflected" type.       
28715
28716 2004-02-17  Martin Baulig  <martin@ximian.com>
28717
28718         * class.h (MonoDynamicGenericInst): New type.
28719         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
28720
28721         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
28722         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
28723         (ves_icall_MonoGenericInst_GetFields): New interncall.
28724
28725         * class.c (mono_class_from_generic): Don't call
28726         mono_class_initialize_generic() if this is a dynamic instance;
28727         ie. it's being created from a TypeBuilder.
28728         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
28729         `class->byval_arg.type'.
28730
28731         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
28732         to `inflate_method' and made static.
28733         (mono_reflection_inflate_field): Removed.
28734         (mono_reflection_generic_inst_initialize): New public method.
28735
28736         * reflection.h (MonoReflectionGenericInst): Removed `methods',
28737         `ctors' and `fields'; added `initialized'.
28738
28739 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
28740
28741         * debug-helpers.c (mono_method_full_name): Fix output for empty
28742         namespaces.
28743
28744 2004-02-12  Martin Baulig  <martin@ximian.com>
28745
28746         * class.h (MonoClassField): Added `MonoType *generic_type'.
28747
28748         * reflection.c (mono_image_get_fieldref_token): Added support for
28749         instantiated generic types.
28750         (field_encode_inflated_field): Removed.
28751         (mono_image_get_inflated_field_token): Removed.
28752         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
28753
28754         * reflection.h (MonoReflectionInflatedField): Removed.
28755
28756 2004-02-12  Martin Baulig  <martin@ximian.com>
28757
28758         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
28759         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
28760
28761         * reflection.c (mono_image_get_methodspec_token): Take a
28762         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
28763         (mono_image_create_token): Check whether we have a
28764         `method->signature->gen_method' and call
28765         mono_image_get_methodspec_token() if appropriate.
28766         (inflated_method_get_object): Removed.
28767         (mono_reflection_bind_generic_method_parameters): Return a
28768         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
28769         (mono_reflection_inflate_method_or_ctor): Likewise.
28770
28771         * reflection.h (MonoReflectionInflatedMethod): Removed.
28772
28773 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
28774
28775         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
28776         for custom valuetype marshalling.
28777
28778         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
28779
28780 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28781
28782         * icall.c: fixed WSAGetLastError_internal name.
28783
28784 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
28785
28786         * threads.c (mono_thread_attach): Allow this to be called multiple
28787         times for a thread.
28788         
28789         * threads.c (build_wait_tids): Do not wait for ourselves.
28790
28791         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
28792         appdomain list is empty.
28793
28794         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
28795         memory returned by mono_string_builder_to_utf16, since it points into
28796         managed memory. Thanks to Bernie Solomon for noticing this.
28797
28798         * icall.c: Add AppDomainSetup icalls.
28799
28800         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
28801
28802         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
28803         types.
28804
28805         * reflection.c (reflection_methodbuilder_to_mono_method): Save
28806         custom attributes to the method_aux struct. Also fix array indexes etc.
28807
28808         * loader.c (mono_method_get_param_names): Make dynamic case work again.
28809         
28810 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
28811
28812         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
28813         (both static and runtime) and reduce startup time.
28814
28815 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
28816
28817         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
28818         AsAny marshalling conversion instead of crashing.
28819
28820         * marshal.c: Fix warnings.
28821
28822 2004-02-09  Martin Baulig  <martin@ximian.com>
28823
28824         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
28825
28826         * reflection.h (MonoReflectionInflatedMethod): Removed the
28827         `declaring' field, it's now in the unmanaged MonoGenericMethod.
28828
28829         * reflection.c (method_encode_methodspec): Removed the `method'
28830         argument; we get it from `gmethod->declaring'.
28831         (inflated_method_get_object): Removed the `declaring' argument.
28832
28833 2004-02-09  Martin Baulig  <martin@ximian.com>
28834
28835         * class.h (MonoGenericMethod): New type.
28836         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
28837         `generic_method'.
28838
28839         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
28840         a `MonoGenericMethod *gen_method' one.
28841
28842         * class.c (mono_class_inflate_generic_type): Take an additional
28843         `MonoGenericMethod * argument.  This is only non-NULL if we're
28844         inflating types for a generic method.   
28845         (mono_class_inflate_generic_signature): Renamed to
28846         inflate_generic_signature() and made static; take a
28847         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28848         (inflate_generic_header): Take a `MonoGenericMethod *' argument
28849         instead of a `MonoGenericInst *' one.
28850         (mono_class_inflate_generic_method): Likewise.
28851
28852         * reflection.c (encode_generic_method_sig): Take a
28853         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28854         (method_encode_methodspec): Likewise.
28855         (inflated_method_get_object): Likewise. 
28856
28857         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
28858         field with a `MonoGenericMethod *gmethod' one.  
28859
28860 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
28861
28862         * class.h (mono_class_has_parent): add parens to expansion
28863         so you can ! this.
28864
28865 2004-02-08  Martin Baulig  <martin@ximian.com>
28866
28867         * image.h (MonoImage): Removed `generics_cache'.
28868
28869         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
28870         instead of a `MonoType *' argument; removed the `inflate_methods'
28871         argument.  Don't inflate methods here.
28872
28873         * loader.c (find_method): If it's a generic instance, call
28874         mono_class_init() on the `sclass->generic_inst->generic_type'.
28875
28876         * metadata.c (mono_type_size): Make this work on uninitialized
28877         generic instances; call it on the `ginst->generic_type's class.
28878
28879         * reflection.c (mono_reflection_bind_generic_parameters): Call
28880         mono_class_from_generic() to create the `ginst->klass'.
28881
28882 2004-02-08  Martin Baulig  <martin@ximian.com>
28883
28884         * class.h (MonoClass): Changed type of `generic_inst' from
28885         `MonoType *' to `MonoGenericInst *'.
28886
28887 2004-02-08  Martin Baulig  <martin@ximian.com>
28888
28889         * icall.c (ves_icall_Type_BindGenericParameters): Just call
28890         mono_type_get_object(), this is now creating a `MonoGenericInst'
28891         for MONO_TYPE_GENERICINST.
28892         (ves_icall_MonoGenericInst_GetParentType): Likewise.
28893         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
28894
28895         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
28896         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
28897         (inflated_method_get_object): Added `MonoClass *refclass' argument.
28898         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
28899         and reflected type.
28900
28901         * reflection.h (MonoReflectionInflatedMethod): Removed
28902         `declaring_type' and `reflected_type'.
28903
28904 2004-02-08  Martin Baulig  <martin@ximian.com>
28905
28906         * class.h (MonoGenericInst): Added `MonoType *parent' and
28907         `MonoType **ifaces'.
28908
28909         * reflection.h (MonoReflectionGenericInst): Removed `klass',
28910         `parent' and `interfaces'.
28911
28912         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28913         `MonoType *' argument and return a `MonoType *'.
28914
28915         * icall.c
28916         (ves_icall_MonoGenericInst_GetParentType): New interncall.
28917         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
28918
28919 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28920
28921         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
28922         valuetype marshalling.
28923
28924 2004-02-06  Martin Baulig  <martin@ximian.com>
28925
28926         * class.c
28927         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
28928         (my_mono_class_from_generic_parameter): Likewise.
28929
28930 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28931
28932         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
28933         contents of the symbol files lazily.
28934
28935         * object.h (MonoThread): Add 'name' and 'name_len' fields.
28936
28937         * threads.h threads.c icall.c: New icalls for getting and setting the
28938         threads name.
28939
28940 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
28941
28942         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
28943         Raise an exception when the domain is not found.
28944
28945 2004-02-03  Martin Baulig  <martin@ximian.com>
28946
28947         * reflection.c (mono_image_get_methodspec_token): Use the
28948         uninflated signature; fixes gen-33.
28949
28950 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
28951
28952         * gc.c threads.c: Make the finalizer thread a normal managed thread so
28953         the finalizer code can use thread functionality.
28954
28955         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
28956         the finalizer thread.
28957
28958         * threads.c: Make some functions more robust.
28959
28960         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
28961
28962         * metadata.h: Add new marshalling conventions.
28963
28964         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
28965         stringbuilder marshalling. Fixes #53700.
28966
28967         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
28968
28969         * reflection.c (mono_image_get_type_info): Save declarative security
28970         info.
28971
28972         * reflection.c (mono_image_get_field_info): Handle uninitialized 
28973         unmanaged fields as well.
28974
28975         * appdomain.c: Bump corlib version.
28976
28977 2004-02-01  Martin Baulig  <martin@ximian.com>
28978
28979         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
28980         method type arguments.  
28981
28982 2004-01-30  Duncan Mak  <duncan@ximian.com>
28983
28984         * marshal.h: Add prototype for
28985         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
28986         and
28987         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
28988         fix the build.
28989
28990 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
28991
28992         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
28993         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
28994
28995 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28996
28997         * marshal.c (mono_marshal_get_native_wrapper): Add support for
28998         custom marshalling of valuetypes.
28999
29000         * marshal.c: Fix some warnings.
29001
29002 2004-01-29  Martin Baulig  <martin@ximian.com>
29003
29004         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
29005         for generic method parameters.
29006
29007         * reflection.c (method_encode_methodspec): Write the uninflated
29008         signature into the methodspec table.
29009         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
29010         is always the uninflated method.
29011         (reflection_methodbuilder_to_mono_method): Copy the generic
29012         parameters from the MethodBuilder into `header->gen_params'.
29013
29014 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29015
29016         * class.c (mono_class_from_generic_parameter): Fix warning.
29017
29018 2004-01-27  Martin Baulig  <martin@ximian.com>
29019
29020         * class.c (mono_class_from_generic_parameter): Don't create
29021         `klass->methods' here.  
29022
29023 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
29024
29025         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
29026         extension since it does not work with libraries named lib<FOO>.dll.so.
29027
29028 2004-01-25  Martin Baulig  <martin@ximian.com>
29029
29030         * class.c (mono_class_inflate_generic_type): Added support for
29031         MONO_TYPE_GENERICINST.
29032
29033         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
29034         inflate methods on open constructed types.      
29035
29036 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29037
29038         * object.c: fire ProcessExit event in the root AppDomain after running
29039         Main. Fixes bug #53299.
29040
29041 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
29042
29043         * socket-io.c: include the new socket-wrappers.h header.
29044         Use the wrappers instead of the unix socket functions to make the code
29045         more clear.
29046
29047 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
29048
29049         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
29050
29051         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29052         Fixes #22532.
29053
29054 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
29055
29056         * reflection.c (mono_image_create_pefile): Handle the case when the
29057         entry point is not a MethodBuilder.
29058
29059         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29060         field to ReflectionMethod since it is not allways a builder.
29061
29062         * reflection.c (type_get_fully_qualified_name): New helper function to
29063         return the fully qualified name of a type.
29064
29065         * reflection.c (encode_marshal_blob): Always emit the fully qualified
29066         type name for custom marshallers.
29067
29068         * reflection.c (mono_marshal_spec_from_builder): Ditto.
29069
29070         * class.c (mono_class_setup_vtable): If a parent class already 
29071         implements an interface, use the implementing methods from that class.
29072         Fixes #53148.
29073
29074 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29075
29076         * threadpool.c: just return instead of ExitThread to allow for thread
29077         clean up earlier.
29078
29079 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
29080
29081         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
29082         when closing resource modules.
29083
29084         * reflection.c (mono_image_create_pefile): Handle the case when the
29085         entry point is not a MethodBuilder.
29086
29087         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29088         field to ReflectionMethod since it is not allways a builder.
29089
29090 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
29091
29092         * marshal.c (mono_marshal_get_managed_wrapper): 
29093         mono_marshal_alloc takes native int so CONV_I
29094         the arg for 64bits.
29095
29096 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
29097
29098         * reflection.c (fixup_cattrs): New function to fixup the methoddef
29099         tokens in the cattr table. Fixes #53108.
29100
29101 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29102
29103         * loader.c: don't trim ".dll" before looking up in the config file.
29104         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
29105
29106 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
29107
29108         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
29109         Return the module which contains the resource as well.
29110         (ves_icall_System_Reflection_Module_Close): New icall.
29111
29112         * appdomain.c: Bump corlib version number.
29113
29114         * image.c (mono_image_addref): New public function.
29115
29116         * assembly.c: Call mono_image_addref.
29117
29118         * reflection.c (mono_module_get_object): Increase reference count of 
29119         the image.
29120
29121         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29122         Fixes #22532.
29123
29124         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
29125         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
29126         proper exceptions on DllImport problems.
29127
29128 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
29129
29130         * class.c, metadata.c: eliminate CSIZE macro.
29131
29132 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
29133
29134         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
29135         * object.h: Added async_callback field in MonoAsyncResult.
29136         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
29137         * verify.c: Added async_callback in MonoAsyncResult layout.
29138
29139 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
29140
29141         * reflection.c (mono_reflection_get_custom_attrs): Add support
29142         for Modules.
29143
29144 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29145
29146         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
29147         marshalling.
29148         (mono_marshal_method_from_wrapper): Add null pointer check.
29149
29150 2004-01-16  Martin Baulig  <martin@ximian.com>
29151
29152         * debug-mono-symfile.h: Set version number to 36 and reflect
29153         latest symbol writer changes.
29154
29155 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29156
29157         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
29158         multi-dimensional arrays.
29159         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
29160         (mono_class_from_mono_type): Use bounded_array_class_get.
29161         
29162         * class.c (mono_bounded_array_class_get): New function which takes
29163         a 'bounded' bool argument to distinguish vectors from one dimensional
29164         arrays.
29165
29166         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
29167         bounded_array_class_get if the array has bounds.
29168
29169         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29170         Search modules loaded using AssemblyBuilder:AddModule as well.
29171
29172 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29173
29174         * appdomain.c: increased corlib version.
29175         * filewatcher.c: removed g_print.
29176         * icall.c:
29177         (get_property_info): only allocate what is actually requested.
29178         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
29179
29180 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29181
29182         * Makefile.am: added filewatcher.[ch]
29183         * filewatcher.[ch]: FileSystemWatcher runtime support.
29184         * icall.c: added new FSW icalls.
29185
29186 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
29187
29188         * string-icalls.c: fix stringbuilder regression as suggested by
29189         Iain McCoy <iain@mccoy.id.au>.
29190
29191 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
29192
29193         * process.c (process_read_stringtable_block): Recognize '007f' as
29194         a language neutral stringtable block.
29195
29196 2004-01-12  Patrik Torstensson
29197
29198         * object.h (MonoStringBuilder) : Changed layout to support our
29199         new stringbuilder class.
29200         * marshal.c: Change marshalling to support the new layout of 
29201         string builder.
29202         * appdomain.c: increased version number because new layout of
29203         string builder.
29204
29205 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
29206
29207         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
29208         assembly name as an string instead of an AssemblyName, since it is
29209         easier to extract info from it.
29210
29211         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
29212         the culture subdirectories too. Fixes #52231.
29213
29214 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29215
29216         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
29217         It takes 2 new parameters with an optional name for the method to look
29218         for and case ignoring info.
29219
29220         * threadpool.c: removed unused variable.
29221
29222 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29223
29224         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
29225         It takes 2 new parameters with an optional name for the property to look
29226         for and case ignoring info.
29227         Fixes bug #52753.
29228
29229 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
29230
29231         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
29232         Fix #52451.
29233
29234 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29235
29236         * appdomain.c:
29237         * assembly.c: escape the uri before passing it to g_filename_from_uri.
29238         Fixes bug #52630.
29239
29240 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
29241
29242         * reflection.c: Add support for more than one unmanaged resource.
29243
29244         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
29245         in field->def_value, as done in all other cases.
29246
29247         * reflection.c (mono_reflection_get_custom_attrs): Add support for
29248         TypeBuilders.
29249
29250         * reflection.c (mono_reflection_create_runtime_class): Remove 
29251         errorneous assignment to klass->element_class, since it is already
29252         done in mono_reflection_setup_internal_class.
29253
29254 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29255
29256         * gc.c: added missing LeaveCriticalSection.
29257         * icall.c: indented a couple of lines.
29258         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
29259         if we call EndInvoke inside a callback. Fixes bug #52601.
29260
29261 2004-01-07  Martin Baulig  <martin@ximian.com>
29262
29263         * mono-debug-debugger.h
29264         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
29265
29266 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
29267
29268         * appdomain.c: Use messages in NotImplementedException.
29269
29270         * exception.c (mono_get_exception_not_implemented): Now this takes
29271         a message argument.
29272
29273         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
29274         exception instead of g_asserting an aborting when something is not
29275         implemented.
29276
29277         Add some inline docs.
29278
29279 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
29280
29281         * reflection.h: Update after changes to object layout.
29282
29283         * reflection.c: Implement saving of unmanaged aka win32 resources.
29284
29285         * appdomain.c: Bump version number.
29286
29287         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
29288         Handle missing domains gracefully.
29289
29290 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
29291
29292         * file-io.c : On Windows, there are much more invalid_path_chars.
29293
29294 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
29295
29296         * class.h, object.c: prepare for GetType () speedup.
29297
29298 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
29299
29300         * profiler.c: workaround for --profile null reference exception on
29301           cygwin. Patch by Patrik Torstensson.
29302
29303 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
29304
29305         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
29306         make work for unaligned access.
29307
29308 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
29309
29310         * class.c: small cleanup (class->fields [i] -> field).
29311         * image.c: check address of metadata is valid.
29312
29313 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
29314
29315         * assembly.h assembly.c (mono_assembly_loaded): New public function to
29316         search the list of loaded assemblies.
29317
29318         * reflection.c (mono_reflection_type_from_name): Use 
29319         mono_assembly_loaded instead of mono_image_loaded.
29320
29321         * reflection.c: Fix warnings.
29322
29323 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
29324
29325         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
29326         is dynamic. This is needed since an assembly can contain both dynamic and
29327         non-dynamic images.
29328
29329         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
29330         assembly->dynamic.
29331
29332         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
29333
29334         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
29335         to store modules loaded using AddModule.
29336
29337         * reflection.c (mono_image_fill_file_table): Generalize this so it works
29338         on Modules.
29339
29340         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
29341
29342         * reflection.c (mono_image_fill_export_table_from_module): New function to
29343         fill out the EXPORTEDTYPES table from a module.
29344
29345         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
29346         into a separate function. Also handle loaded non-dynamic modules.
29347
29348         * reflection.c (mono_image_basic_init): Fix memory allocation.
29349
29350         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29351
29352         * assembly.c (mono_assembly_load_references): Make this public.
29353
29354 2003-12-19  Martin Baulig  <martin@ximian.com>
29355
29356         * class.c (mono_class_initialize_generic): Made this static, take
29357         a `MonoGenericInst *' instead of a `MonoClass *'.
29358         (mono_class_from_generic): Call mono_class_initialize_generic()
29359         unless we're already initialized or being called from
29360         do_mono_metadata_parse_generic_inst().
29361
29362         * class.h (MonoGenericInst): Added `initialized' and
29363         `init_pending' flags.
29364
29365         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
29366         `mono_class_init (gklass)' or mono_class_initialize_generic()
29367         here; set `generic_inst->init_pending' while parsing the
29368         `type_argv'.
29369
29370 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
29371
29372         * locales.c: include string.h for memxxx prototypes
29373
29374 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
29375
29376         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
29377         constructor when accessing literal fields.
29378
29379 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
29380
29381         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29382
29383         * reflection.c (assembly_add_resource_manifest): New function to fill
29384         the MANIFESTRESOURCE table.
29385
29386         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
29387
29388         * reflection.h: Update to changes in class layout.
29389
29390         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
29391         Reenable call to mono_runtime_is_shutting_down ().
29392
29393         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
29394         determine if the runtime is shutting down.
29395
29396 2003-12-16  Jackson Harper <jackson@ximian.com>
29397
29398         * icall.c: comment out call to mono_runtime_is_shutting_down to
29399         fix build.
29400         
29401 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
29402
29403         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
29404         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
29405
29406 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
29407
29408         * reflection.c: move definition of swap_with_size
29409         to before its first call
29410
29411 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
29412
29413         * appdomain.c (mono_runtime_is_shutting_down): New public function.
29414
29415         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
29416         icall.
29417
29418         * object.c: Fix warnings.
29419
29420         * icall.c (ves_icall_Type_Get...): Only consider inherited static
29421         members if FlattenHierarchy is set.
29422
29423         * reflection.c (mono_image_add_decl_security): New function to emit
29424         declarative security.
29425
29426         * reflection.h reflection.c: Add support for declarative security.
29427
29428         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29429         
29430 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
29431
29432         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29433         
29434         * appdomain.c verify.c: Moved corlib version checking into its own
29435         function in appdomain.c since it needs to create vtables etc.
29436
29437 2003-12-13  Patrik Torstensson <p@rxc.se>
29438
29439         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
29440         instead of unwrapped server.
29441
29442 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
29443
29444         * verify.c (check_corlib): Fix field index.
29445
29446 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
29447
29448         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
29449         GetGacPath icall.
29450
29451 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
29452
29453         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
29454         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
29455         cope with sizeof(size_t) != sizeof(guint32).
29456
29457 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29458
29459         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
29460         in case of failure.
29461
29462 2003-12-10  Mark Crichton <crichton@gimp.org>
29463
29464         * icall.c: removed the GetNonZeroBytes.  We now handle this case
29465         in managed code.
29466
29467         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
29468
29469 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
29470
29471         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
29472         marked as deleted.
29473
29474 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
29475
29476         * verify.c (check_corlib): Handle the case when the version field is 
29477         initialized by a static constructor.
29478
29479 2003-12-08  Patrik Torstensson  <p@rxc.se>
29480
29481     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
29482
29483 2003-12-08  Martin Baulig  <martin@ximian.com>
29484
29485         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
29486         a MonoReflectionGenericParameter, also take the parameter index
29487         and name as arguments.
29488         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
29489         (ves_icall_MonoGenericParam_initialize): New interncall.
29490         (ves_icall_Type_make_byref_type): New interncall.
29491
29492         * reflection.h (MonoReflectionGenericParam): Derive from
29493         MonoReflectionType, not just from MonoObject.  Added `refobj' and
29494         `index' fields.
29495
29496         * reflection.c (mono_reflection_define_generic_parameter): Create
29497         and return a new MonoReflectionGenericParam; don't initialize the
29498         constraints here.
29499         (mono_reflection_initialize_generic_parameter): New public method;
29500         initializes the constraints and creates the `param->pklass'.
29501
29502 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
29503
29504         * reflection.h reflection.c: Use the new fields 'num_types', 
29505         'num_fields' and 'num_methods' to track the number of types etc.
29506
29507         * verify.c (check_corlib): Check corlib version number.
29508
29509 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
29510
29511         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
29512         function works on all methods.
29513
29514 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
29515
29516         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
29517         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
29518         the custom_type_info flag of the transparent proxy.
29519         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
29520         objects that supports IRemotingTypeInfo.
29521         * object.h: Added custom_type_info field in transparent proxy.
29522
29523 2003-12-06  Martin Baulig  <martin@ximian.com>
29524
29525         * class.c (mono_class_create_from_generic): Removed.
29526         (mono_class_from_generic): Check `ginst->klass' before doing
29527         anything else.  This is important to fully support "recursive"
29528         generic types.
29529
29530         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
29531         empty `generic_inst->klass' before doing anything else.
29532
29533 2003-12-06  Dick Porter  <dick@ximian.com>
29534
29535         * verify.c: 
29536         * object.h:
29537         * icall.c:
29538         * locales.c: Use C structs to access class fields.  Don't do a
29539         conversion between MonoString and UChar because both are
29540         platform-endian UTF-16.  Compare now takes startindex and count
29541         parameters.  Add a char overload for IndexOf.  Speed up the
29542         invariant string IndexOf.
29543
29544 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
29545
29546         * Makefile.am (monosn_LDADD): Fix parallel build.
29547
29548 2003-12-04  Martin Baulig  <martin@ximian.com>
29549
29550         * icall.c
29551         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29552         (ves_icall_Type_make_array_type): New interncall.       
29553
29554 2003-12-04  Martin Baulig  <martin@ximian.com>
29555
29556         * locales.c: also change it in the !HAVE_ICU case.
29557
29558 2003-12-04  Dick Porter  <dick@ximian.com>
29559
29560         * icall.c:
29561         * locales.c: construct_compareinfo is now in CompareInfo, not
29562         CultureInfo.
29563
29564 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
29565
29566         * image.c (mono_image_load_file_for_image): Cache loaded images in the
29567         image->files array.
29568
29569         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
29570         table as well.
29571
29572         * assembly.c (mono_assembly_load_references): Only load references
29573         once.
29574
29575         * class.c (mono_class_from_name): Avoid linear search of the 
29576         EXPORTEDTYPE table.
29577
29578         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
29579
29580 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
29581
29582         * image.h (MonoImage): Add 'field_cache' field.
29583
29584         * loader.c (mono_field_from_token): Cache field lookups.
29585         
29586         * reflection.c (mono_module_get_object): Fix name property.
29587
29588         * icall.c (ves_icall_get_enum_info): Update after changes to 
29589         mono_metadata_get_constant_index ().
29590
29591         * icall.c: Get rid of get_type_info icall, use a separate icall for
29592         each type property to avoid needless memory allocations. Fixes #51514.
29593
29594         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
29595         to avoid needless binary searches.
29596
29597         * class.c (class_compute_field_layout): Move the initialization of
29598         field->def_value to mono_class_vtable ().
29599
29600         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
29601         non-corlib types.
29602
29603         * object.c (mono_object_allocate): Make it inline.
29604
29605         * object.c (mono_object_allocate_spec): Make it inline.
29606         
29607 2003-12-02  Dick Porter  <dick@ximian.com>
29608
29609         * locales.c (create_NumberFormat): NumberFormatInfo construction.
29610         Patch by Mohammad DAMT (mdamt@cdl2000.com).
29611
29612 2003-12-01  Dick Porter  <dick@ximian.com>
29613
29614         * threads.c: Fix signature and call in CreateMutex and
29615         CreateEvent.
29616
29617 2003-12-01  Dick Porter  <dick@ximian.com>
29618
29619         * icall.c: 
29620         * locales.c: Implement string compares and searching
29621
29622         * object.h: Add extra Thread field
29623
29624 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
29625
29626         * reflection.c (fixup_method): Add support for MonoCMethod.
29627
29628 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
29629
29630         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
29631
29632         * reflection.c (assembly_name_to_aname): Allow extra characters in
29633         assembly names. Fixes #51468.
29634
29635 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
29636
29637         * exception.c (mono_exception_from_name_domain): New helper function.
29638
29639         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
29640         exception object in the correct domain.
29641
29642         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
29643         formatting + make a copy a the input data.
29644
29645         * loader.c (mono_get_method_from_token): Methods which contain
29646         native code do not have entries in the ImplMap.
29647
29648         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
29649         Thanks to Gonzalo for spotting this.
29650         
29651         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
29652         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
29653
29654         * assembly.h (mono_assembly_load_from): Split the second part of 
29655         assembly loading into a new public function.
29656
29657         * exception.h (mono_get_exception_bad_image_format): New function.
29658
29659 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
29660
29661         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29662         Enumerate all modules inside a dynamic assembly. Fixes #51293.
29663         
29664         * icall.c: Add new icall for creating dynamic methods.
29665
29666         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
29667
29668         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
29669
29670         * reflection.c (mono_reflection_create_dynamic_method): New icall to
29671         create a dynamic method.
29672
29673         * reflection.c (resolve_object): New helper function.
29674
29675         * reflection.c: Generalize ReflectionMethodBuilder and the functions
29676         which manipulate it so they can also work on dynamic methods.
29677
29678         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
29679         creating the MonoReflectionMethodAux structure if it is not needed.
29680         
29681         * reflection.h verify.c: Update after changes to object layout.
29682
29683         * reflection.c (method_builder_encode_signature): Fix compilation on
29684         gcc 2.95.x.
29685
29686 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
29687
29688         * appdomain.h: Added support for context static fields. Added static_data
29689           field to MonoAppContext and renamed thread_static_fields to a more
29690           generic special_static_fields in MonoAppDomain, since it can now contain
29691           context static fields.
29692         * domain.c: Updated hashtable name.
29693         * object.c: Replaced field_is_thread_static() for a more generic
29694           field_is_special_static() which also checks for context static attribute.
29695           In mono_class_vtable(), added support for static context fields.
29696         * threads.c: Changed methods that manage thread static fields to more
29697           generic methods so they can be reused both for thread and context static
29698           data.
29699         * threads.h: Declared some new methods.
29700
29701 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
29702
29703         * reflection.h: Update after changes to the managed types.
29704
29705         * reflection.c (encode_custom_modifiers): New helper function.
29706
29707         * reflection.c (method_encode_signature): Emit custom modifiers.
29708
29709         * reflection.c (field_encode_signature): Emit custom modifiers.
29710
29711 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
29712
29713         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
29714
29715         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
29716         implementation.
29717
29718         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
29719         icall.
29720
29721         * object.c (mono_field_get_value_object): New function.
29722
29723         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
29724         specific.
29725
29726 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
29727
29728         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
29729         return a preallocated out-of-memory exception instance.
29730
29731         * object.c (out_of_memory): Use the new function.
29732
29733         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
29734         flag is before the custom modifiers. Fixes #49802.
29735
29736 2003-11-16  Martin Baulig  <martin@ximian.com>
29737
29738         * class.c (mono_class_is_open_constructed_type): Implemented the
29739         MONO_TYPE_GENERICINST case.
29740
29741 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
29742
29743         * assembly.c (mono_assembly_fill_assembly_name): New function to
29744         fill out the MonoAssemblyName structure.
29745         (mono_assembly_open): Use the new function.
29746
29747         * icall.c (fill_reflection_assembly_name): New helper function.
29748
29749         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
29750         new function.
29751
29752         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
29753
29754 2003-11-15  Martin Baulig  <martin@ximian.com>
29755
29756         * class.c (mono_class_is_open_constructed_type): New public
29757         function; checks whether a type is an open constructed type,
29758         ie. whether it still contains type parameters.
29759         (mono_class_inflate_generic_type): If we're a type parameter and
29760         the inflated type is also a MONO_TYPE_(M)VAR, return the original
29761         type.
29762
29763         * class.h (MonoGenericInst): Added `guint32 is_open'.
29764
29765         * loader.c (method_from_methodspec): Check whether we're an open
29766         or closed constructed type and set `ginst->is_open'.
29767
29768         * reflection.c (mono_reflection_bind_generic_parameters): Check
29769         whether we're an open or closed constructed type and set
29770         `ginst->is_open'.
29771         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
29772         from open constructed types.
29773
29774 2003-11-15  Martin Baulig  <martin@ximian.com>
29775
29776         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29777         a generic instance (instead of a generic type declaration) with
29778         unbound generic parameters, bind them to our actual types.
29779
29780 2003-11-14  Martin Baulig  <martin@ximian.com>
29781
29782         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
29783
29784         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29785         an interface type, populate `res->interfaces' with instantiated
29786         versions of all the interfaces we inherit.
29787
29788 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
29789
29790         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
29791         when MONO_PATH is set but doesn't contain the install dir.
29792
29793 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29794
29795         * icall.c:
29796         (ves_icall_Type_GetInterfaces): don't return an interface twice when
29797         it's also implemented in base classes. Fixes bug #50927.
29798
29799 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
29800
29801         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
29802         if this method is called from a finalizer. Fixes #50913.
29803
29804 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
29805
29806         * threads.c: Implement VolatileRead/VolatileWrite
29807
29808         * icall.c: Add new icalls for VolatileRead/VolatileWrite
29809
29810 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29811
29812         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
29813         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
29814         2.95.3.
29815
29816         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
29817         from Peter Ross (pro@missioncriticalit.com).
29818         
29819 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
29820
29821         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
29822
29823 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29824
29825         * assembly.c (mono_assembly_load_references): Disable check because it
29826         triggers on older corlibs which lots of people have.
29827
29828 2003-11-12  Jackson Harper  <jackson@ximian.com>
29829
29830         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
29831         load corlib.dll if mscorlib.dll is not found.
29832         * assembly.h: Remove corlib name define.
29833         * class.c:
29834         * domain.c:
29835         * image.c: Change corlib name to mscorlib.
29836         
29837 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29838
29839         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
29840
29841 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
29842
29843         * appdomain.h: Added loader_optimization here to sync with the C#
29844         code, and add disallow_binding_redirects field.
29845
29846 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29847
29848         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
29849
29850         * reflection.c (mono_image_build_metadata): Fix crash on modules
29851         with no types.
29852
29853         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
29854
29855         * icall.c (ves_icall_get_method_info): Return callingConvention as
29856         well.
29857
29858         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
29859         namespaces from the EXPORTEDTYPE table as well.
29860
29861         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
29862         from all modules inside the assembly.
29863         
29864 2003-11-11  Martin Baulig  <martin@ximian.com>
29865
29866         * reflection.c (mono_reflection_bind_generic_parameters): Make
29867         this work for interfaces.
29868
29869 2003-11-11  Martin Baulig  <martin@ximian.com>
29870
29871         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
29872
29873 2003-11-11  Martin Baulig  <martin@ximian.com>
29874
29875         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
29876         "MonoInflatedMethod" and "MonoInflatedCtor".
29877
29878 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29879
29880         * reflection.c (resolution_scope_from_image): Use the assembly table
29881         from the manifest module, since other modules don't have it.
29882
29883         * debug-helpers.c (mono_type_full_name): New helper function.
29884
29885         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
29886
29887         * image.c (mono_image_load_file_for_image): New public function which
29888         is a replacement for the load_file_for_image in class.c.
29889
29890         * assembly.c (mono_assembly_load_module): A wrapper for the function
29891         above which does assembly association and reference loading too.
29892
29893         * class.c (mono_class_from_name): Call mono_assembly_load_module.
29894
29895 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29896
29897         * appdomain.c: not all of the attributes for the full assembly name
29898         are required and the order doesn't matter. Fixes bug #50787.
29899
29900 2003-11-10  Dick Porter  <dick@ximian.com>
29901
29902         * locales.c: Use platform-endian UTF16
29903
29904 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29905
29906         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29907         
29908 2003-11-10  Martin Baulig  <martin@ximian.com>
29909
29910         * metadata.c
29911         (mono_metadata_load_generic_params): Make this actually work.
29912
29913         * reflection.c (mono_reflection_bind_generic_parameters): If our
29914         parent is a generic instance, pass all the `types' to it, no
29915         matter whether it has the same number of type parameters or not.
29916
29917 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29918
29919         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29920
29921         * assembly.c (mono_assembly_load_references): Move the image<->assembly
29922         assignment code to this function so it gets called recursively for all
29923         modules.
29924
29925         * image.c (load_modules): Remove the assembly assignment since it is
29926         now done by mono_assembly_load_references.
29927         
29928         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29929         Add 'module' argument.
29930         (mono_module_get_types): New helper function.
29931         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
29932
29933 2003-11-08  Martin Baulig  <martin@ximian.com>
29934
29935         * class.c (mono_class_inflate_generic_method): Interface method
29936         don't have a header.
29937
29938         * reflection.c (mono_image_get_methodspec_token): Take an
29939         additional `MonoGenericInst *' argument instead of reading it from
29940         the header; this is necessary to support interfaces.
29941         (mono_image_create_token): Pass the `MonoGenericInst *' from the
29942         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
29943         (inflated_method_get_object): Take an additional `MonoGenericInst *'
29944         argument.
29945
29946         * reflection.h (MonoReflectionInflatedMethod): Added
29947         `MonoGenericInst *ginst'.
29948
29949 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
29950
29951         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
29952
29953 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
29954
29955         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
29956
29957 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
29958
29959         * reflection.c 
29960         (reflection_methodbuilder_from_method_builder):
29961         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
29962         initialize a ReflectionMethodBuilder structure.
29963         (mono_image_get_methodbuilder_token):
29964         (mono_image_get_ctorbuilder_token): New functions to emit memberref
29965         tokens which point to types in another module inside the same assembly.
29966
29967         * reflection.c: Use the new helper functions.
29968         
29969         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
29970
29971         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
29972         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
29973
29974         * reflection.c (resolution_scope_from_image): Emit a moduleref if
29975         neccesary.
29976
29977         * reflection.c (mono_image_build_metadata): Emit metadata only for the
29978         current module. Emit the manifest only for the main module.
29979
29980         * reflection.c (mono_image_create_token): Add assertion when a 
29981         memberref needs to be created.
29982
29983         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
29984
29985         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
29986         larger buffer for the custom attribute blob. Fixes #50637.
29987         
29988 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29989
29990         * threadpool.c: notify listener on async processing handles after
29991         invoking the async callback. Thanks to Zoltan.
29992
29993 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29994
29995         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
29996         avoid code duplication.
29997
29998         * reflection.h (MonoDynamicImage): New type which is currently unused,
29999         but will be used through the ref.emit code in place of 
30000         MonoDynamicAssembly.
30001
30002         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30003         object layout.
30004
30005         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
30006         a MonoDynamicImage instead of just a MonoImage.
30007         
30008         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
30009         icalls to ModuleBuilder but keep their semantics, so they will work
30010         with moduleb->assemblyb. This will change later.
30011         
30012 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30013
30014         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30015         object layout.
30016
30017         * reflection.c (mono_image_build_metadata): Avoid creation of a default
30018         main module, since it is now done by the managed code.
30019
30020 2003-11-03  Martin Baulig  <martin@ximian.com>
30021
30022         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
30023         `ginst->klass' here.
30024         (method_encode_methodspec): Don't use the `ginst->generic_method's
30025         klass if it's a generic instance, use `ginst->klass' in this case.
30026
30027 2003-11-03  Martin Baulig  <martin@ximian.com>
30028
30029         * reflection.c (mono_image_get_generic_method_param_info):
30030         Removed, use mono_image_get_generic_param_info() instead.
30031         (mono_image_get_type_info): Write the GenericParam table before
30032         the Method table.  This is neccessary because in the GenericParam
30033         table, type parameters of the class (ie. '!0' etc.) must come
30034         before the ones from its generic methods (ie. '!!0' etc).
30035
30036 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30037
30038         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
30039
30040 2003-11-02  Martin Baulig  <martin@ximian.com>
30041
30042         * reflection.c (create_generic_typespec): Take a
30043         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
30044         the generic parameters from it.
30045
30046 2003-11-02  Martin Baulig  <martin@ximian.com>
30047
30048         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
30049         instead of a `MonoClassField *' since we just need the type.
30050         (create_generic_typespec): New static function.  Creates a
30051         TypeSpec token for a generic type declaration.
30052         (mono_image_get_generic_field_token): New static function.
30053         (mono_image_create_token): If we're a FieldBuilder in a generic
30054         type declaration, call mono_image_get_generic_field_token() to get
30055         the token.
30056
30057 2003-11-02  Martin Baulig  <martin@ximian.com>
30058
30059         * reflection.h
30060         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
30061         `MonoReflectionGenericInst *declaring_type' and
30062         `MonoReflectionGenericInst *reflected_type' fields.
30063
30064         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
30065         `MonoReflectionGenericInst *declaring_type' and a
30066         `MonoReflectionGenericInst *reflected_type' argument instead of a
30067         single `MonoReflectionGenericInst *type' one.  Set
30068         `res->declaring_type' and `res->reflected_type' from them.
30069         (mono_reflection_inflate_field): Likewise.      
30070
30071 2003-11-02  Martin Baulig  <martin@ximian.com>
30072
30073         * class.c (mono_class_setup_vtable): Don't store generic methods
30074         in the vtable.  
30075
30076 2003-11-02  Martin Baulig  <martin@ximian.com>
30077
30078         * reflection.h (MonoReflectionGenericInst): Added
30079         `MonoReflectionType *declaring_type'.
30080
30081         * reflection.c (mono_reflection_bind_generic_parameters): Use
30082         `if (tb->parent)' instead of `klass->parent'.
30083
30084 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
30085
30086         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
30087         with an empty ASSEMBLY table.
30088
30089         * reflection.c (mono_image_build_metadata): Avoid using the same loop
30090         variable in the inner and outer loops.
30091
30092 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
30093
30094         * metadata.h (mono_metadata_make_token): Put parentheses around macro
30095         argument.
30096
30097         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
30098         
30099         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
30100         icalls. Instead, do everything in managed code. This is needed since
30101         it is hard to restore the original domain etc. in unmanaged code in the
30102         presence of undeniable exceptions.
30103
30104         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
30105         New icalls to push and pop appdomain refs.
30106
30107 2003-10-31  Martin Baulig  <martin@ximian.com>
30108
30109         * class.c (inflate_generic_type): Renamed to
30110         mono_class_inflate_generic_type() and made it public.
30111
30112         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
30113         New interncall.
30114
30115         * loader.c (mono_field_from_memberref): Also set the retklass for
30116         typespecs.
30117
30118         * fielder.c (mono_image_get_inflated_field_token): New static
30119         method; creates a metadata token for an inflated field.
30120         (mono_image_create_token, fixup_method): Added support for
30121         "MonoInflatedField".
30122         (fieldbuilder_to_mono_class_field): New static function.
30123         (mono_reflection_inflate_field): New public function.
30124
30125         * reflection.h
30126         (MonoReflectionGenericInst): Added `MonoArray *fields'.
30127         (MonoReflectionInflatedField): New typedef.     
30128
30129 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
30130
30131         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
30132         for Solaris and other platforms without s6_addr16
30133
30134 2003-10-30  Martin Baulig  <martin@ximian.com>
30135
30136         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
30137         argument instead of two.
30138         (mono_class_inflate_generic_signature): Likewise.
30139         (inflate_generic_header): Likewise.
30140         (mono_class_inflate_generic_method): Likewise.  In addition, if
30141         `ginst->klass' is set, it becomes the new `method->klass'.
30142
30143         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
30144         field.
30145
30146         * reflection.c (encode_generic_method_sig): Write a 0xa as the
30147         first byte. [FIXME]
30148         (method_encode_methodspec): If we have generic parameters, create
30149         a MethodSpec instead of a MethodRef.
30150         (fixup_method): Added support for "MonoInflatedMethod" and
30151         "MonoInflatedCtor".
30152         (mono_image_create_token): Added support for "MonoInflatedMethod"
30153         and "MonoInflatedCtor".
30154         (inflated_method_get_object): New static function; returns a
30155         managed "System.Reflection.MonoInflatedMethod" object.
30156         (mono_reflection_bind_generic_method_parameters): Return a
30157         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
30158         (mono_reflection_inflate_method_or_ctor): Likewise.
30159         (mono_image_get_generic_method_param_info): Initialize unused
30160         fields to zero.
30161         (mono_image_get_generic_param_info): Likewise.
30162
30163         * reflection.h (MonoReflectionInflatedMethod): New public
30164         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
30165         "S.R.MonoInflatedCtor" classes.
30166
30167         * loader.c (method_from_memberref): If we're a TypeSpec and it
30168         resolves to a generic instance, inflate the method.
30169
30170 2003-10-28  Dick Porter  <dick@ximian.com>
30171
30172         * object.c (mono_runtime_run_main): Convert command-line arguments
30173         into utf8, falling back to the user's locale encoding to do so.
30174
30175 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
30176
30177         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
30178         at this time.
30179
30180         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
30181
30182         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
30183         up icalls at method definition time. Partially fixes #33569.
30184
30185 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
30186
30187         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
30188         marshalling of arrays. Fixes #50116.
30189
30190         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
30191
30192         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
30193         points to a vtable in the dying appdomain.
30194
30195         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
30196         listeners into unmanaged code inside the lock.
30197
30198         * object.c (mono_class_vtable): Turn off typed allocation in non-root
30199         domains and add some comments.
30200
30201 2003-10-25  Martin Baulig  <martin@ximian.com>
30202
30203         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
30204
30205         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
30206
30207         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
30208         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
30209         currently parsing.  Create the generic class and store it in
30210         `generic_inst->klass' before parsing the type arguments.  This is
30211         required to support "recursive" definitions; see mcs/tests/gen-23.cs
30212         for an example.
30213         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
30214         to support recursive typespec entries.
30215
30216         * class.c (mono_class_setup_parent): If our parent is a generic
30217         instance, we may get called before it has its name set.
30218         (mono_class_from_generic): Splitted into
30219         mono_class_create_from_generic() and mono_class_initialize_generic().
30220
30221 2003-10-25  Martin Baulig  <martin@ximian.com>
30222
30223         * icall.c (ves_icall_Type_BindGenericParameters): Return a
30224         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
30225         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
30226         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
30227
30228         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
30229         (create_typespec): Likewise.
30230         (mono_reflection_bind_generic_parameters): Return a
30231         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
30232         (mono_reflection_inflate_method_or_ctor): New public function.
30233
30234         * reflection.h (MonoReflectionGenericInst): New typedef.        
30235
30236 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
30237
30238         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
30239         inside the domain lock. Fixes #49993.
30240         
30241         * object.c (mono_class_vtable): When typed allocation is used, 
30242         allocate vtables in the GC heap instead of in the mempool, since the
30243         vtables contain GC descriptors which are used by the collector even
30244         after the domain owning the mempool is unloaded.
30245
30246         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
30247
30248         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
30249         reflect what it does. Also invalidate mempools instead of freeing
30250         them if a define is set.
30251
30252         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
30253         of the appdomain.
30254         
30255         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
30256         hold the finalizable objects in this domain.
30257
30258         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
30259         appdomain.
30260
30261         * appdomain.c (mono_domain_set): New function to set the current
30262         appdomain, but only if it is not being unloaded.
30263
30264         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
30265         appdomain which is being unloaded.
30266         
30267         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
30268         unloading of the root appdomain.
30269
30270         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
30271         icall to execute a method in another appdomain. Intended as a 
30272         replacement for InternalSetDomain, which can confuse the code 
30273         generation in the JIT.
30274
30275         * appdomain.c (mono_domain_is_unloading): New function to determine
30276         whenever an appdomain is unloading.
30277
30278         * appdomain.c (mono_domain_unload): New function to correctly unload
30279         an appdomain.
30280
30281         * assembly.c (mono_assembly_load_references): Check that an assembly
30282         does not references itself.
30283
30284         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
30285         domain manually, it asks the finalizer thread to do it, then waits for
30286         the result. Also added a timeout.
30287
30288         * icall.c: Register the new icalls.
30289
30290         * threads.h threads.c: Export the mono_gc_stop_world and 
30291         mono_gc_start_world functions.
30292         
30293         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
30294         function to fill out the mempool with 0x2a.
30295
30296 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
30297
30298         * reflection.h (MonoReflectionMethodAux): New structure to store
30299         information which is rarely used, thus is not in the MonoMethod
30300         structure.
30301
30302         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
30303         store the aux info.
30304
30305         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
30306         and marshalling info into the aux structure.
30307
30308         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
30309         from the aux structure.
30310
30311         * loader.c (mono_method_get_param_names): Retrieve the param names from
30312         the aux structure.
30313         
30314 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
30315
30316         * exception.h exception.c: Add AppDomainUnloadedException && fix 
30317         warning.
30318
30319 2003-10-21  Dick Porter  <dick@ximian.com>
30320
30321         * socket-io.c
30322         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
30323         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
30324
30325 2003-10-21  Martin Baulig  <martin@ximian.com>
30326
30327         * reflection.c (mono_reflection_bind_generic_parameters):
30328         `klass->parent' is NULL for interfaces.
30329
30330 2003-10-21  Martin Baulig  <martin@ximian.com>
30331
30332         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30333
30334 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
30335
30336         * exception.c (mono_exception_from_name_msg): New helper function for
30337         creating exceptions and initializing their message field.
30338
30339         * exception.c: Simplify functions using the new helper.
30340
30341         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
30342         New function.
30343
30344         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
30345         mono_raise_exception, since otherwise gcc doesn't generate the function
30346         epilog for raise_exception, confusing the stack unwinding in the JIT.
30347         Fixes #45043.
30348
30349         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
30350         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
30351         Fixes #49499.
30352
30353 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30354
30355         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
30356         utf8.
30357
30358 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
30359
30360         * icall.c: Removed GetUninitializedObject method because
30361           AllocateUninitializedClassInstance does the same.
30362
30363 2003-10-18  Martin Baulig  <martin@ximian.com>
30364
30365         * class.c (inflate_generic_signature): Renamed to
30366         mono_class_inflate_generic_signature() and made it public.
30367         (my_mono_class_from_generic_parameter): New static function; if we
30368         don't already have the generic parameter's MonoClass, create a
30369         very simple one which is just used internally in the runtime and
30370         not passed back to managed code.
30371
30372         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
30373
30374         * metadata.h (MonoMethodSignature): Moved the
30375         `MonoGenericParam *gen_params' to the MonoMethodHeader.
30376         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
30377
30378         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
30379         ves_icall_MonoMethod_GetGenericArguments(); this is now an
30380         interncall on the MonoMethod class, not on MethodInfo.
30381         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
30382         calling mono_reflection_bind_generic_method_parameters() directly.
30383
30384         * loader.c (mono_method_get_signature): If this is a MethodSpec;
30385         return the already computed `method->signature'.
30386         (method_from_methodspec): New static function to load a method
30387         from a MethodSpec entry.
30388         (mono_get_method_from_token): Call the new method_from_methodspec()
30389         for MethodSpec tokens.  
30390         (mono_get_method_from_token): If we're a generic method, load the
30391         type parameters.
30392
30393         * reflection.c (mono_image_get_memberref_token): Allow
30394         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
30395         table.
30396         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
30397         (mono_image_create_token): First check whether it's a generic
30398         method (so we'd need to create a MethodSpec), then do the other
30399         two alternatives.
30400         (mono_reflection_bind_generic_method_parameters): Return a
30401         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
30402         called directly from the interncall.
30403
30404 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
30405
30406         * reflection.c (load_public_key): Move loading of the public key
30407         into managed code.
30408
30409         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
30410
30411         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
30412         fields.
30413
30414         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
30415         culture, hash_alg and public_key. Fixes #49555.
30416
30417 2003-10-17  Martin Baulig  <martin@ximian.com>
30418
30419         * class.h (MonoGenericInst): Moved this declaration here and added
30420         `MonoMethod *generic_method'.
30421
30422         * icall.c
30423         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
30424         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
30425
30426         * metadata.c (mono_metadata_type_equal): Two types of
30427         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
30428         index; ie. don't compare the address of the `MonoGenericParam'
30429         structure.
30430         (mono_metadata_load_generic_params): Removed the `MonoMethod
30431         *method' argument.
30432
30433         * metadata.h (MonoGenericInst): Moved declaration to class.h.
30434         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
30435
30436         * reflection.c (method_encode_signature): Encode the number of
30437         generic parameters.
30438         (encode_generic_method_sig): New static function.
30439         (method_encode_methodspec): New static function; creates an entry
30440         in the MethodSpec table for a generic method.
30441         (mono_image_get_methodspec_token): New static function.
30442         (mono_image_create_token): Call mono_image_get_methodspec_token()
30443         for generic methods.
30444         (mono_reflection_bind_generic_method_parameters): New public
30445         function.  Instantiates a generic method.
30446
30447 2003-10-16  Martin Baulig  <martin@ximian.com>
30448
30449         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
30450         *gen_params' here from MonoMethodHeader.
30451
30452         * metadata.c (mono_metadata_parse_method_signature): If we have
30453         generic parameters, initialize `method->gen_params' and then set
30454         the correct `type->data.generic_param' in all the parameters.
30455
30456 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
30457
30458         * threads.c (mono_threads_get_default_stacksize): New function to 
30459         return the default stacksize.
30460
30461         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
30462         termination of the finalizer thread, since the previous method had
30463         race conditions. Fixes #49628.
30464
30465         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
30466         as for the other managed threads.
30467
30468 2003-10-16  Martin Baulig  <martin@ximian.com>
30469
30470         * class.c (inflate_generic_signature): Copy `generic_param_count'
30471         and `gen_params'.
30472
30473         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
30474         New interncall.
30475
30476         * metadata.c (mono_metadata_parse_method_signature): Actually set
30477         the `method->generic_param_count' here.
30478         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
30479
30480 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
30481
30482         * object.h: Add a new field to TypedRef to simplify the implementation
30483         of the REFANY opcodes in the JIT.
30484
30485         * icall.c: Make use of the new field.
30486
30487         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
30488         dynamically.
30489
30490 2003-10-15  Martin Baulig  <martin@ximian.com>
30491
30492         * class.c (mono_class_from_gen_param): Renamed to
30493         mono_class_from_generic_parameter() and moved most of the
30494         functionality from mono_reflection_define_generic_parameter()
30495         here; ie. we create a "real" class here.
30496         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
30497         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
30498         previously been called.
30499
30500         * class.h (MonoGenericParam): Moved the declaration of this struct
30501         here from metadata.h and added `MonoMethod *method'.
30502
30503         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
30504         interncall.
30505
30506         * loader.c (mono_get_method_from_token): If we have any generic
30507         parameters, call mono_metadata_load_generic_params() to read them
30508         from the MONO_TABLE_GENERICPAR.
30509
30510         * metadata.c (mono_metadata_load_generic_params): Added
30511         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
30512
30513         * metadata.h (MonoMethodSignature): Replaced
30514         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
30515         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
30516
30517         * reflection.c (mono_reflection_define_generic_parameter): Moved
30518         most of the functionality into the new
30519         mono_class_from_generic_parameter(); set the `method' field if
30520         we're a method parameter.       
30521
30522 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
30523
30524         * marshal.c (emit_struct_conv): if native size is 0
30525         emit no code.
30526
30527 2003-10-14  Martin Baulig  <martin@ximian.com>
30528
30529         * icall.c: The generics API has changed in the spec since it was
30530         added to System.Type; these modifications make it match the spec
30531         again.
30532         (ves_icall_Type_GetGenericParameters): Renamed to
30533         `ves_icall_Type_GetGenericArguments'.
30534         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
30535         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
30536         `ves_icall_MonoType_get_HasGenericArguments'.
30537         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
30538         `ves_icall_MonoType_get_IsGenericParameter'.
30539         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
30540         this is no interncall anymore.
30541         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
30542         `ves_icall_TypeBuilder_get_IsGenericParameter'.
30543
30544 2003-10-14  Martin Baulig  <martin@ximian.com>
30545
30546         * reflection.c (mono_reflection_bind_generic_parameters): Also
30547         inflate generic methods if we're reading the class from IL.
30548
30549 2003-10-13  Martin Baulig  <martin@ximian.com>
30550
30551         * reflection.c (mono_reflection_define_generic_parameter): This
30552         method isn't called directly from the icall anymore; take a
30553         `MonoReflectionAssemblyBuilder *' so we can use this for type and
30554         method generic parameters.
30555         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
30556         (method_builder_encode_signature): Encode generic parameters.
30557         (mono_image_get_method_info): Write generic params to the
30558         MONO_TABLE_GENERICPARAM table.
30559
30560         * reflection.h (MonoReflectionMethodBuilder): Added
30561         `MonoArray *generic_params'.
30562
30563         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
30564
30565         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
30566         wrapper for mono_reflection_define_generic_parameter().
30567         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
30568
30569 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
30570
30571         * marshal.h: Add missing function to fix build.
30572
30573         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
30574         the SetLastError pinvoke attribute.
30575
30576         * marshal.c (mono_marshal_set_last_error): New helper function called
30577         by the generated code.
30578         
30579         * marshal.c (mono_mb_emit_branch): New helper function.
30580
30581         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
30582
30583         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30584         classes as parameters and return values of delegates. Fixes #29256. 
30585
30586 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
30587
30588         * locales.c: use gint32 in non HAVE_ICU case
30589
30590 2003-10-11  Martin Baulig  <martin@ximian.com>
30591
30592         * mono-debug.c (mono_debug_add_method): Added a workaround for
30593         bug #48591.
30594
30595 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
30596
30597         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
30598         delegates passed to native code must use the STDCALL calling 
30599         convention. Fixes #35987.
30600
30601 2003-10-10  Martin Baulig  <martin@ximian.com>
30602
30603         * class.c (inflate_generic_type): If we're inflating for a generic
30604         type instance (and not for a generic method), return
30605         MONO_TYPE_MVAR unchanged.
30606
30607 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30608
30609         * string-icalls.c: Join ignores null strings in the source array.
30610         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
30611         * threads.c: GetAvailableTheads is slightly more accurate.
30612
30613 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
30614
30615         * threads.h threads.c : add mono_threads_set_default_stacksize
30616         and pass default to CreateThread calls.
30617
30618 2003-10-09  Dick Porter  <dick@ximian.com>
30619
30620         * icall.c:
30621         * locales.h:
30622         * locales.c: Internal calls for constructing CultureInfo and
30623         related objects from libicu (if its available.)
30624
30625 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
30626
30627         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
30628
30629 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30630
30631         * threadpool.c: added an argument to async_invoke_thread that is the
30632         item to process, pass the MonoAsyncResult to the thread start function
30633         when creating a new thread. This way we don't need to acquire any lock
30634         when we're creating a new thread. Readded a semaphore for faster
30635         response times (instead of that Sleep i added).
30636
30637 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
30638
30639         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
30640         get daylight change dates better on Windows, fix handling
30641         of platforms without tm_gmtoff.
30642
30643 2003-10-06  Martin Baulig  <martin@ximian.com>
30644
30645         * class.c (inflate_generic_method): Renamed to
30646         mono_class_inflate_generic_method() and made public.
30647         (mono_class_init): Don't inflate the generic methods here.
30648         (mono_class_from_generic): Added `gboolean inflate_methods'
30649         argument.  Inflate the methods here.
30650
30651         * loader.c (mono_method_get_param_names): Ignore instances of
30652         generic types for the moment.
30653
30654         * reflection.c (fixup_method): Added support for inflated methods.
30655         (mono_image_create_token): Use mono_image_get_methodref_token()
30656         for inflated methods.
30657         (mono_custom_attrs_from_param): Ignore instances of generic types
30658         for the moment.
30659         (mono_reflection_bind_generic_parameters): New public function.
30660         Moved all the functionality from
30661         ves_icall_Type_BindGenericParameters() here and added support for
30662         dynamic types.
30663         (mono_reflection_define_generic_parameter): Initialize
30664         `klass->methods' here.
30665
30666         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
30667         functionality into mono_reflection_define_generic_parameter().
30668         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
30669         TypeBuilder, return that TypeBuilder.
30670
30671 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30672
30673         * appdomain.c: removed mono_delegate_semaphore.
30674
30675         * threadpool.c:
30676         (mono_thread_pool_add): moved hash table creation inside and the thread 
30677         creation outside of the critical region.
30678         (mono_thread_pool_finish): removed obsolete code.
30679         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
30680         continue or exit the thread depending on the queue.
30681
30682 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
30683
30684         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
30685         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
30686         handle more bool marshalling options
30687
30688 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
30689
30690         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
30691         arrays of structs. Also add a more descriptive error message when
30692         a structure member is marshalled as LPArray.
30693
30694 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
30695
30696         * marshal.c (mono_marshal_get_native_wrapper): Add support for
30697         marshalling arrays of complex types. Fixes #29098. Also remove an
30698         usused and incomplete function.
30699
30700 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
30701
30702         * gc.c: report heap_size - free_bytes as total memory allocated
30703         (bug#49362).
30704
30705 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
30706
30707         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
30708         fix timezone handling problems on Windows.
30709         
30710         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
30711         asserts when the year is outside the range handled by ms the functions.
30712
30713         * class.c (setup_interface_offsets): If the class is an interface,
30714         fill out its interface_offsets slot.
30715
30716 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30717
30718         * threadpool.c: mark threadpool threads as background.
30719
30720 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
30721
30722         * decimal.c - define DECINLINE to nothing if not using GCC
30723
30724 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
30725
30726         * assembly.c: More refcount fixes.
30727
30728 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30729
30730         * string-icalls.c: if we're not trimming, return the same string.
30731         When not splitting, don't create a new string.
30732
30733 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30734
30735         * image.c:
30736         (mono_image_open): increment the ref_count inside the critical section.
30737
30738 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
30739
30740         * image.c (mono_image_open): Fix reference counting bug.
30741
30742 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
30743
30744         * marshal.c (mono_marshal_type_size) struct alignment changed for 
30745         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
30746         64bits. Avoid leak in mono_marshal_get_native_wrapper when
30747         mono_lookup_pinvoke_call throws.        
30748
30749 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
30750
30751         * reflection.c (mono_reflection_parse_type): Fix #49114.
30752
30753         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
30754         temporary workaround for cygwin header problem.
30755
30756         * object.c (mono_object_isinst): Synchronize this with the code
30757         generated by the JIT for casts.
30758
30759 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
30760
30761         * reflection.c (encode_type): Fix #38332.
30762
30763 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
30764
30765         * marshal.c (mono_marshal_method_from_wrapper): New function to return
30766         the original method from the wrapper method.
30767
30768 2003-09-25  Martin Baulig  <martin@ximian.com>
30769
30770         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
30771         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
30772         (ves_icall_Type_get_IsGenericInstance): New interncall.
30773
30774 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
30775
30776         * object.c: fix cast warning in big endian code.
30777
30778 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
30779
30780         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
30781         
30782 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30783
30784         * assembly.c: don't call check_env from mono_assembly_load. It's
30785         already done once in mono_assemblies_init and may cause headaches when
30786         multiple threads are loading assemblies.
30787
30788 2003-09-19  Martin Baulig  <martin@ximian.com>
30789
30790         * reflection.c (mono_reflection_define_generic_parameter): Don't
30791         allocate `klass->methods', set `klass->flags' to
30792         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
30793
30794 2003-09-18  Martin Baulig  <martin@ximian.com>
30795
30796         * class.c (mono_class_init): Don't create `class->methods' if it's
30797         already initialized.
30798
30799         * metadata.c (mono_metadata_load_generic_params): Make this
30800         actually work.
30801
30802         * reflection.c (mono_reflection_define_generic_parameter): Set
30803         parent class and interfaces from the constraints.
30804
30805         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
30806         to keep this struct in sync with the declaration in TypeBuilder.cs.
30807
30808 2003-09-17  Martin Baulig  <martin@ximian.com>
30809
30810         * metadata.h (MonoType): Replaced the data's `int type_param'
30811         field with `MonoGenericParam *generic_param'.
30812         (MonoGenericParam): Added `MonoClass *klass'.
30813
30814         * class.c (mono_class_from_gen_param): Removed the
30815         `MonoImage *image' and `int type_num' arguments.
30816
30817         * metadata.c (mono_metadata_parse_generic_param): New static
30818         method; creates a MonoGenericParam which just contains the index.
30819         (do_mono_metadata_parse_type): Call
30820         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
30821         MONO_TYPE_MVAR.
30822
30823         * reflection.c (mono_image_typedef_or_ref): Generic type
30824         parameters may be in the same assembly, but never use a typedef
30825         for them.
30826         (mono_reflection_define_generic_parameter): We're now creating a
30827         "real" class for the type parameter; it's now safe to call
30828         mono_class_from_mono_type() on the class'es type, it'll do the
30829         right thing.
30830
30831 2003-09-16  Martin Baulig  <martin@ximian.com>
30832
30833         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
30834         `symfile->range_entry_size' and `symfile->class_entry_size' here;
30835         the `symfile' data structure must be fully initialized before it
30836         gets added to the table.
30837
30838 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
30839
30840         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
30841
30842         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
30843         class init trampolines.
30844
30845 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
30846
30847         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
30848         to the built-in profiler to turn off time and allocation profiling
30849         respectively.
30850
30851 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
30852
30853         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
30854         g_direct_equal.
30855
30856         * debug-helpers.c (mono_method_full_name): Print the wrapper type
30857         in human readable form.
30858
30859 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
30860
30861         * reflection.c icall.c: Fixed warnings.
30862
30863         * image.c (load_class_names): Use a temporary hash table to hold the
30864         namespaces in order to avoid doing many string comparisons.
30865
30866         * image.h: Fix typo.
30867
30868         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
30869         Pass NULL instead of g_direct_equal to the GHashTable constructor 
30870         since the NULL case is short-circuited inside g_hash_table_lookup, 
30871         leading to better performance.  
30872
30873         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
30874         obtain the first custom attribute for a given index. Depends on the
30875         CustomAttribute table being sorted by the parent field.
30876
30877         * reflection.c (mono_custom_attrs_from_index): Use the new function 
30878         for better performance.
30879
30880 2003-09-07  Martin Baulig  <martin@ximian.com>
30881
30882         * class.c (mono_class_init): If we're a generic instance, inflate
30883         all our methods instead of loading them from the image.
30884         (mono_class_from_generic): Set `class->methods = gklass->methods'.
30885
30886 2003-09-07  Martin Baulig  <martin@ximian.com>
30887
30888         * mono-debug-debugger.c: Added support for constructors.
30889
30890 2003-09-06  Martin Baulig  <martin@ximian.com>
30891
30892         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
30893         New interncall.
30894
30895         * reflection.c (mono_reflection_setup_generic_class): Call
30896         ensure_runtime_vtable() to create the vtable.
30897
30898 2003-09-05  Martin Baulig  <martin@ximian.com>
30899
30900         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
30901         MONO_TYPE_MVAR.
30902
30903 2003-09-04  Martin Baulig  <martin@ximian.com>
30904
30905         * reflection.c (mono_reflection_define_generic_parameter): Generic
30906         parameters start with zero.
30907
30908 2003-09-04  Martin Baulig  <martin@ximian.com>
30909
30910         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30911
30912         * reflection.h (MonoReflectionGenericParam): New typedef.
30913         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
30914         the generic parameters from the managed TypeBuilder.
30915
30916         * reflection.c (mono_reflection_define_generic_parameter): New function.
30917         (mono_reflection_create_runtime_class): Encode generic parameters.
30918         (mono_reflection_setup_generic_class): New function; this is
30919         called after adding adding all generic params to the TypeBuilder.
30920         (encode_type): Added MONO_TYPE_VAR.
30921
30922 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
30923
30924         * class.h class.c (mono_class_needs_cctor_run): Moved this method
30925         here from the JIT.
30926
30927         * assembly.h assembly.c: Moved the AOT loading code into an assembly
30928         load hook.
30929
30930 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
30931
30932         * reflection.h reflection.c class.h class.c: Delete duplicate 
30933         definition of mono_type_get_name () from reflection.c and export the
30934         one in class.c.
30935
30936         * class.c: Class loading fixes from Bernie Solomon 
30937         (bernard@ugsolutions.com).
30938
30939         * reflection.c: Endianness fixes from Bernie Solomon 
30940         (bernard@ugsolutions.com).
30941         
30942 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
30943
30944         * assembly.h assembly.c: Define a file format version for AOT
30945         libraries.
30946         
30947         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
30948
30949         * appdomain.h (MonoJitInfo): New field to determine whenever the
30950         code is domain neutral.
30951         
30952 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
30953
30954         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
30955
30956 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
30957
30958         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
30959         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
30960         Avoid caching the result since strings must be domain specific. Fixes
30961         #48050.
30962
30963 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
30964
30965         * marshal.c (mono_marshal_init): Make this callable multiple times
30966         since it is hard to find a correct place to call it.
30967
30968         * object.c (mono_runtime_class_init): Execute static constructors in
30969         the correct appdomain.
30970
30971         * image.c (build_guid_table): Handle the case when multiple images have
30972         the same GUID.
30973
30974 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30975
30976         * icall.c: added a couple of icalls for System.Web.
30977
30978 2003-08-28  Martin Baulig  <martin@ximian.com>
30979
30980         * icall.c (ves_icall_Type_BindGenericParameters): Use
30981         `klass->generic_inst' instead of `&klass->byval_arg' in the
30982         mono_type_get_object() call.  The returned type must be
30983         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
30984
30985 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
30986
30987         * NOTES: New file.
30988
30989         * object.c (mono_class_proxy_vtable): Make it thread safe.
30990
30991         * pedump.c: Fix warning.
30992
30993         * object.c appdomain.h: Get rid of metadata_section. 
30994         It is no longer needed and it was causing deadlocks with domain->lock.
30995
30996         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
30997
30998 2003-08-26  Martin Baulig  <martin@ximian.com>
30999
31000         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
31001
31002 2003-08-26  Martin Baulig  <martin@ximian.com>
31003
31004         * pedump.c (main): Call mono_metadata_init(),
31005         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
31006         and mono_loader_init().
31007
31008 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
31009
31010         * loader.h: Add missing include to fix build.
31011
31012         * image.h: mono_image_load_references is no more.
31013
31014         * assembly.c: Reworked assembly loading to make it really thread safe.
31015         After these changes, the assembly returned by mono_assembly_open is
31016         fully initialized, i.e. all its references assemblies are loaded.
31017
31018         * assembly.c (mono_image_load_references): Renamed to 
31019         mono_assembly_load_references, and made private, since clients no
31020         longer need to call it.
31021
31022         * class.c: Removed calls to mono_assembly_load_references, since it was
31023         a source of deadlocks.
31024
31025         * loader.h loader.c class.h class.c: Protect data structures using a 
31026         new lock, the loader lock.
31027
31028         * class.c (mono_class_setup_vtable): Create temporary hash tables and
31029         GPtrArrays only when needed.
31030
31031         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
31032         into empty structures by mcs. Fixes pinvoke7.cs.
31033         
31034         * domain.c (mono_init): Call a new initialization function.
31035
31036         * appdomain.c (mono_runtime_init): Call the new initializer function
31037         of the marshal module.
31038
31039         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
31040         inserted into empty structures by mcs. Fixes pinvoke7.cs.
31041
31042         * marshal.h marshal.c: Added locks around the wrapper caches to make
31043         this module thread safe.
31044
31045         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
31046         this argument. Fixes pinvoke1.exe.
31047
31048 2003-08-25  Lluis Sanchez <lluis@ximian.com>
31049
31050         * object.h: Added call_type field to MonoMethodMessage and the corresponding
31051         enumeration of values. Removed fields to store remote call output values in
31052         MonoAsyncResult. Not needed any more.
31053         * object.c: Initialize call_type and async_result fields in mono_message_init.
31054         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
31055         dispatching the message.
31056         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
31057         async call to finish. To do it use a message with EndInvoke call type.
31058
31059 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
31060
31061         * loader.h loader.c (mono_method_hash_marhal_info): New function which
31062         determines whenever a method has marshalling info.
31063
31064 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31065
31066         * assembly.c: fix the build on windows.
31067
31068 2003-08-22 Lluis Sanchez <lluis@ximian.com>
31069
31070         * object.cs: Fixed bug #47785.
31071
31072 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
31073
31074         * string-icalls.c (StringReplace): If their are no occurances of
31075         the old string found return a reference to the supplied
31076         string. This saves some memory and matches MS behavoir.
31077         
31078 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31079
31080         * socket-io.c: fixed compilation for systems that define AF_INET6
31081         and don't define SOL_IP/SOL_IPV6.
31082
31083 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
31084
31085         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
31086         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
31087
31088         * rawbuffer.c rawbuffer.h: Make this module thread safe.
31089
31090         * domain.c: Make this module thread safe.
31091
31092         * domain.c (mono_init): Call new initialization function.
31093
31094         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
31095         reference types too. Fixes #38812.
31096
31097         * image.c (mono_image_init): Fixed warnings.
31098
31099         * class.c (mono_class_from_typeref): Handle assembly load failure
31100         correctly.
31101
31102         * appdomain.c (add_assemblies_to_domain): Handle the case when
31103         the references of an assembly are not yet loaded.
31104
31105         * metadata.c image.c assembly.c: Moved initialization of global
31106         variables to a separate function called at startup since lazy 
31107         initialization of these variables is not thread safe.
31108         
31109         * image.c assembly.c: Made this module thread safe by adding locks in 
31110         the appropriate places.
31111
31112         * domain.c (mono_init): Call the new initialization functions of the
31113         three modules.
31114
31115 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
31116
31117         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
31118           make a direct call. It is proxy's work to make the call asynchronous.
31119           mono_delegate_end_invoke(): If the targe is a proxy, just collect
31120           the return values.
31121         * object.cs: mono_method_call_message_new(): read AsyncResult and
31122           state object from parameters list, if this info is requested.
31123         * object.h: Added fields to store remote call output values in
31124           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
31125
31126 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31127
31128         * object.h: add needed fields to MonoThread.
31129         * threads.c, threads.h: allow registering a function to cleanup data
31130         allocated per thread by the JIT.
31131
31132 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31133
31134         * loader.h: portability fix by Bernie Solomon
31135         * <bernard@ugsolutions.com>.
31136
31137 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
31138
31139         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
31140         return a MonoArray. This simplifies the code and also ensures that
31141         the cache allways contains an object reference as a value.
31142
31143         * icall.c (ves_icall_get_parameter_info): Simplified using the new
31144         function.
31145
31146 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31147
31148         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
31149         fixes a problem with byte ordering when getting the address family for
31150         a socket.
31151
31152 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
31153
31154         * .cvsignore: Added monosn.
31155
31156         * reflection.h reflection.c loader.c: Added support for parameter
31157         marshalling to dynamically created types. Fixes #47295.
31158
31159 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
31160
31161         * rand.c: remove useless warnings.
31162
31163 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31164
31165         * class.c: implemented ldtoken for methods and fieldrefs.
31166
31167 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31168
31169         * threadpool.c: when mono_async_invoke was called, no one took care of
31170         monitoring the queue. So if the method invoked took some time and we
31171         got new async invoke requests after 500 ms (the thread created waited
31172         that long in WaitForSingleObject), the new async invoke was not called
31173         until the previous one finished.
31174
31175         This is fixed now. Thanks to Totte for helping with it.
31176
31177 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31178
31179         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
31180
31181 2003-08-11  Martin Baulig  <martin@ximian.com>
31182
31183         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
31184
31185 2003-08-06  Martin Baulig  <martin@ximian.com>
31186
31187         * mono-debug-debugger.c: Added support for static fields,
31188         properties and methods.
31189
31190 2003-08-06  Martin Baulig  <martin@ximian.com>
31191
31192         * mono-debug-debugger.c: Don't store the MonoString's vtable to
31193         make this work for applications with multiple application domains.
31194
31195 2003-08-04  Martin Baulig  <martin@ximian.com>
31196
31197         * mono-debug-debugger.c: Completely reworked the type support; the
31198         most important thing is that we're now just using one single
31199         `MonoType' instance per type.
31200
31201 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
31202
31203         * mono-endian.h, mono-endian.c, icall.c: Added icall
31204         ves_icall_System_Double_AssertEndianity to assert double word endianity
31205         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
31206
31207 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31208
31209         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
31210         support, icalls and fixes.
31211
31212 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
31213
31214         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
31215         classes that are a punctuation character in .NET is not the same a
31216         g_unichar_ispunct.
31217
31218 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31219
31220         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
31221
31222 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
31223
31224         * icall.c: Add new MemCopy internalcall.
31225         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
31226         Simplified code; It is not necessary to handle all the cases here,
31227         as the C# code takes care of it.  Only handle the case of the name
31228         resource embedded into the assembly.
31229
31230         Changed signature to return the data pointer and the size of the
31231         data. 
31232
31233 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
31234
31235         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
31236         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
31237
31238 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31239
31240         * socket-io.c: ignore EINTR error in select.
31241
31242 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31243
31244         * class.h, class.c: removed unused subclasses field in MonoClass.
31245
31246 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31247
31248         * icall.c: improve fix of get_base_definition(). If the parent class
31249           doesn't have the mehod, look at the parent of the parent.
31250         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
31251           to check if a parameter is an in or out parameter
31252           (PARAM_ATTRIBUTE_IN is not set by default).
31253           mono_method_return_message_restore(): Use mono_class_value_size to
31254           get the size of a value type. mono_type_stack_size (parameterType)
31255           does not return the correct value if parameterType is byRef.
31256           mono_load_remote_field(), mono_load_remote_field_new(),
31257           mono_store_remote_field(), mono_store_remote_field_new():
31258           raise exception if the remote call returns an exception.
31259
31260 2003-07-28  Martin Baulig  <martin@ximian.com>
31261
31262         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
31263         method.  This is a wrapper around mono_runtime_invoke() which
31264         boxes the instance object if neccessary.
31265
31266 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31267
31268         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
31269         metadata.h, row-indexes.h, verify.c: first cut of generics support.
31270
31271 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31272
31273         * icall.c: disable mcs bug workaround.
31274
31275 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
31276
31277         * object.c (mono_runtime_class_init): Take the metadata_section
31278         mutex before obtaining the domain mutex.
31279
31280         * appdomain.h: Added definition of metadata_section mutex here. 
31281
31282         * object.c: define metadata_mutex here.
31283
31284 2003-07-24  Ravi Pratap  <ravi@ximian.com>
31285
31286         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
31287         fixed.
31288
31289 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
31290
31291         * reflection.c: Fix bug #46669
31292
31293 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31294
31295         * exception.c:
31296         * exception.h:
31297         * icall.c:
31298         * object.h: fill in the type name for TypeLoadException.
31299
31300 2003-07-23  Ravi Pratap  <ravi@ximian.com>
31301
31302         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
31303         relationship between TypeBuilders while compiling corlib) and bug
31304         45993 (Array types returned from the runtime while compiling
31305         corlib were from the loaded corlib).
31306
31307 2003-07-22  Martin Baulig  <martin@ximian.com>
31308
31309         * mono-debug-debugger.c: Reworked the type support a bit more;
31310         distinguish between types and classes.
31311
31312 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
31313
31314         * icall.c: add IsArrayImpl icall.
31315
31316 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
31317
31318         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
31319         initializing real_size only once. Also fix bug #46602.
31320
31321 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
31322
31323         * object.c: Renamed mono_metadata_section to metadata_section.
31324
31325 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
31326
31327         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
31328           empty array if the type is an array. Fixed.
31329           ves_icall_MonoMethod_get_base_definition: if the base method
31330           is abstract, get the MethodInfo from the list of methods of
31331           the class.
31332         * reflection.c: ParameterInfo.PositionImpl should be zero-based
31333           and it was 1-based. Fixed in mono_param_get_objects.
31334
31335 2003-07-20  Martin Baulig  <martin@ximian.com>
31336
31337         * mono-debug.h: Set version number to 31.
31338         (mono_debug_init): Added `MonoDomain *' argument.
31339
31340         * mono-debug-debugger.c: Reworked the type support; explicitly
31341         tell the debugger about builtin types; pass the `klass' address to
31342         the debugger.
31343
31344 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
31345
31346         * image.c: Allow new metadata tables to be loaded without a
31347         warning. Also update the warning message to give the new constant value.
31348                 
31349 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
31350
31351         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
31352         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
31353         array type representation changes.
31354
31355 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31356
31357         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
31358         on Environment.Exit () call.
31359
31360 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31361
31362         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
31363         requires a matching corlib.
31364
31365 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31366
31367         * Changelog: My editor decided to add a CR to each line. Sorry about that.
31368           Committed again without the CRs.
31369         
31370 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31371
31372         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
31373           getting it from the "this" socket instance. Did not work
31374           if the socket is a subclass of Socket.
31375           Also fixed bug #35371.
31376
31377 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31378
31379         * metadata.c: fixed size for TypedByRef.
31380         * loader.c: when searching for a method, consider the vararg amrker.
31381         * unicode.c, decimal.c: constify some arrays.
31382
31383 2003-07-15  Dick Porter  <dick@ximian.com>
31384
31385         * socket-io.c: Fixed compilation for gcc < 3.2.
31386
31387         Fixed compilation for machines that don't have AF_INET6 (thanks to
31388         Bernie Solomon <bernard@ugsolutions.com> for that part.)
31389
31390         Fixed compile warnings.
31391         
31392         Fixed formatting and line endings.
31393
31394 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
31395
31396         * socket-io.h:
31397         * socket-io.c: Added IPv6 support.
31398
31399 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
31400
31401         * class.c (mono_class_is_assignable_from): New function to implement
31402         the is_assignable_from logic. Used by mono_object_isinst, 
31403         Type::IsAssignableFrom () and the interpreter.
31404
31405         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
31406         Object, even interfaces.
31407         
31408         * object.c (mono_object_isinst): Implement in terms of 
31409         is_assignable_from.
31410
31411         * icall.c (ves_icall_type_is_assignable_from): New icall.
31412
31413 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
31414
31415         * domain.c (foreach_domain): fix compiler warning.
31416
31417 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
31418
31419         * image.c (load_metadata_ptrs): use g_strndup because strndup is
31420         not available on all plattforms
31421
31422 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
31423
31424         * image.h image.c: Store the metadata version string in MonoImage.
31425         * icall.c: New icall to retrieve the image version.
31426         * reflection.c (create_dynamic_image): Fill in the image version field
31427         * reflection.c (build_compressed_metadata): Use the image version
31428         from the image structure.
31429
31430 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31431
31432         * appdomain.c: modified comment.
31433         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
31434         That will be its last iteration when mono_gc_cleanup is called from
31435         mono_runtime_cleanup and before the domain is unloaded.
31436
31437         Fixes bug #45962.
31438
31439 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
31440
31441         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
31442         attributes.
31443
31444 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31445
31446         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
31447         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
31448         Bernie Solomon <bernard@ugsolutions.com>.
31449
31450 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31451
31452         * object.c, object.h: provide mono_object_new_fast() for faster
31453         allocation in some special cases.
31454
31455 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
31456
31457         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
31458         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
31459
31460 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
31461
31462         * threadpool.c: fix leaks.
31463
31464 2003-07-01  Dick Porter  <dick@ximian.com>
31465
31466         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
31467         using MonoGHashTables.  Fixes threadpool bug posted to list.
31468
31469 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31470
31471         * image.h, image.c: added support to load an assembly from a byte array.
31472         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
31473         assembly bundle support.
31474
31475 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
31476
31477         * threadpool.c (mono_thread_pool_add): keep a reference to the
31478         AsyncResult to prevent GC
31479
31480 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31481
31482         * class.c: leak fix.
31483
31484 2003-06-25  Dick Porter  <dick@ximian.com>
31485
31486         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
31487         for the async object, the WaitHandle object will close the handle.
31488         Fixes bug 45321.
31489
31490 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31491
31492         * class.c: in mono_array_class_get (), lookup from the hash with the
31493         same type we insert: this works around a bug in
31494         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
31495         lluis. The real fix will have to wait for after the release.
31496
31497 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31498
31499         * icall.c: fix memory leak when getting type members.
31500
31501 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31502
31503         * reflection.c: added more pubtoken special cases.
31504
31505 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
31506
31507         * class.c: handle field offset correctly when class size
31508         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
31509
31510 2003-06-20  Martin Baulig  <martin@ximian.com>
31511
31512         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
31513         *image' field.
31514
31515 2003-06-20  Martin Baulig  <martin@ximian.com>
31516
31517         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
31518
31519 2003-06-20  Martin Baulig  <martin@ximian.com>
31520
31521         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
31522         just distinguish between variables in registers and variables at
31523         an offset relative to a register.
31524
31525 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31526
31527         * icall.c: #ifdef out latest changes until mcs is fixed.
31528
31529 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31530
31531         * icall.c: return members in metadata order.
31532
31533 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31534
31535         * icall.c: avoid infinite loop in GetTimeZoneData.
31536
31537 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
31538
31539         * icall.c: added Marshal.Prelink/All icalls.
31540
31541 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31542
31543         * object.c, object.h: fix warnings and do some overflow checking
31544         when creating arrays.
31545
31546 2003-06-17  Dick Porter  <dick@ximian.com>
31547
31548         * file-io.h:
31549         * file-io.c: File attributes need to be tweaked slightly when
31550         passed from the managed to the w32 world.
31551
31552 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31553         * profiler.h profiler-private.h profiler.c: Rework last patch
31554         based on suggestion by Paolo.
31555         
31556 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31557
31558         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
31559         instruction level coverage data collection.
31560         * profiler.h profiler.c (: Added new callback function which can be
31561         used by the profiler to limit which functions should have coverage
31562         instrumentation.
31563         * profiler.c (mono_profiler_load): Call g_module_build_path to
31564         generate the file name of the profiler library.
31565
31566 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31567
31568         * profiler.c, profiler.h, profiler-private.h: added basic block 
31569         coverage profiling API.
31570
31571 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
31572
31573         * reflection.c (mono_reflection_create_runtime_class): Add support
31574         for events in dynamically generated code.
31575
31576         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
31577         not allocated.
31578
31579 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31580
31581         * icall.c: when getting timezone info, return reasonable values if we
31582         can't get the actual data.
31583
31584 2003-06-14  Dick Porter  <dick@ximian.com>
31585
31586         * threads.c (start_wrapper): Remove the reference to the thread
31587         object in the TLS data, so the thread object can be finalized.
31588         This won't be reached if the thread threw an uncaught exception,
31589         so those thread handles will stay referenced :-( (This is due to
31590         missing support for scanning thread-specific data in the Boehm GC
31591         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
31592
31593 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
31594
31595         * reflection.c: ensure streams and tables are first allocated with
31596         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
31597
31598 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31599
31600         * icall.c: fixed GetElementType for byrefs (bug# 44792).
31601
31602 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
31603
31604         * reflection.c (mono_reflection_create_runtime_class): Add support for
31605         properties to dynamically created classes.
31606         * reflection.c: Fix a few places where non-MonoObjects were inserted
31607         into the tokens hashtable.
31608
31609 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31610
31611         * object.c: some support to handle out of memory exceptions.
31612
31613 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
31614
31615         * marshal.c (mono_marshal_get_native_wrapper): support reference
31616         return types
31617
31618 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31619
31620         * object.h, object.c: more portability stuff from Bernie Solomon.
31621         Unexport mono_object_allocate(). Added mono_object_unbox ().
31622         Set exitcode when an unhandled exception is thrown.
31623
31624 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
31625
31626         * marshal.c (mono_marshal_get_native_wrapper): use custom
31627         marshaler for return types.
31628
31629 2003-06-10  Dick Porter  <dick@ximian.com>
31630
31631         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
31632         ip_mreq is available
31633
31634 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
31635
31636         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
31637         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
31638         by Bernie Solomon <bernard@ugsolutions.com>.
31639
31640 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
31641
31642         * gc.c (mono_gc_init): Avoid error message on shutdown when
31643         GC_DONT_GC=1 is used.
31644
31645         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
31646         New icall to return the GUID of a module.
31647
31648 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31649
31650         * class.c: ensure instance size always includes the parent's size
31651         even whem class size is set explicitly (fixes bug#44294).
31652
31653 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31654
31655         * profiler.h, profiler.c: made the simple profiler thread-safe,
31656         get more accurate timing info. Allow the loading of an
31657         externally-developed profiler module.
31658
31659 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
31660
31661         * marshal.c (mono_marshal_get_native_wrapper): improved
31662         class/byref arguments.
31663         (mono_marshal_get_native_wrapper): better string marshaling support.
31664
31665 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
31666
31667         * class.c: ensure .pack and .size are handled correctly and
31668         simplified layout of static fields.
31669
31670 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
31671
31672         * appdomain.c
31673         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
31674
31675         * loader.c (mono_lookup_pinvoke_call): look for modules in the
31676         current directory (fix bug 44008)
31677
31678 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
31679
31680         * marshal.c (mono_marshal_get_native_wrapper): started support for
31681         custom marshalers.
31682         (mono_delegate_to_ftnptr): consider marshalling specifications
31683
31684 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
31685
31686         * reflection.c, reflection.h: emit custom marshal info.
31687
31688 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31689
31690         * object.c: free the GError.
31691         * icall.c: added CloseEvent_internal.
31692         * threads.[ch]:
31693         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
31694         call.
31695
31696 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
31697
31698         * loader.c (mono_method_get_signature): Add support for dynamic
31699         assemblies.
31700
31701 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
31702
31703         * reflection.c: fixed bug #43905.
31704
31705 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31706
31707         * class.c, domain.c, icall.c, metadata.h, object.h: support for
31708         handling TypedReference and ArgIterator.
31709         * loader.c, loader.h: added function to get signature at call site.
31710
31711 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31712
31713         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
31714         data readonly. Buglets and warning fixes. Some MethodSpec support.
31715
31716 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31717
31718         * class.h, class.c, object.c: remove relative numbering support.
31719
31720 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
31721
31722         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
31723         free the string, until we get a chance to fix Gtk#
31724
31725 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31726
31727         * marshal.c: revert last patch.
31728
31729 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
31730
31731         * icall.c: updates for new mono_class_vtable() not calling
31732         the type constructor anymore.
31733
31734 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31735
31736         * object.h, object.c: separate vtable creation from type
31737         initialization. Make running the .cctor thread safe.
31738
31739 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
31740
31741         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
31742
31743 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
31744
31745         * loader.c (mono_get_method): consider calling convention
31746
31747 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
31748
31749         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
31750         to return the invisible global type for a module.
31751
31752         * reflection.c (mono_image_build_metadata): Emit global fields too.
31753
31754 2003-05-20  Peter Williams  <peterw@ximian.com>
31755
31756         * loader.c (mono_lookup_internal_call): Add a few newlines.
31757
31758 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
31759
31760         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
31761         literal strings.
31762
31763         * appdomain.c (set_domain_search_path): Recalculate search path when
31764         AppDomainSetup.PrivateBinPath changes.
31765
31766         * object.c (mono_class_compute_gc_descriptor): It turns out some
31767         parts of the class libs (like System.Thread) holds pointers to
31768         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
31769         to treat native int a pointer type here.
31770         
31771 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
31772
31773         * appdomain.h, domain.c: add hashtable for jump target resolution.
31774
31775 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
31776
31777         * reflection.h reflection.c icall.c: Added new icalls 
31778         GetManifestResourceInfoInternal, GetModulesInternal and support
31779         infrastructure.
31780
31781 2003-05-16  Dick Porter  <dick@ximian.com>
31782
31783         * icall.c:
31784         * file-io.h:
31785         * file-io.c: Implement System.IO.MonoIO::GetTempPath
31786
31787 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
31788
31789         * object.c: mono_store_remote_field: little fix to previous patch.
31790
31791 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31792
31793         * class.c: add constructors to array classes.
31794         * icall.c: special case array construction for InternalInvoke (),
31795
31796 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
31797
31798         * class.h class.c reflection.c object.c: Added support for field
31799         defaults in dynamically generated classes.
31800
31801 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
31802
31803         * reflection.c: properly encode charset for ddlimport.
31804
31805 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
31806
31807         * threads.c: allow compiling without GC.
31808
31809 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31810
31811         * appdomain.h, object.c, object.h, threads.c, threads.h: added
31812         handling of thread static data.
31813
31814 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31815
31816         * reflection.h, reflection.c: added mono_custom_attrs_free ().
31817
31818 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
31819
31820         * class.c (mono_array_class_get): always set the serializable flags
31821         (mono_array_class_get): always set the SEALED attribute for array types
31822
31823 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
31824
31825         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
31826         attributes (fix for bug 42021).
31827
31828 2003-05-12  Dick Porter  <dick@ximian.com>
31829
31830         * gc.c: Don't run finalizers when the finalizer thread is
31831         finishing up, because the default domain has already been
31832         destroyed.
31833
31834 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
31835
31836         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
31837         value is null, we should throw an exception.   This is slightly
31838         different than the other conventions used for the constructor.
31839
31840 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31841
31842         * socket-io.c: fixed windows build.
31843
31844 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31845
31846         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
31847
31848 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
31849
31850         * object.c (mono_string_new_wrapper): Compatibility fix for MS
31851         compilers.
31852
31853 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
31854
31855         * class.c (mono_class_layout_fields): Add experimental GC aware
31856         auto layout facility. Requires class library changes to work correctly.
31857
31858         (mono_class_setup_vtable): Avoid overriding explicit interface
31859         method implementations. Fixes iface3.exe test.
31860
31861         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
31862         object reference.
31863         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
31864         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
31865
31866         * metadata.h: Add new type classification macro which determines
31867         whenever the type holds an object reference.
31868
31869 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
31870
31871         * marshal.c (mono_marshal_get_native_wrapper): cleanups
31872
31873 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
31874
31875         * gc.c (finalizer_thread): Work around a GC bug.
31876
31877 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
31878
31879         * marshal.c (emit_struct_conv): allow unions
31880
31881         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
31882
31883 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
31884
31885         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
31886
31887 2003-05-06  Martin Baulig  <martin@ximian.com>
31888
31889         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
31890
31891 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31892
31893         * socket-io.c:
31894         (Select_internal): allow NULLs, don't create arrays if not needed.
31895         Coupled with Socket.cs changes.
31896
31897         * threadpool.c:
31898         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
31899         register a finalizer for it that will close the semaphore handle. This
31900         fixes the leak and make Lupus' test run with > 4080 loops.
31901
31902 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
31903
31904         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
31905         Jerome Laban (bug #42287)
31906
31907 2003-05-02  Martin Baulig  <martin@ximian.com>
31908
31909         * debug-mono-symfile.h
31910         (MonoSymbolFile): Moved declaration into mono-debug.h.
31911         (MonoDebugMethodJitInfo): Likewise.
31912         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
31913         argument.
31914         (_mono_debug_address_from_il_offset): Take a
31915         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
31916
31917         * mono-debug.h
31918         (MonoDebugDomainData): New struct.
31919         (mono_debug_get_domain_data): New function.
31920         (mono_debug_add_method): Take an additional `MonoDomain *'
31921         argument.
31922         (mono_debug_source_location_from_address): Likewise.
31923         (mono_debug_il_offset_from_address): Likewise.
31924         (mono_debug_address_from_il_offset): Likewise.
31925
31926 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
31927
31928         * reflection.c: one more check for null type in custom attrs.
31929
31930 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31931
31932         * reflection.c: avoid warning (comparison is always false due to limited
31933         range of data type).
31934
31935 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31936
31937         * icall.c: throw an exception in Type.GetField if the argument 'name'
31938         is NULL.
31939
31940 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
31941
31942         * reflection.c: fixed handling of enums in named arguments to custom
31943         attributes (bug #42123).
31944
31945 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
31946
31947         * reflection.c: use the right array element type and handle
31948         a null for a Type argument, too.
31949
31950 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
31951
31952         * reflection.c: handle arrays as arguments to custom attributes.
31953
31954 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31955
31956         * reflection.c: handle a string value in a custom attr
31957         ctor that takes an object.
31958
31959 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
31960
31961         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
31962         (fix bug #42063)
31963
31964 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
31965
31966         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
31967
31968 2003-04-27  Martin Baulig  <martin@ximian.com>
31969
31970         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
31971         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
31972         MONO_DEBUGGER_EVENT_BREAKPOINT.
31973         (mono_breakpoint_trampoline_code): Removed.
31974         (mono_debugger_event_handler): The last argument is now a
31975         `guint32'.
31976         (mono_debugger_insert_breakpoint_full): Removed the
31977         `use_trampoline' argument.
31978         (mono_debugger_method_has_breakpoint): Likewise.
31979         (mono_debugger_trampoline_breakpoint_callback): Renamed to
31980         mono_debugger_breakpoint_callback(); take the method and
31981         breakpoint number as arguments.
31982
31983 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
31984
31985         * metadata.c: fix off by one when loading parameters attributes.
31986
31987 2003-04-24  Martin Baulig  <martin@ximian.com>
31988
31989         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
31990
31991 2003-04-24  Martin Baulig  <martin@ximian.com>
31992
31993         * mono-debug-debugger.c: Moved all code which interacts with the
31994         Mono Debugger here.
31995
31996         * debug-mono-symfile.c: This code now just deals with the symbol
31997         file itself, the debugger code is now in mono-debug-debugger.c.
31998
31999 2003-04-23  Martin Baulig  <martin@ximian.com>
32000
32001         * mono-debug.c (mono_debug_source_location_from_il_offset):
32002         New method; like mono_debug_source_location_from_address(), but
32003         takes an IL offset instead of a machine address.
32004
32005 2003-04-23  Martin Baulig  <martin@ximian.com>
32006
32007         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
32008         `line' field; this is now computed by the debugger.
32009
32010 2003-04-23  Martin Baulig  <martin@ximian.com>
32011
32012         * mono-debug.[ch]: New files.  This is the new debugging interface.
32013
32014         * mono-debug-debugger.[ch]: New files.  Moved all code which
32015         interacts with the Mono Debugger here.
32016
32017 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
32018
32019         * domain.c (mono_init): initialize mono_defaults.monitor_class
32020
32021 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
32022
32023         * reflection.c (method_encode_code): Add a spicy exception to help
32024         future compiler authors.
32025
32026 2003-04-21  Martin Baulig  <martin@ximian.com>
32027
32028         * icall.c
32029         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32030         Make this work with relative pathnames; g_filename_to_uri() needs
32031         an absolute filename.
32032
32033 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
32034
32035         * icall.c: Track name changes in Object and ValueType.
32036
32037 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
32038
32039         * metadata.c (mono_type_stack_size): size should be a multiple of
32040         sizeof (gpointer)
32041
32042 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32043
32044         * gc.c:
32045         (internal_domain_finalize): moved into mono_domain_finalize. No need
32046         to create another thread because the finalizers will be run in the
32047         finalizer thread.
32048         
32049         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
32050         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
32051         to be run (MS does this too).
32052
32053 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
32054
32055         * object.c (mono_class_compute_gc_descriptor): Update comment.
32056
32057         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
32058
32059         * image.h: Add synchronized wrapper cache.
32060
32061         * image.c (do_mono_image_open): Initialize cache.
32062
32063         * reflection.c (create_dynamic_mono_image): Initialize cache.
32064
32065 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32066
32067         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
32068         ves_icall_System_Buffer_ByteLengthInternal.
32069
32070 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32071
32072         * reflection.c: setup klass->nested_in earlier. Allow
32073         a dash in the assembly name.
32074
32075 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
32076
32077         * metadata.c (mono_type_to_unmanaged): dont access
32078         type->data.klass for MONO_TYPE_OBJECT
32079         (mono_type_to_unmanaged): consider System.Delegate class
32080
32081 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
32082
32083         * class.c: just setup supertypes in the proper place instead of
32084         initializing the full element class for arrays.
32085
32086 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32087
32088         * class.c: ensure the element class of arrays is initialized.
32089         Setup the supertype info for array classes, too.
32090
32091 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
32092
32093         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
32094
32095 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32096
32097         * Makefile.am: re-added -m option when running cygpath. This way,
32098         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
32099         separator.
32100         * mono-config.c: same codepath for locating mono config file for WIN32
32101         and the rest.
32102         * assembly.c: if mono_assembly_setrootdir is called, don't override
32103         the value set.
32104
32105 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32106
32107         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
32108         MONO_ASSEMBLIES variable.
32109
32110 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
32111
32112         * icall.c: added Assembly::GetNamespaces() icall.
32113
32114 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32115
32116         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
32117
32118 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
32119
32120         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
32121         * object.c: fixed bug in the construction of vtable for proxies
32122
32123 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
32124
32125         * object.c (mono_array_new): Mark mono_array_new as an icall.
32126
32127 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32128
32129         * class.c: fixed test for public method when overriding interfaces.
32130         Closes bug #40970.
32131
32132 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32133
32134         * appdomain.h, domain.c: added mono_domain_foreach() to
32135         be able to access the currently loaded appdomains.
32136         * object.c: make string interning work across sppdomains.
32137         Mark some functions for use as icalls.
32138
32139 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
32140
32141         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
32142
32143         * reflection.h reflection.c: Allocate long living data using 
32144         GC_MALLOC_ATOMIC so the collector does not need to scan it.
32145
32146         * reflection.c: Double the allocation size in streams instead of
32147         increasing it, to prevent unneccesary copying on large assemblies.
32148         
32149         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
32150         creation if the assembly does not have the Run flag set.
32151
32152 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
32153
32154         * class.h: avoid the C++ keywords in header files (Jerome Laban
32155         spotted and fixed this).
32156
32157 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32158
32159         * object.c:
32160         (mono_unhandled_exception): fill in the arguments for the
32161         UnhandledException event. Only trigger that event for the default
32162         domain (as MS does).
32163
32164 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
32165
32166         * object.c: Improve typed allocation stuff based on suggestions from
32167         Paolo. Also turn it on if the GC library supports it.
32168
32169 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32170
32171         * object.c object.h class.h: Added experimental typed allocation
32172         facility using the interfaces in gc_gcj.h.
32173
32174         * os/gc_wrapper.h: Added new include files.
32175         
32176 2003-04-03  Martin Baulig  <martin@ximian.com>
32177
32178         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
32179         which is not yet enabled by default.
32180
32181         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
32182         functions.
32183         (mono_gc_lock, mono_gc_unlock): New static functions.
32184
32185         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
32186         functions; stop/start the world for the garbage collector.  This
32187         is using the windows API; we need to complete the SuspendThread()/
32188         ResumeThread() implementation in the io-layer to make this work on Unix.
32189         (mono_gc_push_all_stacks): New public function; tells the garbage
32190         collector about the stack pointers from all managed threads.
32191
32192 2003-04-03  Martin Baulig  <martin@ximian.com>
32193
32194         * object.h (MonoThread): Added `gpointer stack_ptr'.
32195
32196         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
32197
32198 2003-04-03  Martin Baulig  <martin@ximian.com>
32199
32200         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
32201
32202 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32203
32204         * reflection.c (typebuilder_setup_fields): Initialize field.first and
32205         field.last.
32206
32207 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
32208
32209         * loader.c (mono_lookup_internal_call): Report the corlib that is
32210         out of sync.
32211
32212 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
32213
32214         * icall.c (ves_icall_type_GetTypeCode): fixed check for
32215         System.DBNull (it's class not valuetype).
32216
32217 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32218
32219         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
32220         if the array method was already assigned a token (fixes bug#40646).
32221
32222 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
32223
32224         * reflection.c (mono_reflection_get_type): Attempt type resolve even
32225         if no assembly is given.
32226
32227 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
32228
32229         * metadata.h: Added the new tables.
32230
32231         * row-indexes.h: Added definitions for new tables.
32232
32233         * metadata.c: Add schemas for new tables, and add support for
32234         computing the sizes of them.
32235
32236         * class.c: Update for handling the new type cases.
32237
32238 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
32239
32240         * metadata.h (MONO_TYPE_IS_VOID): new macro
32241
32242 2003-03-31  Martin Baulig  <martin@ximian.com>
32243
32244         * threads.h (MonoThreadCallbacks): Added `thread_created'.
32245
32246         * threads.c (mono_thread_new_init): Call `thread_created' in the
32247         mono_thread_callbacks.
32248
32249 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
32250
32251         * loader.h: added marshalbyrefobject_class to mono_defaults
32252         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
32253         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
32254           generation of output parameters.
32255           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
32256         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
32257           contextbound and the target object belongs to the context of the caller.
32258         * object.h: added context and unwrapped_server variables in MonoRealProxy.
32259         * object.c: Implemented support for interfaces and abstract classes
32260           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
32261           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
32262
32263 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
32264
32265         * class.h class.c (mono_class_is_subclass_of): New function.
32266         
32267         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
32268         routines for most common case (calls from ArrayList::ToArray).
32269
32270         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
32271         routine so programs which call Environment::Exit() can be profiled.
32272
32273         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
32274         Added MONO_ARCH_SAVE_REGS.
32275
32276         * icall.c (ves_icall_type_is_subtype_of): Use new function.
32277
32278 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
32279
32280         * blob.h: Add a couple of new MonoType types definitions.
32281
32282         * tabledefs.h: Add a couple of new call convs.
32283
32284 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
32285
32286         * reflection.h (MonoReflectionDynamicAssembly): track changes in
32287         the layout of the class.
32288
32289         * reflection.c (alloc_table): double the size on overflow to avoid
32290         unnecessary copying.
32291
32292         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
32293         avoid filling out metadata tables and blobs. Also set mb->ilgen to
32294         null so it can be garbage collected.
32295         
32296 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
32297
32298         * reflection.c (mono_reflection_get_type): Return the resolved type
32299         only if it is in the assembly we searched.
32300
32301         * reflection.c (ensure_runtime_vtable): Initialize method slots.
32302
32303         * class.c (mono_class_setup_vtable): Set the slot of the overriding
32304         method.
32305
32306 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32307
32308         * appdomain.c:
32309         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
32310         the right one is 'file:///blah', but MS allows it.
32311         * assembly.c:
32312         (mono_assembly_open): allow 'file://blah'
32313
32314         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
32315
32316 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
32317
32318         * socket-io.c: fixes bug #40310.
32319
32320 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
32321
32322         * reflection.c (mono_reflection_parse_type): handle deeply nested
32323         types correctly.
32324
32325         * reflection.c (mono_image_create_token): Use unique token values
32326         since they will be put into a hash table.
32327
32328         * class.c (mono_class_setup_vtable): If a method occurs in more than
32329         one place in the vtable, and it gets overriden, then change the
32330         other occurances too.
32331
32332         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
32333         object as return type.
32334
32335 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32336
32337         * icall.c: Deleted "ToString" implementation for double and float
32338         because they are full implemented in managed code.
32339
32340 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32341
32342         * reflection.c, reflection.h: implemented and exported functions
32343         to retrieve info about custom attributes.
32344
32345 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32346
32347         * appdomain.c: moved Uri handling to assembly.c
32348         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
32349         work when using a file Uri in *nix and windows.
32350
32351         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
32352         GetReferencedAssemblies.
32353
32354 2003-03-18  Dick Porter  <dick@ximian.com>
32355
32356         * icall.c: Rename a couple of internal calls
32357
32358         * threads.c: Set the thread state to Stopped when a thread exits.
32359         Fixes bug 39377.
32360
32361 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
32362
32363         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
32364         New icall.
32365
32366         * object.c (mono_class_vtable): fix warning.
32367
32368 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
32369
32370         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
32371
32372         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
32373         memory.
32374         (method_encode_clauses): Create exception info structures in the right
32375         order.
32376         (mono_reflection_setup_internal_class): Initialize supertypes field.
32377
32378         * class.c object.c: Handle interfaces which implement other interfaces 
32379         correctly.
32380
32381         * class.h class.c: Move the supertypes array initialization code into 
32382         a separate function so it can be used for dynamic types too. Also call
32383         it earlier, in mono_class_init(), since it can be used before the
32384         type is initialized.
32385
32386 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32387
32388         * Makefile.am:
32389         * assembly.c:
32390         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
32391
32392         * appdomain.c:
32393         * appdomain.h:
32394         * marshal.c:
32395         * object.c: remove warnings.
32396
32397 2003-03-13  Martin Baulig  <martin@ximian.com>
32398
32399         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
32400         (MonoDebugLexicalBlockEntry): New types.
32401
32402         * debug-mono-symfile.c
32403         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
32404
32405 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32406
32407         * process.c: ret can be any non-zero value accroding to MS doc.
32408
32409 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
32410
32411         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
32412         fixing a warning for a miss-used prototype, would have cause
32413         random memory corruption.
32414
32415 2003-03-07  Martin Baulig  <martin@ximian.com>
32416
32417         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
32418         getting really annoying ....
32419
32420 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
32421
32422         * reflection.c (fixup_method): added support for array methods.
32423
32424 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
32425
32426         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
32427         (pointed out by Michael Adams).
32428
32429 2003-03-04  Dick Porter  <dick@ximian.com>
32430
32431         * icall.c: Temporarily reverted the Double and Single ToString()
32432         change, because it broke nunit.
32433
32434 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
32435
32436         * object.h, threads.h: make include files compatible with C++
32437         (patch by Jerome Laban <jlaban@wanadoo.fr>).
32438
32439 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32440
32441         * icall.c: Erased ToString helper functions for Double and Single.
32442         Now, that implementations ar all in managed code (Double and Single
32443         Formatters).
32444
32445 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
32446
32447         * appdomain.c: Added method for initializing the default context of
32448         a domain. Added internal call for getting the default context.
32449         * appdomain.h: Added context variable in MonoDomain struct.
32450         * domain.c: mono_domain_set also sets the default context of the domain
32451         * icall.c: Mapped internal method InternalGetDefaultContext.
32452         * object.c: mono_object_get_virtual_method returns always a remoting
32453         wrapper if the object is a transparent proxy.
32454         mono_runtime_invoke_array: when creating an object by calling the
32455         constructor, if the created object is a proxy, then the constructor should
32456         be called using the a remoting wrapper.
32457
32458 2003-03-03  Dick Porter  <dick@ximian.com>
32459
32460         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
32461         variable so it compiles on solaris.  Problem spotted by
32462         Christopher Taylor <ct@cs.clemson.edu>
32463
32464 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32465
32466         * appdomain.c:
32467         (get_info_from_assembly_name): don't leak value.
32468
32469         * icall.c:
32470         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
32471         result.
32472
32473 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
32474
32475         * assembly.c: export mono_image_load_references ().
32476         * class.c: handle function pointers. mono_class_from_name() now
32477         supports nested type names directly.
32478
32479 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
32480
32481         * reflection.h reflection.c: Encode already created dynamic methods 
32482         and fields correctly as a DEF instead of a REF.
32483
32484         * reflection.c: Get rid of the force_ref argument to 
32485         mono_image_typedef_or_ref since it was wrong in the first place.
32486
32487         * string-icalls.c: add error checking to string constructors according
32488         to the MSDN docs.
32489
32490         * reflection.c: Emit types in the order their TypeBuilders were 
32491         created. Previously, a new table index was assigned to each type before
32492         the tables were emitted. This was wrong because the signature blob
32493         might already refer to a type by its original table index.
32494
32495 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
32496
32497         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
32498         change.
32499         
32500 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32501
32502         * Makefile.am: make assemblies dir have \ instead of / on windows.
32503
32504 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
32505
32506         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
32507         iterate over the NESTEDCLASS table using a linear search since the
32508         table is not guaranteed to be sorted by the secondary key.
32509
32510         * class.c (mono_class_create_from_typedef): fixed up call to
32511         mono_metadata_nesting_typedef.
32512         
32513 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
32514
32515         * marshal.c (mono_string_to_byvalstr): clear the memory as
32516         suggested by Jerome Laban <jlaban@wanadoo.fr>
32517
32518 2003-02-26  Dick Porter  <dick@ximian.com>
32519
32520         * process.c: Cope with padding in .rsrc blocks
32521
32522 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32523
32524         * metadata.h: reverted the filter_len change, it breaks reflection
32525         
32526 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32527
32528         * metadata.h: added a new field to store the filter_len
32529         
32530
32531 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
32532
32533         * reflection.c: handle custom attributes for types and members
32534         created with Reflection.Emit (bug#38422).
32535
32536 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
32537
32538         * reflection.c: define RTSpecialName automatically for constructors for
32539         compatibility with MS.NET.
32540
32541         * reflection.c (mono_reflection_create_runtime_class): initialize
32542         nested_in field of dynamically created classes.
32543
32544 2003-02-22  Martin Baulig  <martin@ximian.com>
32545
32546         * debug-mono-symfile.h: Incremented version number.
32547
32548 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32549
32550         * object.h icall.c process.c: fix warnings.
32551
32552 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32553
32554         * appdomain.h appdomain.c:
32555         (mono_domain_try_type_resolve): split the 
32556         name_or_tb argument into a name and a tb argument.
32557         (mono_domain_has_type_resolve): new function to check whenever the
32558         application has registered a TypeResolve event handler.
32559         
32560         * icall.c reflection.h reflection.c: move the type resolve logic into
32561         mono_reflection_get_type () so it will be invoked when 
32562         Assembly::GetType () is called.
32563
32564         * reflection.c:
32565         (mono_reflection_get_type): renamed to get_type_internal.
32566         (mono_reflection_get_type): fixed type name generation so it works 
32567         for nested types too.
32568         (mono_reflection_get_type): call has_type_resolve () to avoid the 
32569         costly type name generation if there is no resolve event handler.
32570
32571 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32572
32573         * class.c, image.c: load exported types from file references.
32574
32575 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
32576
32577         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
32578           used to cache the managed methods used to create proxies and make 
32579           remote invocation of methods.
32580         * class.h: Added in MonoVTable a flag to indicate that a class needs 
32581           to be remotely created.
32582         * object.c: Modified the method mono_class_vtable(). It now initializes 
32583           the remote flag of the vtable. Modified mono_object_new_specific(), 
32584           so now it checks the remote flag.
32585         * icall.c: Added a couple of internal methods, one for enabling instance 
32586           creation interception for a type, and one for creating objects bypassing
32587           the remote check.
32588
32589 2003-02-18  Martin Baulig  <martin@ximian.com>
32590
32591         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
32592         New interncall to get a method's metadata token.
32593
32594         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
32595         New interncall for the debugger.
32596
32597 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
32598
32599         * class.c (mono_class_setup_vtable): allocate supertype array
32600
32601 2003-02-18  Martin Baulig  <martin@ximian.com>
32602
32603         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
32604
32605 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32606
32607         * reflection.c:
32608         (assembly_name_to_aname): jump over unknown properties (i've found
32609         something like: 'type, assembly, version=xxx, custom=null, public...',
32610         so now will ignore custom=null and still get the rest of the values).
32611
32612 2003-02-17  Dick Porter  <dick@ximian.com>
32613
32614         * threads.c: Have Thread.Start() wait for a semaphore to signal
32615         that the thread has set up all its local data.  This fixes bug
32616         34323, where Abort() raced the new thread's TLS data.
32617
32618         Also removes the handle_store() call from start_wrapper, because
32619         threads are now always created suspended and there is no longer a
32620         race between the parent and child threads to store the info.
32621
32622 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
32623
32624         * image.c: explain the #- heap issue in a message, hopefully
32625         avoiding FAQs on mono-list.
32626
32627 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32628
32629         * icall.c:
32630         (GetEntryAssembly): if the domain has not invoked
32631         AppDomain.ExecuteAssembly yet, return the assembly of the default
32632         AppDomain.
32633
32634 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
32635
32636         * class.c (mono_ldtoken): make it work in dynamic assemblies.
32637
32638 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
32639
32640         * metadata.c, reflection.c: simple speedup to type hash
32641         and equals code.
32642
32643 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
32644
32645         * image.c, image.h, class.c, assembly.c: move module loading
32646         to MonoImage. When loading metadata, consider alignemnet from
32647         the start of metadata, not from the metadata address in memory.
32648
32649 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
32650
32651         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
32652         AssemblyBuilder objects. Factored out custom attribute creation into
32653         a separate function.
32654         (create_custom_attr): new function to create custom attributes.
32655
32656 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
32657
32658         * Makefile.am: Got tired of typing the full pathname to pedump.
32659         Until there is another option, am installing this.
32660
32661 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
32662
32663         * class.c (class_compute_field_layout): always set field->parent 
32664         (mono_ldtoken): use mono_defaults.fieldhandle_class;
32665
32666 2003-02-11  Dick Porter  <dick@ximian.com>
32667
32668         * threads-types.h:
32669         * monitor.c: Rewrote Monitor, making lock much faster and
32670         Pulse/Wait work as specified.  Also uses much fewer handles, and only
32671         creates them as needed.
32672
32673         * exception.c: Added SynchronizationLockException
32674
32675         * threads.c: Deleted old Monitor implementation.  The new one is
32676         in a new file.
32677
32678 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
32679
32680         * class.c: handled TypedReference type code. Set the correct size for
32681         class data. Setup interface_offsets for interface classes, too.
32682
32683 2003-02-09  Martin Baulig  <martin@ximian.com>
32684
32685         * debug-mono-symfile.h: Reflect latest symbol writer changes.
32686
32687 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
32688
32689         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
32690         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
32691         * object.c: fixed mono_object_get_virtual_method () for interfaces.
32692         * verify.c: check for code that runs after the end of the method.
32693
32694 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32695
32696         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
32697         "System.Math::Round2".
32698         * sysmath.h: Added Floor, Round and Round2 definitions.
32699         * sysmath.c: Modified certain functions that were not 100% compliant
32700         with MS.NET (math precision) and added the implementation of Floor,
32701         Round and Round2.
32702
32703 2003-02-07  Martin Baulig  <martin@ximian.com>
32704
32705         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
32706
32707 2003-02-07  Martin Baulig  <martin@ximian.com>
32708
32709         * debug-mono-symfile.c: Reflected latest symwriter changes.
32710         (mono_debug_create_mono_symbol_file): Removed.
32711         (mono_debug_open_mono_symbol_file): Take an argument which
32712         specifies whether to create a dynamic symbol file.
32713
32714 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
32715
32716         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
32717
32718 2003-02-05  Martin Baulig  <martin@ximian.com>
32719
32720         * reflection.c (mono_image_build_metadata): Make this public,
32721         protect it against being called multiple times, don't create
32722         resources and don't build the compressed metadata here.
32723         (mono_image_create_pefile): Do this here.
32724
32725         * icall.c
32726         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
32727
32728 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32729
32730         * socket-io.c: fixed bug #36322.
32731
32732 2003-02-06  Piers Haken <piersh@friskit.com>
32733
32734         * appdomain.[ch]:
32735         * class.h:
32736         * debug-mono-symfile.c:
32737         * icall.c:
32738         * loader.c:
32739         * mono-config.c:
32740         * monosn.c:
32741         * reflection.c:
32742         * socket-io.c: warning cleanups
32743
32744 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
32745
32746         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
32747         function. works like remoting invoke, but does a check for the Proxy first.
32748
32749 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
32750
32751         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
32752
32753 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
32754
32755         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
32756         array of pointers.
32757         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
32758         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
32759
32760         * object.c (mono_store_remote_field_new): used by the new jit
32761         instead of mono_store_remote_field
32762         (mono_load_remote_field_new): used by the new jit
32763         instead of mono_load_remote_field
32764
32765 2003-02-05  Patrik Torstensson
32766
32767         * appdomain.c: changed unload to take the domain id instead
32768         of domain
32769         
32770         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
32771
32772
32773 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32774
32775         * appdomain.c: don't look for assemblies in ApplicationBase if
32776         PrivateBinPathProbe is set.
32777
32778 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32779
32780         * object.c: make the first argument in main_args contain the absolute
32781         path to the assembly. Fixes bug #37511.
32782
32783 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32784
32785         * icall.c: get correct UTC offset for countries not using daylight
32786         time saving. Fixes bug #30030.
32787
32788 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32789
32790         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
32791         and 1 are the family).
32792
32793 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
32794
32795         * icall.c (ves_icall_InternalExecute): removed wrong assertion
32796
32797         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
32798
32799 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
32800
32801         * reflection.c: added support for SignatureHelper tokens, which is
32802         needed by the Calli opcode.
32803
32804         * reflection.h: track changes to SignatureHelper class.
32805
32806         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
32807
32808 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32809
32810         * appdomain.c: fixed loading assemblies from PrivateBinPath.
32811
32812 2003-02-03  Patrik Torstensson
32813         * appdomain.[c|h], domain.c : 
32814          - Added support for getting a domain via domain id
32815          - Support for setting and getting domain from System.AppDomain 
32816            (used in cross appdomain channel)
32817          - Added support for get/set for a MonoAppContext on a thread 
32818            (Context class in System.Runtime.Remoting.Contexts),
32819          - Removed hack in Get/SetData and ExecuteAssembly.
32820         
32821         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
32822         the managed world to get control when a proxy is created.
32823
32824         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
32825         
32826 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
32827
32828         * icall.c
32829         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32830         Populate the codebase field as well.
32831
32832 2003-02-02  Martin Baulig  <martin@ximian.com>
32833
32834         * debug-mono-symfile.c
32835         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
32836         (mono_debug_symfile_add_method): Allow interncalls.
32837
32838 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32839
32840         * icall.c: throw parse exception if strtod fails or the string is empty.
32841
32842 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
32843
32844         * marshal.c: handle object type separately from defined
32845         class types.
32846
32847 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
32848
32849         * marshal.c: handle NATIVE_LPSTR for strings when it's
32850         explicitly specified.
32851
32852 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
32853
32854         * reflection.c, reflection.h, icall.c: setup the reflection
32855         handle cache for ModuleBuilders and AssemblyBuilders.
32856
32857 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
32858
32859         * reflection.c (reflection_methodbuilder_to_mono_method): set
32860         pinvoke flag
32861
32862 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32863
32864         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
32865
32866 2003-01-29  Dick Porter  <dick@ximian.com>
32867
32868         * threads.c: No need for the fake_thread kludge now that Thread
32869         doesn't run a class constructor
32870         
32871 2003-01-29  Dick Porter  <dick@ximian.com>
32872
32873         * threads.c: Use g_direct_hash instead of the rather bogus
32874         g_int_hash
32875
32876 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
32877
32878         * marshal.c (mono_marshal_get_native_wrapper): add check for null
32879         (fix pinvoke12.exe)
32880         (mono_marshal_get_struct_to_ptr): generate valid IL code
32881         (mono_marshal_get_ptr_to_struct): generate valid IL code
32882         (*): correctly set sig->pinvoke, we need to memdup the signature
32883         to do that
32884
32885 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32886
32887         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
32888         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
32889
32890 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32891
32892         * profiler.c: provide more callers information.
32893
32894 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
32895
32896         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
32897
32898         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
32899
32900         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
32901
32902 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32903
32904         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
32905         exception instead of going into an infinite loop on dates which it 
32906         can't yet handle.
32907
32908         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
32909         out-of-range exception if needed.
32910
32911         * class.c (mono_class_setup_vtable): allow a virtual method to provide
32912         an implementation for an interface method and to override an inherited
32913         method at the same time. 
32914         Imagine a scenario when a virtual method is used to override a
32915         virtual abstract method in a parent class, and this same method 
32916         provides an implementation for an method inherited from an interface. 
32917         In this case, the interface resolution code will set im->slot, which 
32918         means that the virtual method override pass will skip this method 
32919         which means a pointer to the abstract method inherited from the parent
32920         will remain in the vtable of this non-abstract class.
32921
32922         * class.c: (mono_class_setup_vtable): continue search for a real 
32923         method if only an abstract method is found.     
32924
32925 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32926
32927         * reflection.c: add size to encoding for ByValStr and ByValArray
32928         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
32929
32930 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32931
32932         * class.c (mono_class_setup_vtable): pass the override info as an
32933         argument.
32934
32935         * class.c (mono_class_setup_vtable): set the slot of overriding methods
32936         correctly.
32937         
32938         * reflection.c (ensure_runtime_vtable); add support for method 
32939         overrides.
32940         
32941 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32942
32943         * reflection.c (resolution_scope_from_image): Hack to work to work with
32944         dynamic assemblies.
32945
32946         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
32947         added a 'force_ref' argument to force this function to allways return 
32948         a TypeRef. This is needed by mono_image_get_memberref_token ().
32949         
32950 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32951
32952         * reflection.c (mono_image_get_type_info): interfaces really don't have
32953         a parent.
32954
32955         * reflection.c (mono_image_basic_init): fill out missing fields of
32956         image structure.
32957
32958         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
32959         dynamic assemblies. This is required so dynamic assemblies show up in
32960         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
32961         Type::GetType() etc. This is consistent with MS behaviour.
32962
32963         * image.c image.h reflection.c: add newly created classes to the name 
32964         cache so mono_class_get () will find them.      
32965
32966 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32967
32968         First part of changes to get IKVM.NET running under mono.
32969         
32970         * appdomain.h, appdomain.c: added new function 
32971         mono_domain_try_type_resolve() which will emit TypeResolve events. 
32972         This function will call AppDomain::DoTypeResolve to do the actual work.
32973
32974         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
32975         moved existing code dealing with dynamic tokens to a new function 
32976         called mono_reflection_lookup_dynamic_token (). This function will 
32977         raise TypeResolve events when appropriate. Since reflection.c is not 
32978         part of libmetadata, a new hook function called 
32979         mono_lookup_dynamic_token() is added to class.c which will call this.
32980
32981         * assembly.h assembly.c: make the invoke_load_hook function public,
32982         so it can be called for dynamic assemblies.
32983
32984         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
32985
32986         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
32987         type isn't found.
32988
32989         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
32990         MonoGHashTable, since it contains pointers to objects which the GC 
32991         needs to track.
32992
32993         * assembly.c (search_loaded): remove unused variable.
32994         
32995 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
32996
32997         * object.c: fixed issue exposed by gcc-generated IL programs
32998         that use RVA data for pointers.
32999
33000 2003-01-25  Martin Baulig  <martin@ximian.com>
33001
33002         * threads.c (start_wrapper): Moved the initialization of
33003         `start_func' above the mono_new_thread_init() call to which we
33004         pass it as argument.
33005
33006 2003-01-24  Martin Baulig  <martin@ximian.com>
33007
33008         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
33009         the MonoThread pointer.
33010
33011 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
33012
33013         * icall.c: Rename `PowImpl' to Pow.
33014
33015 2003-01-23  Dick Porter  <dick@ximian.com>
33016
33017         * threads.c (start_wrapper): Create a Thread object if needed, so
33018         the Main() thread can do the class initialisation in a subthread
33019         that has been set up to allow managed code execution.
33020
33021         Pass the thread ID instead of the MonoThread pointer to the thread
33022         start and attach callbacks.  This change is required, because the
33023         jit thread start callback must be called _before_ the Thread
33024         object can be created.
33025         
33026         (mono_thread_init): Removed much object creation code that is no
33027         longer needed.  No managed code is called from here now.
33028
33029         * object.c (mono_runtime_exec_managed_code): Create a subthread
33030         for Main, and call back to the runtime to use it.
33031         Set the exit code when Main exits.
33032
33033         * gc.c: Make sure domain finalisation happens in a subthread.
33034         Re-enable threaded GC, fixing bug 31333 (again).
33035
33036         * environment.c: System.Environment internall calls (so far just
33037         ExitCode is here, the others are still in icall.c)
33038
33039         * appdomain.c (mono_runtime_cleanup): All threads running managed
33040         code should have finished before mono_runtime_cleanup() is
33041         reached, so no need to clean up threads.
33042
33043 2003-01-22  Martin Baulig  <martin@ximian.com>
33044
33045         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
33046         `gpointer func' arguments.      
33047         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
33048         but added `MonoThread *thread' argument.
33049         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
33050
33051         * threads.c (mono_new_thread_init): Added `gpointer func' argument
33052         and pass it to the mono_thread_start_cb callback.
33053         (mono_install_thread_callbacks): New public function to install a
33054         set of callbacks which are set by the debugger.
33055         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
33056
33057 2003-01-22  Martin Baulig  <martin@ximian.com>
33058
33059         * Makefile.am: Install debug-mono-symfile.h.
33060
33061 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
33062
33063         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
33064
33065 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
33066
33067         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
33068         * class.c (mono_ptr_class_get): correctly set access levels of pointers
33069         (mono_array_class_get): correctly set access levels of arrays
33070
33071 2003-01-20      Patrik Torstensson
33072         * image.h (MonoAssemblyName): changed major, minor, build, revision
33073         from signed to unsigned.
33074
33075 2003-01-20  sean kasun <skasun@azstarnet.com>
33076
33077         * reflection.c (load_cattr_value): Now this handles
33078         MONO_TYPE_SZARRAY.  Fixes bug #35629
33079
33080 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
33081
33082         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
33083         integer value
33084
33085 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33086
33087         * decimal.c: fixed bug #26056.
33088
33089 2003-01-17  Martin Baulig  <martin@ximian.com>
33090
33091         * gc.c: Raise an ExecutionEngineException instead of using g_error().
33092
33093 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33094
33095         * exception.[ch]:
33096         (mono_get_exception_type_initialization): new function.
33097
33098         * object.c: throw a TypeInitializationException when an exception is
33099         thrown invoking the class constructor.
33100
33101 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33102
33103         * reflection.c: fixed attribute reading.
33104
33105 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33106
33107         * icall.c:
33108         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
33109         provided, look for the type in the calling assembly and then in
33110         mscorlib; if the assembly name is provided, only try that one.
33111
33112 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
33113
33114         * object.c: register the vtable before there is a chance it's
33115         queried again recursively.
33116
33117 2003-01-13  Duncan Mak  <duncan@ximian.com>
33118
33119         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
33120         gc-internal.h. 
33121         
33122 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
33123
33124         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
33125
33126 2003-01-11  Martin Baulig  <martin@ximian.com>
33127
33128         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
33129         this to 20 for the release.
33130
33131 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
33132
33133         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
33134
33135         * loader.c (mono_method_get_marshal_info): bug fix
33136
33137         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
33138         structures with explicit layout
33139
33140 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33141
33142         * profiler.c: made the output more readable (and sorted). 
33143         Added caller information for the allocation profiler.
33144
33145 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
33146
33147         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
33148
33149 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33150
33151         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
33152         to get value types.
33153         
33154 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
33155
33156         * object.c, profiler.h, profiler.c, profiler-private.h:
33157         Added object allocation profiler.
33158
33159 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
33160
33161         * reflection.h, reflection.c: handle global methods.
33162         Compress blob entries.
33163
33164 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
33165
33166         * marshal.c: fix compilation.
33167
33168 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
33169
33170         * loader.c (mono_method_get_marshal_info): impl.
33171
33172         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
33173
33174 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33175
33176         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
33177         for reference types.
33178
33179 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
33180
33181         * loader.c: fixed off by one error in loaded parameter names.
33182
33183 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
33184
33185         * marshal.c (mono_marshal_get_icall_wrapper): like
33186         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
33187         instead of a MonoMethod.
33188
33189 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33190
33191         * decimal.c: fixed bug #36537.
33192
33193 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
33194
33195         * marshal.c: throw a missing method exception if a
33196         P/Invoke method is not found.
33197
33198 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33199
33200         * icall.c: allow a null this for constructors.
33201
33202 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
33203
33204         * icall.c: raise the proper exceptions if the arguments to the
33205         internal Invoke are incorrect.
33206
33207 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
33208
33209         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
33210
33211 2003-01-03  Martin Baulig  <martin@ximian.com>
33212
33213         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33214
33215 2002-12-31  Martin Baulig  <martin@ximian.com>
33216
33217         * debug-mono-symfile.c: Completely rewrote the type section.
33218         Instead of using individual malloc()ed fields, we use one big
33219         continuous memory area and offsets into this area.
33220         See the comments in the source code for details.
33221
33222 2002-12-30  Martin Baulig  <martin@ximian.com>
33223
33224         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
33225
33226 2002-12-30  Martin Baulig  <martin@ximian.com>
33227
33228         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
33229         line number table in this data blob instead of using an external
33230         pointer.
33231
33232 2002-12-28  Martin Baulig  <martin@ximian.com>
33233
33234         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33235
33236 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
33237
33238         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
33239         as a boxed return type.
33240
33241 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
33242
33243         * appdomain.c
33244         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
33245         g_build_filename to properly get separators on the filename created.
33246
33247         * object.h: Small change, introduce MonoMarshalByRefObject to
33248         track the layout of that structure in the C# universe as we make
33249         changes there.
33250
33251 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
33252
33253         * object.c: removed assert to allow static fields on interfaces.
33254         * loader.c: a TypeSpec may be used for any type, not just arrays.
33255
33256 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33257
33258         * class.c, class.h: added mono_class_array_element_size ().
33259         Ignore static methods in interfaces.
33260
33261 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33262
33263         * threads.c: fixed the build under cygwin.
33264
33265 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
33266
33267         * reflection.c: handle nullref constants. Allocate keys for
33268         reflection handles with the GC.
33269
33270 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33271
33272         * threads.c, threads.h: added mono_thread_get_abort_signal()
33273         to get a suitable signal for thread abort.
33274
33275 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33276
33277         * metadata.c: fix handling of ExportedType table.
33278
33279 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33280
33281         * icall.c: added WriteWindowsDebugString internal call.
33282
33283 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33284
33285         * reflection.h: added fields to match C# implementation.
33286
33287 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33288
33289         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
33290
33291 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
33292
33293         * gc.h, gc-internal.h: Rename header for GC internal calls to
33294         gc-internal.h from gc.h as to not clash with Boehm GC having its
33295         header installed as <gc.h> in outside include paths.
33296         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
33297         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
33298
33299 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33300
33301         * icall.c: assign minor, build and revision in FillName.
33302
33303 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
33304
33305         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
33306         Added support for running code generated by Reflection.Emit.
33307
33308 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33309
33310         * appdomain.c: check for NULL argument in LoadFrom.
33311
33312 2002-12-10  Dick Porter  <dick@ximian.com>
33313
33314         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
33315
33316 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33317
33318         * appdomain.c: fix buglet when building exe file name.  Handle full
33319         assembly name (needed after latest changes to AssemblyName).
33320         * image.c:
33321         (mono_image_close): free some hashtables.
33322
33323 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
33324
33325         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
33326         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
33327         on some systems (redhat 7.3) 
33328
33329 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
33330
33331         * threads.c: delete the critical section of a sync block,
33332         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
33333
33334 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
33335
33336         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
33337
33338 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33339
33340         * appdomain.[ch]: handle the assembly preload event to try loading the
33341         assemblies using the paths we have in the current domain.
33342
33343         * assembly.[ch]: created an assembly preload hook that is called to try
33344         loading the assembly by other means that the ones provided here.
33345
33346         * domain.c: initialize the domain search path.
33347
33348         From now on, assemblies (TODO: except corlib and System) are loaded
33349         according to these rules when using mono_assembly_load ():
33350
33351                 1. It tries to load the assembly from the ApplicationBase
33352                 of the current domain appending .dll and .exe (TODO: have to
33353                 try loading from name/name.dll and name/name.exe).
33354
33355                 2. It tries the search path specified in PrivateBinPath for the
33356                 current domain (if any).
33357
33358                 3. Previous behavior.
33359
33360 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
33361
33362         * icall.c: implemented GetInterfaceMap() related icall.
33363         * domain.c, loader.h: load MethodInfo in mono_defaults.
33364
33365 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33366
33367         * gc.c: disable the finalizer thread for now, untill all the issues
33368         with it are resolved.
33369
33370 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33371
33372         * string-icalls.c: handle embedded nulls in string ctor when the
33373         length is specified.
33374
33375 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33376
33377         * class.c: look for explicit interface implementation in parent
33378         classes, too.
33379
33380 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
33381
33382         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
33383
33384 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33385
33386         * gc.c: protect handles with a critical section.
33387
33388 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33389
33390         * icall.c:
33391         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
33392         parameters. If no assembly specified, try getting the type from all
33393         the assemblies in the current domain, else, load the assembly and get
33394         the type from it.
33395
33396 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33397
33398         * marshal.c: applied patch from Aleksey Demakov that fixes
33399         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
33400
33401 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33402
33403         * icall.c: fixed get_location.
33404
33405 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
33406
33407         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
33408         declarations to make it work with older gcc. 
33409
33410         * loader.c (mono_get_method): set signature->pinvoke for native calls
33411
33412 2002-11-20  Dick Porter  <dick@ximian.com>
33413
33414         * threads.c (mono_thread_init): Set the main thread's handle
33415
33416 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33417
33418         * gc.c: allow compilation without GC support. Changed to match the
33419         mono coding style.
33420
33421 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33422
33423         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
33424
33425 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
33426
33427         * reflection.c: set a public key token on the core assemblies.
33428
33429 2002-11-18  Dick Porter  <dick@ximian.com>
33430
33431         * threads.c: Split out some thread initialisation so that other
33432         files can set the start callback function.
33433
33434         * gc.c: Run finalisers in a separate thread, to avoid stack
33435         overflow.  Fixes bug 31333.
33436
33437         * appdomain.c: Set up GC finalisation thread.
33438
33439         * reflection.c: 
33440         * object.c: 
33441         * domain.c: Use gc.h macros for GC_malloc
33442         
33443 2002-11-15  Dick Porter  <dick@ximian.com>
33444
33445         * threadpool.c: 
33446         * threads.c:
33447         * appdomain.c: Removed mono_runtime_init_with_attach(),
33448         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
33449         merging the extra parameter with the existing function.  Removed
33450         unneeded code in mono_thread_attach().
33451
33452 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
33453
33454         * image.c (mono_image_loaded_by_guid): a method to get loaded
33455         images by guid. 
33456         (load_metadata_ptrs): we store the guid as string.
33457
33458 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
33459
33460         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
33461
33462         * metadata.c (mono_guid_to_string): imported method form Zoltan
33463         Varga (slightly modified)
33464
33465         * assembly.c (mono_assembly_open): load precompiled code
33466
33467         * loader.h (MonoMethod): we store the method token for use in the
33468         aot compiler. 
33469
33470 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33471
33472         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
33473         the hook function called when an assembly is loaded.
33474         
33475         * domain.c: Modified file.
33476         (mono_domain_assembly_load): removed hash table insertion of assemblies.
33477
33478         Fixes bug #33196.
33479
33480 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
33481
33482         * reflection.c: Map PEFileKind to the value expected by the WinNT
33483         image loader. 
33484
33485 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33486
33487         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
33488         Read until the buffer is filled completely.
33489
33490 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33491
33492         * icall.c: implemented MonoType.InternalGetEvent ().
33493
33494 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33495
33496         * appdomain.c: implemented InitAppDomainSetup. Delayed
33497         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
33498         the entry_assembly.
33499
33500         * assembly.c: base_dir is now an absolute path ending with
33501         G_DIR_SEPARATOR.
33502
33503         * icall.c: modified get_location according to the above changes.
33504
33505         * object.c: init AppDomain.SetupInformation for the default domain after
33506         we have the entry assembly.
33507
33508         * domain.c: when unloading a domain, setup = NULL.
33509
33510 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
33511
33512         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
33513
33514 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
33515
33516         * object.h, object.c: introduced mono_object_get_virtual_method ()
33517         to lookup the method invoked on an object when a callvirt is done on
33518         a method.
33519         * icall.c: make MethodInfo::Invoke() always do a virtual call.
33520
33521 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33522
33523         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
33524         current domain when loaded an assembly and failed to load it.
33525
33526         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
33527
33528 2002-10-31  Dick Porter  <dick@ximian.com>
33529
33530         * icall.c: 
33531         * file-io.h: 
33532         * file-io.c: Return the error status in a parameter, as the
33533         GetLastError() value has long since been blown away if we try and
33534         look it up in a subsequent internal call invocation.  Delete the
33535         GetLastError() internal call, because it's useless.
33536
33537 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
33538
33539         * class.[ch]: added cast_class to fix bug 29517
33540
33541 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
33542
33543         * marshal.c: create valid IL code in the filter clause:
33544         the new JIT is less forgiving:-)
33545
33546 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33547
33548         * icall.c: removed get_property internal call.
33549
33550 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
33551
33552         * appdomain.h domain.c: Added an ID to appdomains.
33553         
33554         * threads.c threads.h icall.c: Implement icall
33555         Thread:GetDomainID(), and remove unused icall 
33556         CurrentThreadDomain_internal.
33557
33558 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33559
33560         * icall.c: Don't recurse through the base types in GetConstructor.
33561         Fixes bug #32063. 
33562
33563 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33564
33565         * mempool.h, mempool.c: added mono_mempool_empty() and
33566         mono_mempool_stats().
33567
33568 2002-10-23  Dick Porter  <dick@ximian.com>
33569
33570         * file-io.c: 
33571         * file-io.h: 
33572         * icall.c: Added MonoIO.GetFileType internal call
33573
33574 2002-10-17  Dick Porter  <dick@ximian.com>
33575
33576         * appdomain.c (mono_runtime_cleanup): Don't signal the async
33577         delegate semaphore before waiting for all threads to finish,
33578         because new threads can also call async delegates.  Fixes bug
33579         32004.
33580
33581         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
33582         of 3 seconds, in case another async job is queued.  (This part is
33583         needed because the bug fix reintroduced the 3s exit lag.)  This
33584         makes the mono_runtime_shutdown flag superfluous.
33585
33586 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33587
33588         * reflection.c: include ehader size in method section headers.
33589         Really check for suplicated modules entries.
33590
33591 2002-10-17  Martin Baulig  <martin@gnome.org>
33592
33593         * debug-mono-symfile.c: Added back support for locals.
33594
33595 2002-10-14  Martin Baulig  <martin@gnome.org>
33596
33597         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
33598         MONO_TYPE_VOID.
33599
33600 2002-10-14  Martin Baulig  <martin@gnome.org>
33601
33602         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
33603         mono_class_get() instead of looking in the class cache. 
33604
33605 2002-10-13  Martin Baulig  <martin@gnome.org>
33606
33607         * debug-mono-symfile.c: Set version number to 28, include the
33608         signature in method names.
33609
33610 2002-10-13  Martin Baulig  <martin@gnome.org>
33611
33612         * debug-mono-symfile.h: Set version number to 27.
33613
33614 2002-10-11  Martin Baulig  <martin@gnome.org>
33615
33616         * gc.c: Don't register/unregister NULL pointers as disappearing links.
33617
33618 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33619
33620         * metadata.c, metadata.h: added helper function to allocate signatures.
33621
33622 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33623
33624         * icall.c: added internal call to get the location of machine.config.
33625
33626 2002-10-08  Martin Baulig  <martin@gnome.org>
33627
33628         * debug-mono-symfile.c: Ignore classes with a pending init for the
33629         moment.
33630
33631 2002-10-03  Dick Porter  <dick@ximian.com>
33632
33633         * threads.c: Freebsd pthread_t is a pointer
33634
33635 2002-10-03  Dick Porter  <dick@ximian.com>
33636
33637         * socket-io.c: Implemented GetHostName_internal
33638
33639 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33640
33641         * mono-config.c:
33642         (mono_config_parse_file): don't leak the text.
33643
33644 2002-10-02  Martin Baulig  <martin@gnome.org>
33645
33646         * debug-mono-symfile.c: Added support for methods.
33647
33648 2002-10-01  Martin Baulig  <martin@gnome.org>
33649
33650         * debug-mono-symfile.c: Don't emit methods and line numbers for
33651         the dynamic symbol file, just write the type table.  We can easily
33652         have an external helper program which creates a symbol file for an
33653         IL file.        
33654
33655 2002-10-01  Dick Porter  <dick@ximian.com>
33656
33657         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
33658         Only add the handle to the cleanup array when we're about to
33659         launch the thread.  Bug 31425 deadlocked when the test was run on
33660         mono under w32.
33661
33662 2002-10-01  Martin Baulig  <martin@gnome.org>
33663
33664         * debug-mono-symfile.c: Added support for properties.
33665
33666 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33667
33668         * reflection.c: unaligned store fix from Mark Crichton
33669         <crichton@gimp.org>.
33670
33671 2002-09-27  Martin Baulig  <martin@gnome.org>
33672
33673         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
33674         New interncall.
33675
33676 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33677
33678         * assembly.h, assembly.c: use a sane API to hook into the assembly
33679         loading process instead of a useless special-purpouse hack
33680         (ngen needs a hook, too, for example).
33681
33682 2002-09-27  Dick Porter  <dick@ximian.com>
33683
33684         * threads.c (mono_thread_init): Call GetCurrentProcess() so
33685         io-layer can set up some process handle info.  Not needed on w32,
33686         but doesn't hurt either.
33687
33688         * process.c: Pass the program name in the second parameter to
33689         CreateProcess, so the path is searched.  Include the working
33690         directory. Implemented process name, process enumeration, and some
33691         process detail internal calls.
33692         
33693         * icall.c: Added internal calls for process lookup, and some
33694         process details
33695
33696 2002-09-26  Martin Baulig  <martin@gnome.org>
33697
33698         * assembly.c (mono_install_open_assembly_hook): New global
33699         function to install a function to be invoked each time a new
33700         assembly is loaded.
33701         (mono_assembly_open): Run this callback function if set.
33702
33703         * debug-mono-symfile.c: Put back line numbers for the dynamic
33704         symbol file and also record the .il file as source file.  This
33705         allows us to install the temporary symbol file as `file.dbg' just
33706         like a compiler-generated one.
33707
33708 2002-09-26  Nick Zigarovich <nick@chemlab.org>
33709
33710         * Corrected typo in gc.c (BOHEM vs BOEHM).
33711
33712 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33713
33714         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
33715         GetProperties. Also avoid calling g_slist_length in GetProperties and
33716         GetMethods.
33717
33718 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33719
33720         * reflection.c: avoid unaligned stores (bug spotted by
33721         Mark Crichton  <crichton@gimp.org>).
33722
33723 2002-09-25  Martin Baulig  <martin@gnome.org>
33724
33725         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
33726         instead of guint64 for addresses and added prologue/epilogue info.
33727
33728 2002-09-25  Martin Baulig  <martin@gnome.org>
33729
33730         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
33731         store line number info.  For the dynamic symbol file, we only need
33732         to provide the JIT generated dynamic line number info for the dynamic
33733         symbol file.
33734
33735 2002-09-25  Martin Baulig  <martin@gnome.org>
33736
33737         * debug-mono-symfile.h: Incremented version number.
33738
33739 2002-09-24  Martin Baulig  <martin@gnome.org>
33740
33741         * class.c (mono_debugger_class_init_func): New global function
33742         pointer variable.
33743         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
33744         call it.
33745
33746         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
33747         function.  This is called via the mono_debugger_class_init_func
33748         hook to add all types to the dynamic type table.
33749         (ves_icall_MonoDebugger_GetType): New interncall to get a class
33750         from its metadata token.
33751
33752         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
33753         New interncall for the debugger.
33754
33755 2002-09-24  Nick Drochak <ndrochak@gol.com>
33756
33757         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
33758         before using it in case it is null.
33759         
33760 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33761
33762         * metadata.c: allow custom modifiers in local var signatures
33763         (bug spotted by Zoltan Varga).
33764
33765 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33766
33767         * class.c: deal with the <Module> class that may have a NULL vtable.
33768         Eliminate warnings.
33769
33770 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33771
33772         * image.c, image.h: more strong name helpers.
33773         * monosn.c: more work: convert pem keys to cryptoapi format.
33774
33775 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33776
33777         * string-icalls.c: speedup IndexOf.
33778
33779 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33780
33781         * icall.c: updates from Zoltan.2.Varga@nokia.com.
33782
33783 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33784
33785         * icall.c: cleanup: use mono_object_domain ().
33786
33787 2002-09-23  Martin Baulig  <martin@gnome.org>
33788
33789         * debug-mono-symfile.c: Improved type support.
33790
33791 2002-09-22  Martin Baulig  <martin@gnome.org>
33792
33793         * debug-mono-symfile.c: Added support for reference types and strings.
33794
33795 2002-09-22  Martin Baulig  <martin@gnome.org>
33796
33797         * debug-mono-symfile.c: Started to work on the type table.
33798
33799 2002-09-21  Martin Baulig  <martin@gnome.org>
33800
33801         * debug-mono-symfile.c: Largely reworked the symbol table format.
33802         The symbol table is now incrementally updated each time a new
33803         method is added.  We're now also using our own magic and version
33804         so that you don't need to recompile all your classes if the
33805         dynamic table changes.
33806         (mono_debug_update_mono_symbol_file): Removed.
33807         (mono_debug_symfile_add_method): New function to add a method.
33808
33809 2002-09-21  Martin Baulig  <martin@gnome.org>
33810
33811         * icall.c
33812         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
33813         New interncall.
33814
33815         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
33816         New interncall to get a method from its metadata token.
33817
33818 2002-09-21  Martin Baulig  <martin@gnome.org>
33819
33820         * debug-mono-symfile.c: Create type table.
33821
33822 2002-09-20  Martin Baulig  <martin@gnome.org>
33823
33824         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
33825
33826 2002-09-20  Martin Baulig  <martin@gnome.org>
33827
33828         * debug-mono-symfile.c: Provide information about params and locals.
33829
33830 2002-09-20  Martin Baulig  <martin@gnome.org>
33831
33832         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
33833         New interncall.
33834
33835         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
33836         interncall to get a method from its metadata token.
33837
33838 2002-09-20  Martin Baulig  <martin@gnome.org>
33839
33840         * debug-mono-symfile.c: Added a few checks for method->header
33841         being non-NULL.  This should never happen, but for the moment
33842         let's use a g_warning() rather than a g_assert().
33843
33844 2002-09-19  Mark Crichton  <crichton@gimp.org>
33845
33846         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
33847         even if support for it isn't present.  Added an #ifdef to fix this.
33848
33849         * socket-io.c: Added checks back for Solaris support.
33850
33851 2002-09-19  Martin Baulig  <martin@gnome.org>
33852
33853         * debug-mono-symfile.c (read_string, write_string): Reflect latest
33854         changes in the symbol file format.
33855
33856 2002-09-18  Martin Baulig  <martin@gnome.org>
33857
33858         * debug-mono-symfile.c: Set version number to 21.
33859
33860 2002-09-18  Dick Porter  <dick@ximian.com>
33861
33862         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
33863         on netbsd.  Fixes bug 30051.
33864
33865 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33866
33867         * reflection.c:
33868         (set_version_from_string): little fix.
33869
33870 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33871
33872         * monosn.c, Makefile.am: added strong name utility.
33873         * reflection.h, reflection.c: implemented delayed signing,
33874         locale, version and hash id assembly attributes.
33875
33876 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33877
33878         * loader.c, metadata.c: load param attributes in signatures.
33879
33880 2002-09-16  Martin Baulig  <martin@gnome.org>
33881
33882         * debug-mono-symfile.c: Added string table with all method names.
33883
33884 2002-09-14  Martin Baulig  <martin@gnome.org>
33885
33886         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
33887         fast method lookup.
33888
33889 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33890
33891         * reflection.c: record the public key token of referenced assemblies.
33892
33893 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33894
33895         * image.c, image.h: added functions to get the strong name and the
33896         public key of an assembly.
33897         * pedump.c: use them.
33898
33899 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
33900
33901         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
33902
33903 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
33904
33905         * marshal.c (mono_marshal_get_managed_wrapper): Added
33906         MONO_TYPE_BOOLEAN 
33907
33908 2002-09-11  Martin Baulig  <martin@gnome.org>
33909
33910         * gc.c: Call GC_unregister_disappearing_link() on all links when
33911         finalizing them, this is necessary to aviod a crash in boehm's
33912         finalize handler.
33913
33914 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33915
33916         * gc.c: handle GetTarget for finalized objects spotted and fixed by
33917         nick@chemlab.org.
33918
33919 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
33920
33921         * icall.c: implemented MonoType::Module.
33922         * reflection.c, reflection.h: mono_module_get_object () from
33923         Tomi Pakarinen <tomi.pakarinen@welho.com>.
33924
33925 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33926
33927         * icall.c: ignore overridden methods in GetMethods ().
33928         Fix for FieldInfo::SetValue().
33929         * object.c: handle float/double in runtime invoke.
33930
33931 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33932
33933         * object.c: allow a constructor to be called again on an object.
33934
33935 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33936
33937         * class.h, class.c: move field layout code to it's own function and
33938         export it. Get an interface id earlier. Move fields in MonoClass
33939         so they are more cache friendly and align the bitfields.
33940         * loader.c: temporary handle get_param_names() for a runtime method.
33941         * reflection.c, reflection.h: more code to handle runtime creation of
33942         types.
33943
33944 2002-09-09  Martin Baulig  <martin@gnome.org>
33945
33946         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
33947         signature with the pinvoke field being set for the actual call.
33948
33949 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33950
33951         * icall.c: removed some unused icalls. Start of map of glib charsets
33952         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
33953
33954 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33955
33956         * debug-helpers.c: break infinite loop (found and fixed by
33957         Holger Arnold <harnold@gmx.de>).
33958
33959 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33960
33961         * icall.c: target may be null in create_delegate.
33962
33963 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33964
33965         * marshal.c: handle a boolean return type.
33966
33967 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33968
33969         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
33970
33971 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33972
33973         * gc.c: fix weakreferences.
33974
33975 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
33976
33977         * icall.c: added icall to get default codepage.
33978
33979 2002-09-03  Dick Porter  <dick@ximian.com>
33980
33981         * threads.h: 
33982         * threads.c: Use MonoThread instead of MonoObject where
33983         apropriate.
33984
33985         Store running thread objects in a hash table, so that we have all
33986         the info to hand when waiting for them to finish
33987         (means we don't need OpenThread() any more, so mingw builds should
33988         be fully functional again.)
33989
33990         * verify.c:
33991         * object.h: Added thread ID to MonoThread
33992
33993 2002-09-03  Martin Baulig  <martin@gnome.org>
33994
33995         * icall.c (System.Reflection.Assembly::get_location): New interncall.
33996
33997 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33998
33999         * icall.c: fixed leak in get_temp_path. Thanks lupus.
34000
34001 2002-09-03  Martin Baulig  <martin@gnome.org>
34002
34003         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
34004         argument to store the end address of the disassembled instruction.
34005
34006         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
34007         here from debug-symfile.h.
34008         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
34009         JIT into this struct.
34010         (MonoSymbolFile): Added `char *image_file' field.
34011         (MonoDebugGetMethodFunc): Removed.
34012         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
34013         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
34014         (mono_debug_find_method): New method.
34015
34016         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
34017         create a full symbol file.
34018         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
34019         and static symbol files.
34020         (mono_debug_find_method): The symbol file keeps an internal method hash,
34021         call this to get a MonoDebugMethodInfo from a MonoMethod.
34022
34023         * debug-symfile.[ch]: Removed.
34024
34025 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
34026
34027         * image.c (do_mono_image_open): Remove linker version check.
34028
34029 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
34030
34031         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
34032         wrappers for instance methods.
34033         
34034 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34035
34036         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
34037
34038 2002-08-28  Dick Porter  <dick@ximian.com>
34039
34040         * Makefile.am: Export HOST_CC for w32 builds
34041
34042 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34043
34044         * file-io.c process.c: MonoString are null terminated, no
34045         need for mono_string_to_utf16() anymore.
34046
34047 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34048
34049         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
34050
34051 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
34052
34053         * icall.c, reflection.h: speedup System.MonoType.
34054
34055 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34056
34057         * reflection.c: allow null as the value of a string argument in
34058         custom attributes constructors.
34059
34060 2002-08-27  Martin Baulig  <martin@gnome.org>
34061
34062         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
34063         `trampoline_address' field.
34064
34065 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
34066
34067         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
34068         check (fixes bug #29486) 
34069
34070 2002-08-27  Martin Baulig  <martin@gnome.org>
34071
34072         * debug-mono-symfile.c: Changed the file format in a way that allows us
34073         open it read-only and to use a specially malloced area for all the
34074         dynamic data.  We can now also generate a symbol file on-the-fly if we're
34075         debugging IL code and there is no MCS generated symbol file for it.
34076
34077 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34078
34079         * object.c: added a define for a good string and array
34080         creation speedup (not enabled by default because we need to deal with
34081         the synch stuff).
34082
34083 2002-08-26  Martin Baulig  <martin@gnome.org>
34084
34085         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
34086         function to create a dynamic symbol file.  This is used by the
34087         debugger to create a symbol file for IL code on-the-fly.
34088
34089 2002-08-26  Martin Baulig  <martin@gnome.org>
34090
34091         * loader.c (mono_lookup_pinvoke_call): Include the error message
34092         from g_module_error() in the error message.
34093
34094 2002-08-24  Martin Baulig  <martin@gnome.org>
34095
34096         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
34097         function to update the symbol file.  The symbol file is mmap()ed
34098         writable, but private.  This allows us to install the symbol file
34099         together with the assembly.
34100
34101 2002-08-24  Martin Baulig  <martin@gnome.org>
34102
34103         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
34104         but they can read the new symbol file format which mcs is now creating.
34105
34106         * debug-symfile.c (mono_debug_find_source_location): Moved to
34107         debug-mono-symfile.c; this is now operating on the new symbol file.
34108
34109 2002-08-23  Martin Baulig  <martin@gnome.org>
34110
34111         * debug-helpers.c (mono_method_desc_from_method): New function to get
34112         a MonoMethodDesc from a MonoMethod.
34113
34114 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34115
34116         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
34117         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
34118
34119 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34120
34121         * string-icalls.[ch]: make helper methods static.
34122
34123 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34124
34125         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
34126         types to it and to SetValueInternal.
34127
34128         * object.c: Moved handle_enum label to its proper place. This was the
34129         f... bug! ;-)
34130
34131         This time i compiled mcs and gtk-sharp and they both work.
34132
34133 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34134
34135         * icall.c: reverted partially my previous patch until 
34136         object.c:set_value handles enums correcly.
34137
34138 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34139
34140         * icall.c:
34141         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
34142         (ves_icall_System_Environment_get_MachineName): removed warning when
34143         compiling under cygwin.
34144
34145 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34146
34147         * object.c: fixed field_get_value() for reference types.
34148
34149 2002-08-22  Dick Porter  <dick@ximian.com>
34150
34151         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
34152         Don't free a buffer while it's still needed.  Patch from Jonathan
34153         Liger <Jonathan.liger@wanadoo.fr>
34154
34155 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
34156
34157         * icall.c (ves_icall_System_Environment_get_Platform): Add new
34158         internal call.
34159
34160 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
34161
34162         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
34163         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
34164
34165         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
34166         we call unmanaged code which throws exceptions.
34167
34168 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34169
34170         * appdomain.h: added per-domain entry_assembly.
34171         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
34172         arguments.
34173         * icall.c: Assembly::GetEntryAssembly icall.
34174         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
34175         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
34176
34177 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34178
34179         * appdomain.h, gc.c: added mono_domain_finalize ().
34180
34181 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34182
34183         * object.c:
34184         (mono_print_unhandled_exception): changed g_warning by g_printerr
34185         because g_log has a 1024 characters limit (yeah, i got a big stack
34186         trace). Don't print exception name, that should be in ToString 
34187         returned string.
34188
34189 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34190
34191         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
34192         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
34193
34194 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34195
34196         * object.c:
34197         (mono_print_unhandled_exception): after previous commit, i realized
34198         that MS calls ToString on the exception. I changed this function to
34199         do that. This way we get stack_trace for free.
34200
34201 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34202
34203         * object.c:
34204         (mono_print_unhandled_exception): invoke Message property instead of
34205         getting 'message' field from Exception. Don't allocate memory for
34206         'trace' and 'message' if not needed.
34207
34208 2002-08-18  Dick Porter  <dick@ximian.com>
34209
34210         * unicode.c: Fix asserts to match Encoder.cs checks
34211
34212 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34213
34214         * marshal.c: fix unaligned store issue and a few wrong
34215         opcode argument types.
34216
34217 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34218
34219         * icall.c: added GetUninitializedObjectInternal internal call.
34220
34221 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
34222
34223         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
34224         to the right domain.
34225
34226 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
34227
34228         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
34229
34230         * class.c (class_compute_field_layout): set blittable to false for Strings
34231
34232         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
34233
34234 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34235
34236         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
34237         first chunk of code to create types at runtime. Code to
34238         handle ReflectedType/DeclaringType. Make reflection handles
34239         domain specific.
34240
34241 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34242
34243         * class.c: set correct name in arrays.
34244
34245 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
34246
34247         * appdomain.c (mono_domain_transfer_object): make it work with
34248         valuetypes. bug fixes.
34249
34250 2002-08-12  Dick Porter  <dick@ximian.com>
34251
34252         * object.h: Rename some parameters to avoid c++ keywords (Patch
34253         from Joseph Wenninger <kde@jowenn.at>)
34254
34255 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
34256
34257         * icall.c: added icall to implement Assembly.GetFile*.
34258
34259 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34260
34261         * reflection.h, reflection.c: code to embed managed resources.
34262
34263 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34264
34265         * class.c: move all the type size stuff into
34266         class_compute_field_layout().
34267
34268 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34269
34270         * class.c: ensure enums have always the correct instance size.
34271         * unicode.c: remove wrong assert.
34272
34273 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34274
34275         * assembly.c: fix mem corruption issue.
34276         * image.h, image.c: added mono_image_get_resource () to access
34277         managed resources.
34278         * icall.c: implemented Assembly.EntryPoint property and some
34279         Managed Resources related internalcalls.
34280
34281
34282 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34283
34284         * image.c, image.h: impemented mono_image_get_entry_point ().
34285         * appdomain.c: use mono_image_get_entry_point.
34286
34287 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34288
34289         * reflection.c: support the object type argument when loading
34290         custom attributes.
34291
34292 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
34293
34294         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
34295         String as return type.
34296
34297 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
34298
34299         * reflection.c: fix encoding of named args for custom attrs to match
34300         the ms implementation. Read them back when instantiating custom
34301         attributes.
34302
34303 2002-08-02  Radek Doulik  <rodo@ximian.com>
34304
34305         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
34306         by Dietmar as quick fix
34307         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
34308         16 as stack size, used on more places as quick fix before Dietmar
34309         will fix it properly
34310
34311 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34312
34313         * object.h, object.c: added accessors for fields and properties.
34314
34315 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34316
34317         * class.c, class.h: made mono_class_get_field_from_name ()
34318         loop on parent types.
34319         Added mono_class_get_property_from_name ().
34320
34321 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34322
34323         * class.c, class.h: move the code to setup the type vtable in its own
34324         function so that it can be reused also for types created at runtime.
34325         Eliminate the "class" identifier from the header file.
34326         * reflection.c: setup the vtable for enums so that we can create
34327         objects for use in SetConstant ().
34328
34329 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
34330
34331         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
34332         instead of the delegate itself as this pointer (bug #28383)
34333
34334 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
34335
34336         * marshal.c (mono_marshal_get_managed_wrapper): added return type
34337         conversions.
34338
34339 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34340
34341         * loader.c: don't set the pinvoke bit on icalls.
34342
34343 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
34344
34345         * debug-helpers.c (mono_method_full_name): only print a number to
34346         indicate wrapper type (so that the output is more readable in traces).
34347
34348 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
34349
34350         * class.c (mono_class_init): include method override patch from Paolo
34351
34352 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
34353
34354         * icall.c: fixed GetTypeCode().
34355
34356 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
34357
34358         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
34359         use real delegate invoke function to make it work with multicast
34360         delegates (fix bug# 28291).
34361
34362 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34363
34364         * object.c: load constant strings.
34365
34366 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34367
34368         * reflection.c: no magic numbers.
34369         * tabledefs.h: security action enum.
34370
34371 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34372
34373         * assembly.c: fix possible memory corruption.
34374
34375 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34376
34377         * reflection.h, reflection.c: added support for linking resources.
34378         * verify.c: check we have an updated corlib.
34379
34380 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
34381
34382         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
34383         string arrays.
34384         (mono_marshal_string_array): null terminate unmanaged string arrays.
34385         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
34386
34387 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34388
34389         * icall.c: Type.GetType () can now return also types from the
34390         calling assembly.
34391
34392 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34393
34394         * loader.h, loader.c: stack walking support.
34395         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
34396         GetCallingAssembly.
34397
34398 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
34399
34400         * marshal.c: added optimisations for blittable types 
34401
34402         * class.c (mono_array_class_get): do not set blittable attribute on arrays
34403         (mono_class_setup_mono_type): set blittable attribute for single
34404         and double.
34405
34406         * marshal.c (mono_string_utf8_to_builder): impl.
34407         (mono_string_builder_to_utf8): impl.
34408         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
34409
34410 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
34411
34412         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
34413         (mono_marshal_get_managed_wrapper): impl. byref types
34414
34415 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34416
34417         * icall.c:
34418         (search_method): don't display debug message. 
34419
34420 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34421
34422         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
34423
34424 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34425
34426         * appdomain.c: set the missing filename when throwing exception.
34427
34428 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34429
34430         * metadata.c (mono_type_size): code cleanup
34431         (mono_type_stack_size): removed some test code
34432
34433 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
34434
34435         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
34436         mono_get_exception_file_not_found now.
34437
34438         * exception.c (mono_exception_from_name_two_strings): New version
34439         that will call a constructor with two string arguments. 
34440         (mono_get_exception_file_not_found): New helper routine, used to
34441         report file-not-found errors.
34442
34443 2002-07-20  Dick Porter  <dick@ximian.com>
34444
34445         * process.h:
34446         * process.c: Pass file handles to CreateProcess
34447         
34448         * icall.c:
34449         * file-io.h:
34450         * file-io.c: Implemented CreatePipe
34451
34452 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34453
34454         * metadata.c (mono_get_param_info): set alignment for value types
34455
34456 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34457
34458         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
34459         Constify mono_domain_assembly_open().
34460         * loader.c: handle null namespace in icalls.
34461
34462 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34463
34464         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
34465         (emit_str_to_ptr_conv): marshal object as structs
34466
34467         * metadata.c (mono_type_to_unmanaged): marshal object as structs
34468
34469         * marshal.c (mono_marshal_get_runtime_invoke): support value types
34470
34471 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
34472
34473         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
34474         (mono_marshal_get_native_wrapper): we an now return value types
34475
34476 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34477
34478         * verify.c: more checks implemented.
34479
34480 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
34481
34482         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
34483         (fix bug #27695)
34484         (mono_marshal_get_native_wrapper): allow byref arguments
34485         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
34486         impl. PtrToStringXXX methods
34487         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
34488         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
34489         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
34490         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
34491         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
34492
34493 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34494
34495         * reflection.c: fix buglet in parsing an assembly name.
34496
34497 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34498
34499         * marshal.c (emit_ptr_to_str_conv): first impl.
34500
34501 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34502
34503         * object.c, class.h: cache the vtable in the class as suggested by
34504         vargaz@freemail.hu (Zoltan Varga).
34505
34506 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34507
34508         * class.h, loader.c: added mono_field_from_token().
34509         * verify.c: first cut of type checking code.
34510
34511 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34512
34513         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
34514
34515 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
34516
34517         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
34518         (fix bug #27782)
34519         (mono_marshal_get_remoting_invoke): impl.
34520         (mono_delegate_begin_invoke): impl.
34521         (mono_mb_emit_save_args): impl.
34522         (mono_delegate_end_invoke): impl.
34523         (mono_marshal_get_delegate_begin_invoke):
34524         (mono_marshal_get_delegate_end_invoke):
34525         (mono_marshal_get_delegate_invoke): generate a special name for
34526         those methods (including the signature) and associate them whith
34527         the delegate class. 
34528
34529 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
34530
34531         * reflection.[ch]: 
34532         (mono_reflection_type_from_name): now it has a MonoImage parameter
34533         which is used as the default image to search the type in. If the image
34534         is NULL or getting the type from it fails, it defaults to corlib.
34535
34536         * icall.c: changed 1 call to mono_reflection_type_from_name to match
34537         new parameter.
34538
34539 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34540
34541         * reflection.c: update the parameter table index.
34542
34543 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34544
34545         * domain.c: don't include the mark byte in the string hash.
34546
34547 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34548
34549         * icall.cs: icall for Type.GetTypeCode ().
34550         * verify: a couple of fixes and disabled local initialization checks.
34551
34552 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
34553
34554         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
34555
34556         * debug-helpers.c (mono_method_full_name): print the type of the
34557         runtime wrapper
34558
34559         * metadata.c (mono_signature_hash): a hash function for signatures
34560         (mono_signature_hash): better hash algorithm
34561
34562         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
34563
34564         * debug-helpers.c (mono_method_full_name): this can now generate
34565         method names with signatures
34566
34567         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
34568         method dont have this pointers.
34569
34570 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34571
34572         * reflection.c: fixup typebuilder tokens.
34573         * image.c: fix buglet.
34574         * marshal.h: remove whitespace.
34575         * metadata.h, metadata.c: reinstate code that was removed.
34576         * verify.c: handle catch directives and fix another couple of bugs.
34577
34578 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
34579
34580         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
34581         (mono_marshal_get_native_wrapper): make it comp. with the old code
34582         (mono_marshal_get_native_wrapper): support boolean
34583         (mono_marshal_get_managed_wrapper): support more types
34584
34585 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
34586
34587         * class.c (class_compute_field_layout): compute class->blittable attribute.
34588
34589 2002-07-09  Dick Porter  <dick@ximian.com>
34590
34591         * threads.c: Make the thread cleaning up cope with threads that
34592         call ExitThread()
34593
34594 2002-07-08  Radek Doulik  <rodo@ximian.com>
34595
34596         * reflection.c (method_encode_code): use non-translated values to
34597         compute finally_start, this fixes exception handling on ppc, yay!
34598
34599         * decimal.h (struct signscale): fix endianess
34600
34601 2002-07-07  Radek Doulik  <rodo@ximian.com>
34602
34603         * reflection.c: swap box_val and not val
34604
34605 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34606
34607         * reflection.c, reflection.h: handle full assembly info in type name.
34608         Handle Type arguments when loading custom attributes.
34609         * icall.c: updated to use new mono_reflection_type_from_name () method.
34610
34611 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34612
34613         * loader.c:
34614         (method_from_memberref): also print assembly name when method not found.
34615
34616 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34617
34618         * icall.c:
34619         (ves_icall_TypeGetProperties): fixed bug #27473. 
34620
34621 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34622
34623         * reflection.c: display image name and token when cannot find the
34624         .ctor for an attribute.
34625
34626 2002-07-05  Martin Baulig  <martin@gnome.org>
34627
34628         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34629
34630 2002-07-04  Dick Porter  <dick@ximian.com>
34631
34632         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
34633         compile on mingw.  This will cause mingw builds to not wait for
34634         subthreads to terminate after the main thread does.  I've lodged a
34635         bug with the mingw developers for them to wrap OpenThread().
34636
34637 2002-07-03  Dick Porter  <dick@ximian.com>
34638
34639         * threads.c: Store thread IDs instead of handles, because
34640         GetCurrentThread() returns a pseudohandle and therefore stores
34641         useless values.  mono_thread_cleanup() continues checking the
34642         array of threads until it is empty, to cope with subthreads
34643         spawning new threads after the main thread has finished.
34644
34645         * profiler.h:
34646         * profiler.c:
34647         * profiler-private.h: Pass the thread ID to thread profiler
34648         functions, instead of a handle
34649
34650 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34651
34652         * verify.c: fixes to make it more usable.
34653         * pedump.c: added --verify code to verify IL code in an assembly.
34654
34655 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34656
34657         * reflection.c: turn errors into warnings to allow compiling corlib.
34658
34659 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34660
34661         * reflection.c: add special cases to compile corlib.
34662
34663 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34664
34665         * reflection.c: handle properties with only a set method.
34666
34667 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34668
34669         * opcodes.h: add enum with opcodes in opval order.
34670
34671 2002-07-01  Dick Porter  <dick@ximian.com>
34672         
34673         * object.h:
34674         * object.c (mono_runtime_run_main): Removed unneeded argument
34675
34676 2002-06-28  Martin Baulig  <martin@gnome.org>
34677
34678         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34679
34680 2002-06-27  Dick Porter  <dick@ximian.com>
34681
34682         * threads.c: Store the handle in both the parent thread and in the
34683         subthread, to minimise the time between starting a new thread and
34684         storing its ID.
34685
34686 2002-06-26  Dick Porter  <dick@ximian.com>
34687
34688         * appdomain.c (mono_runtime_cleanup): Close the socket library
34689         after all the threads have finished, not before
34690
34691 2002-06-26  Martin Baulig  <martin@gnome.org>
34692
34693         * debug-symfile.c (mono_debug_find_source_location): Added
34694         `guint32 *line_number' argument.  If it's not NULL, store the line number
34695         there and return the file name without the line number.
34696
34697 2002-06-25  Dick Porter  <dick@ximian.com>
34698
34699         * icall.c:
34700         * process.h:
34701         * process.c: Process forking and other support functions
34702
34703 2002-06-25  Dick Porter  <dick@ximian.com>
34704
34705         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
34706         things dont happen when the image is closed.
34707         (mono_image_lookup_resource): Walk the resource section looking
34708         for a particular entry
34709
34710         * cil-coff.h: PE resource section decoding
34711
34712 2002-06-25  Dick Porter  <dick@ximian.com>
34713         
34714         * assembly.h:
34715         * assembly.c: 
34716         (mono_assembly_foreach): Accessor functions to walk the list of
34717         loaded assemblies
34718         (mono_assembly_set_main):
34719         (mono_assembly_get_main): Process methods need to know which
34720         assembly is the "main" one
34721
34722         * object.c (mono_runtime_run_main): Record the main assembly
34723
34724         * debug-helpers.c: Fix typo
34725
34726 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
34727
34728         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
34729         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
34730
34731 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34732
34733         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
34734
34735 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
34736
34737         * image.c (do_mono_image_open): Initialize reference count,
34738         otherwise we leak the MonoImage.
34739
34740 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34741
34742         * reflection.c: small tweak to handle self-hosting.
34743
34744 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34745
34746         * reflection.c: fix type name parse code.
34747
34748 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34749
34750         * reflection.c: break out of the loop.
34751         * image.c: special case corlib.
34752
34753 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34754
34755         * reflection.c: add all the custom attrs at the end to ensure the
34756         ctors have been properly initialized when the attributes are defined
34757         in the current assembly.
34758
34759 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34760
34761         * reflection.c: handle correctly multiple-nested types.
34762
34763 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
34764
34765         * row-indexes.h: fix typos.
34766         * reflection.c: adjust for typos and fix method_def_or_ref
34767         encoding in MethodImpl table.
34768
34769 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34770
34771         * reflection.c: fix entry point patching (thanks Serge!).
34772
34773 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
34774
34775         * verify.c: add check for System.Exception
34776
34777 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34778
34779         * image.c, class.c: minifix for code just c&p'ed.
34780         * reflection.c: warning fix.
34781         * object.h, loader.h, domain.c: load also StringBuilder.
34782
34783 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34784
34785         * marshal.h, marshal.c: some support code to handle complex marshaling.
34786
34787 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34788
34789         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
34790         Better signatures with vtable error dump.
34791
34792 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
34793
34794         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
34795
34796 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
34797
34798         * icall.c (ves_icall_Type_GetField): impl.
34799
34800 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34801
34802         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
34803         to retrieve a marshal description blob for a field or param.
34804
34805 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34806
34807         * reflection.h, reflection.c: change order of nested type emission
34808         to avoid table corruption. The NestedTypes table is sorted.
34809         * icall.c: change order of GetConstructor results to workaround mcs bug.
34810
34811 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34812
34813         * reflection.h, reflection.c: handle field and param marshal
34814         information.
34815
34816 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34817
34818         * icall.c, marshal.c marshal.h: more Marshal class implementation.
34819
34820 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34821
34822         * reflection.c: fix call convention.
34823
34824 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34825
34826         * reflection.h, reflection.c: mono_image_get_memberref_token()
34827         takes a type instead of a class, now. Added
34828         mono_image_get_array_token() to create tokens for the special
34829         multi-dim array methods.
34830
34831 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34832
34833         * assembly.c: handle modules (no assembly table). Split
34834         loading references in its own function.
34835         * class.c: handle moduleref resolution scope.
34836         * image.c, image.h: cache module name in image.
34837
34838 2002-06-07  Martin Baulig  <martin@gnome.org>
34839
34840         * reflection.c (mono_image_get_type_info): Only add a class layout entry
34841         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
34842
34843 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34844
34845         * icall.c: more signature fixes that used uint instead of int.
34846
34847 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34848
34849         * reflection.c: fixed signature of field refs.
34850
34851 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34852
34853         * class.c, reflection.c: handle typerefs of nested types
34854         (both on read and when writing files).
34855
34856 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34857
34858         * icall.c: fix method signatures that tried to workaround the previous
34859         typo, d'oh!
34860
34861 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34862
34863         * debug-helpers.c: fix typo.
34864
34865 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34866
34867         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
34868         rewrote the PE/COFF writing code (our programs are understood by the
34869         ms runtime, now).
34870
34871 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34872
34873         * gc.c, gc.h, icall.c: weakreference support.
34874
34875 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34876
34877         * Makefile.am, mono-config.c: use $(sysconfdir).
34878
34879 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34880
34881         * icall.c: changed default precision of Double.ToString() to 15.
34882         Fixed memory leak. Unified with Single.ToString.
34883
34884 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34885
34886         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
34887
34888 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34889
34890         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
34891         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
34892         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
34893         and myself.
34894
34895 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34896
34897         * debug-symfile.c, sysmath.c: yet more compilation fixes.
34898
34899 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34900
34901         * reflection.c, socket-io.c: more compilation fixes.
34902
34903 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34904
34905         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
34906         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
34907         unicode.c: warning and compiler compatibility fixes.
34908
34909 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34910
34911         * class.h, metadata.c: fixed warnings/compilation errors.
34912
34913 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34914
34915         * Makefile.am, mono-config.c, mono-config.h: configuration file
34916         support routines.
34917         * loader.c, loader.h: make Dll mapping configurable at runtime in the
34918         config file. Export methods to insert and lookup mappings.
34919
34920 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34921
34922         * reflection.c: handle types and boxed objects in custom attr
34923         constructors.
34924
34925 2002-05-30  Martin Baulig  <martin@gnome.org>
34926
34927         * debug-symfile.c
34928         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
34929
34930 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
34931
34932         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
34933         to lookup the implmap row for a P/Invoke method.
34934         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
34935         P/Invoke method from the runtime on an as needed basis.
34936
34937 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
34938
34939         * metadata.c (mono_metadata_parse_signature): impl.
34940
34941 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34942
34943         * class.c: handle .pack directive.
34944
34945 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34946
34947         * object.c: initialize static fields with RVA data.
34948
34949 2002-05-25  Martin Baulig  <martin@gnome.org>
34950
34951         * debug-symfile.c
34952         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
34953
34954 2002-05-24  Martin Baulig  <martin@gnome.org>
34955
34956         * debug-symfile.c
34957         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
34958         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
34959         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
34960
34961 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34962
34963         * object.c: special case string ctros in invoke.
34964         * gc.c: silly whitespace changes.
34965
34966 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
34967
34968         * threadpool.[ch]: impl. a threadpool that can
34969         be used by mint and mono.
34970
34971 2002-05-22  Martin Baulig  <martin@gnome.org>
34972
34973         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
34974         The first argument is now a `MonoReflectionModuleBuilder *', the return
34975         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
34976         `methods' field to get the method builder.  The `token' argument is the
34977         unfixed token.
34978
34979         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
34980         invalid characters instead of g_assert_not_reached()ing.  This seems
34981         to be the behaviour of mscorlib.
34982
34983 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
34984
34985         * object.c (mono_runtime_invoke_array): applied patch from Rachel
34986         Hestilow to fix bug #25104
34987
34988 2002-05-21  Martin Baulig  <martin@gnome.org>
34989
34990         * debug-symfile.c (mono_debug_find_source_location): New function.
34991         Looks up an IL offset in the line number table and returns the source
34992         location as a string.
34993
34994 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34995
34996         * icall.c:
34997         (mono_double_ToStringImpl): changed %f by %g until we have something
34998         better.
34999
35000 2002-05-21  Nick Drochak  <ndrochak@gol.com>
35001
35002         * icall.c : Use different name for Math.Pow's icall.  Needed to check
35003         parameters first in C#.
35004
35005 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35006
35007         * icall.c, reflection.h: added icall to get info about an event.
35008
35009 2002-05-20  Radek Doulik  <rodo@ximian.com>
35010
35011         * object.c (mono_value_box): don't use memcpy for boxing on BIG
35012         endian
35013         (mono_value_box): don't use memcpy for small sizes on
35014         architectures with unaligned access
35015
35016 2002-05-20  Martin Baulig  <martin@gnome.org>
35017
35018         * reflection.c (mono_reflection_setup_internal_class): Don't crash
35019         if `tb->parent == NULL'.
35020         (mono_reflection_create_internal_class): New function.  This is
35021         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
35022         for enum types.
35023
35024         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
35025         New interncall.
35026
35027 2002-05-19  Martin Baulig  <martin@gnome.org>
35028
35029         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
35030         argument to get the length, don't default to the array length.
35031
35032 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
35033
35034         * assembly.c (mono_assembly_setrootdir): New function used to
35035         override the MONO_ASSEMBLIES directory.
35036
35037 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35038
35039         * icall.c: ValueType_GetHashCode() initialize local var.
35040
35041 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35042
35043         * reflection.c: sort custom attributes table.
35044
35045 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35046
35047         * reflection.c: support named args in custom attributes (write support).
35048
35049 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35050
35051         * reflection.c: fix finally position calculation.
35052
35053 2002-05-15  Radek Doulik  <rodo@ximian.com>
35054
35055         * reflection.c: fixed endianess at many places
35056
35057         * icall.c (ves_icall_InitializeArray): comment out debug msg
35058
35059 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
35060
35061         * object.c (mono_unhandled_exception): new function to handle
35062         unhandled exceptions.
35063         (mono_unhandled_exception): call the UnhandledException event.
35064         (mono_runtime_delegate_invoke): impl.
35065
35066 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
35067
35068         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
35069         returns the RVA, not the direct pointer to the data. Handle the case
35070         when the class size is fixed.
35071
35072 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35073
35074         * reflection.c: fix some endianess issues.
35075
35076 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
35077
35078         * object.c (mono_runtime_invoke): is now able to catch exceptions.
35079
35080         * threads.c (mono_thread_init): added a callback which is invoked
35081         at thread start.
35082
35083 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35084         
35085         * icall.c: make GetHashCode return non-negative values.
35086
35087 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35088
35089         * object.c, icall.c, gc.c: revert to address-based hashcode.
35090
35091 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
35092
35093         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
35094
35095 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35096
35097         * icall.c, class.c: special case <Module>.
35098
35099 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
35100
35101         * icall.c: fix bug in GetNow().
35102
35103 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
35104
35105         * object.c (mono_runtime_class_init): make sure that we call all
35106         static class constructors.
35107
35108 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35109
35110         * reflection.c: sort methodsemantics table.
35111
35112 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35113
35114         * reflection.h, reflection.c: honour init locals setting.
35115
35116 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
35117
35118         * icall.c: copied Double ToStringImpl for Single ToStringImpl
35119
35120 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35121
35122         * reflection.c: support ContructorBuilders in attribute blob creation.
35123
35124 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35125
35126         * reflection.c: some changes to build a binary that can be run
35127         directly in windows.
35128
35129 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35130
35131         * loader.c: print a big message when an icall can't be found.
35132
35133 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35134
35135         * string-icalls.c: fix bug 24248.
35136
35137 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35138
35139         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
35140         icall.c, reflection.h: separate assembly loading by pathname and by
35141         assembly name. Use the MONO_PATH env var to search for assemblies.
35142
35143 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35144
35145         * assembly.c, image.h: add some support for assemblies
35146         with multiple modules.
35147         * class.c, class.h: export mono_class_from_typeref().
35148         * loader.c: remove duplicated code and use mono_class_from_typeref(),
35149         instead.
35150
35151 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35152
35153         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
35154         documentation says (the ECMA one is correct).
35155
35156 2002-05-02  Dick Porter  <dick@ximian.com>
35157
35158         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
35159         Don't name the synchronisation mutex.
35160
35161 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
35162
35163         * rand.c
35164         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
35165         Make the prototypes match.
35166         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
35167         Same.
35168
35169         * icall.c
35170         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
35171         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
35172         all systems have tm.tm_zone, so use strftime() with %Z to print
35173         the timezone abreviation into a temp string.
35174
35175         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
35176         rather than mono_array_addr() on a MonoString on Big Endian
35177         machines.
35178
35179 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
35180
35181         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
35182         fix bug 24041
35183
35184 2002-04-30  Dick Porter  <dick@ximian.com>
35185
35186         * socket-io.c: Cope with SOCKET being an integer rather than a
35187         pointer now.
35188
35189         * threads.c: Added Thread_free_internal, to deal with thread
35190         handle cleanup.  Moved calls to handle_store() and handle_remove()
35191         to start_wrapper(), so each can only be called once.  Allocate
35192         synchronisation blocks with GC_malloc(), and use GC finalisation
35193         to close the handles.
35194
35195         * icall.c: added System.Threading.Thread::Thread_free_internal
35196
35197 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35198
35199         * icall.c: support Environment.Exit, CommandLineArgs().
35200
35201 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35202
35203         * object.c, object.h: added mono_runtime_run_main () and
35204         mono_runtime_get_main_args () for use in System.Environment.
35205
35206 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35207
35208         * gc.c: fix thinko, enable actual finalization since the jit is now
35209         fixed.
35210
35211 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35212
35213         * gc.c, object.c: take into account that an object may be offset wrt the address
35214         returned by GC_malloc().
35215
35216 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
35217
35218         * image.c: handle files without entries in the assembly table (modules).
35219
35220 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
35221
35222         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
35223         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
35224         allowed to be null when it's System.Object class setup.
35225
35226 2002-04-27  Martin Baulig  <martin@gnome.org>
35227
35228         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
35229         if `tb->parent == NULL' rather than crashing.
35230
35231 2002-04-28  Nick Drochak  <ndrochak@gol.com>
35232
35233         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
35234         calling acos() where asin() should have been called.
35235
35236 2002-04-26  Martin Baulig  <martin@gnome.org>
35237
35238         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
35239         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
35240         there's a subdirectory called `System', but we don't want to read that
35241         subdirectory as an assembly.
35242
35243 2002-04-25  Martin Baulig  <martin@gnome.org>
35244
35245         * debug-symfile.c: Reflect latest MonoString changes.
35246
35247 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35248
35249         * rand.c, rand.h: instance method icalls need to have an explicit
35250         this pointer as first argument in the C implementation.
35251
35252 2002-04-25  Nick Drochak <ndrochak@gol.com>
35253
35254         * icall.c: Fix typo in map for GetNonZeroBytes
35255
35256 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35257
35258         * string-icalls.c : String does now passes unit tests without any 
35259         errors, the following changes has been made:
35260         
35261         Implemented replace methods.
35262         Renaming of methods to (try) follow the standard.
35263         Fixed compare ordinal
35264         Made all memory allocated directly to function instead of via icall function.
35265         Small performance fix in is_in_array function
35266                         
35267  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
35268
35269         c (mono_string_Internal_ctor_charp_int_int):
35270         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
35271         sindex < 0, throw ArgumentOutOfRangeException instead of
35272         ArgumentNullException.
35273
35274         Added new check for length == 0, however
35275         I need to make it return String.Empty from the C code.
35276         
35277         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
35278         that calculate the length for us here.
35279         
35280         (mono_string_Internal_ctor_sbytep_int_int): Replaced
35281         mono_string_new_utf16 with mono_string_new, since value is utf8.
35282
35283 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35284
35285         * object.c: register the object for finalization if needed.
35286         Allocate one more char in the string for the terminating 0 char.
35287
35288 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35289
35290         * class.c, class.h, image.c: check if a type implemenst a destructor.
35291         Use the proper key for array class lookups.
35292         * icall.c: register the icalls in the System.GC class.
35293         * gc.c, gc.h: GC-related functions and icalls.
35294
35295 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35296
35297         * icall.c:
35298         * socket-io.c:
35299         * unicode.c: free some strings gotten from mono_string_to_utf8 and
35300         changed a couple of free () by g_free ().
35301
35302         * decimal.c: one-liner in the comments for decimal2string ().
35303
35304 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35305
35306         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
35307
35308 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35309
35310         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
35311         * object.c (mono_runtime_invoke_array) : handle null in params
35312
35313 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35314
35315         * string-icalls.c: fixed bug in split (one off bug)
35316
35317 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35318
35319         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
35320         * icalls.c: added String::Equals as internal method
35321
35322 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35323
35324         * threads.c: fixed bug in the double interlocked functions
35325
35326 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
35327
35328         * threads.c: implemented all of the new interlocked icalls.
35329         * string-icalls.c: fix a bug in insert.
35330         * icalls.c: added the icalls for interlocked, removed old string functions.
35331         
35332 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35333
35334         * loader.c: fix off-by-one error when reading argument names.
35335
35336 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35337
35338         * profiler.c: win32 counter implementation (untested).
35339         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
35340         (the latter needs testing and more complete impl. from win32 folks).
35341
35342 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
35343
35344         * object.c: mono_array_new_full workaround mono_array_class_get
35345         problem.
35346
35347 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35348
35349         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
35350         * object.h (mono_string_chars): Changed casting type.
35351
35352 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35353
35354         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
35355                            method signatures to use gunichar2 instead of gint16.
35356
35357 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
35358
35359         * object.h, object.c: domain-specific versions of mono_object_new and
35360         mono_array_new.
35361
35362 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
35363
35364         * object.c: changed String layout
35365
35366         * string-icalls.c (mono_string_Internal_ctor_chara): added
35367         internal string constructors.
35368
35369 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
35370
35371         * threads.c: pass 'this' to the thread start routine.
35372
35373 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35374
35375         * string-icalls.c: fix IndexOf and LastIndexOf. Now
35376         InternalCompareStr don't call twice mono_string_cmp_char for the last
35377         character. Improved performance in mono_string_cmp_char.
35378
35379 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35380
35381         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
35382         code into its own library: libmonoruntime.
35383
35384 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
35385
35386         * object.h, object.c: changed array format so that szarrays do not
35387         require a bounds structure.
35388         * icall.c, appdomain.c: support for new szarray format.
35389
35390 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35391
35392         * metadata.c: compare also the retuns type when comparing signatures:
35393         we didn't do this as an optimization since really overloaded methods
35394         must differ also in the arguments, but this doesn't work with
35395         low-level IL code (or when using explicit conversion operators: see
35396         bug#23498 for an example).
35397
35398 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35399
35400         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
35401
35402 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
35403
35404         * icall.c: make MonoType::GetElementType its own icall.
35405
35406 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35407
35408         * icall.c: remove MonoMethod_get_Name().
35409         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
35410         object.
35411
35412 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35413
35414         * string-icalls.c: optimized a few methods.
35415
35416 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35417
35418         * icall.c: added all new string internal calls
35419         * string-icalls.c: added, new string internal call implementation.
35420         * object.c: added mono_string_new_size for allocating a string a size
35421
35422 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
35423
35424         * object.c (mono_object_isinst): use the same code as in the
35425         optimized x86 version.
35426
35427 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35428
35429         * profiler.c: TSC-based timer code (faster and more accurate).
35430         Not hooked up in configure, yet (set USE_X86TSC to 1).
35431
35432 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
35433
35434         * profiler.c, profiler.h: track time spent compiling methods.
35435         * threads.c: track thread creation/destruction.
35436
35437 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
35438
35439         * profiler.c, profiler.h, profiler-private.h: profiling interface
35440         and sample implementation. Moved here so that it can be used also by
35441         the jit.
35442
35443 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
35444
35445         * reflection.c, reflection.h: keep types and other handles separate in
35446         the hash tables for referred tokens. Add guid for modules.
35447
35448 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35449
35450         * assembly.c: fix bugs found with valgrind.
35451         * metadata.h, metadata.c: added mono_metadata_guid_heap().
35452
35453 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
35454
35455         * threads: added icall support for getting current domain for
35456                    the thread.
35457  
35458 2002-04-13  Martin Baulig  <martin@gnome.org>
35459
35460         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
35461         (MonoDebugVarInfo): Added `index' field for register based addresses.
35462         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
35463         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
35464         `MonoDebugVarInfo *params' and `guint32 this_offset' with
35465         `MonoDebugVarInfo *this_var'.
35466
35467         * debug-symfile.c (relocate_variable): New static function to write
35468         a location description for a local variable or method parameter.
35469
35470 2002-04-12  Martin Baulig  <martin@gnome.org>
35471
35472         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
35473         stack offset and begin/end scope address of a local variable.
35474         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
35475         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
35476         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
35477
35478         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
35479         Added new relocation types for start/end scope of a local variable.
35480
35481 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35482
35483         * object.h: add mono_object_domain() macro.
35484         * reflection.c: handle typespecs.
35485         * icall.c: MonoMethod::get_Name() implementation.
35486
35487 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35488
35489         * icall.c: String::GetHashCode() icall implementation.
35490
35491 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35492
35493         * icall.c: String::IndexOfAny icall.
35494         * object.c, object.h: make array->max_length more useful.
35495         Intrduced mono_object_class() and mono_string_length() macros.
35496
35497 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35498
35499         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
35500         instead of g_unichar_isdigit.
35501
35502 2002-04-11  Nick Drochak  <ndrochak@gol.com>
35503
35504         * icall.c: Implement a simple Double.ToString().
35505
35506 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35507
35508         * appdomain.h: only io-layer.h is supposed to be included.
35509         * icall.c: explicitly import environ. Fix warning.
35510
35511 2002-04-10  Nick Drochak  <ndrochak@gol.com>
35512
35513         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
35514                 return true even if it's not Daylight Savings time.
35515                 Only return false for the case where the function isn't
35516                 implemented for a plaform (read Windows).
35517
35518 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35519
35520         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
35521         data with a mutex.
35522
35523 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
35524
35525         * mempool.c (mono_mempool_alloc): only use g_malloc when
35526         absolutely necessary.
35527
35528 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35529
35530         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
35531
35532         * class.c (mono_class_vtable): use domain mempool to allocate vtable
35533         (mono_class_proxy_vtable): use domain mempool
35534
35535 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35536
35537         * appdomain.h, appdomain.c: split initialization that requires the
35538         execution engine support into mono_runtime_init().
35539
35540 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35541
35542         * class.c (mono_class_init): don't include vtable inside MonoClass
35543         to save some memory, gather some statistics.
35544         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
35545
35546 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35547
35548         * icall.c: internalcall implementation for ValueType.Equals().
35549
35550 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
35551
35552         * object.c (mono_message_init): moved 
35553         (mono_runtime_exec_main): new arch. independent impl.
35554         (mono_runtime_invoke_array): new method - like
35555         mono_runtime_invoke, but you can pass an array of objects.
35556         (mono_remoting_invoke): new arch. independent impl.
35557         (mono_message_invoke): new arch. independent impl.
35558         (mono_runtime_class_init): new arch. independent impl.
35559         (mono_runtime_object_init): new arch. independent impl.
35560
35561 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35562
35563         * metadata.c, object.c, reflection.c: documented the exported
35564         functions.
35565
35566 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
35567
35568         * icall.c: simpler code to pass the assembly builder data to corlib.
35569         Implement GetNestedTypes() internalcall.
35570
35571 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35572
35573         * class.c: warn if a type can't be loaded.
35574
35575 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
35576
35577         * image.h: typedef MonoImageOpenStatus
35578         * types.h: removed unused file
35579         
35580 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
35581
35582         * icall.c: Enum_ToObject accepts enum value arguments.
35583
35584 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35585
35586         * class.c: move initialization of properties, events and nested
35587         classes, so that they happen for interfaces, too.
35588
35589 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35590
35591         * icall.c: cleanup some ugly casts in Array_SetValue*.
35592
35593 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35594
35595         * icall.c: the values array fro enums is of the correct type, now.
35596         Implement (correctly) getFullName instead of assQualifiedName for
35597         MonoType.
35598         * reflection.h, reflection.c: added mono_type_get_name ().
35599
35600 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35601
35602         * assembly.c, image.h: for each MonoImage, record from wich assembly
35603         it was loaded.
35604         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
35605         Make Type.Assembly work.
35606
35607 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
35608
35609         * debug-symfile.h: use char* instead of gpointer to avoid
35610         unnecessary casts.
35611
35612         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
35613
35614         * icall.c (ves_icall_InternalExecute): impl. FielSetter
35615         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
35616
35617 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
35618
35619         * icall.c (mono_message_init): impl. (code cleanup)
35620         (ves_icall_InternalExecute): impl. FieldGetter
35621
35622         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
35623         defined we call all (non-static)methods through the vtable. 
35624
35625 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
35626
35627         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
35628         finalizer even though the memory is still referenced (and the chunk of
35629         memory is not freed).
35630
35631 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
35632
35633         * assembly.c: fix brokeness.
35634
35635 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
35636
35637         * class.c: kill some warnings. Check explicit interface method
35638         implementation also without considering the namespace.
35639         Load also literal strings in static class data.
35640
35641 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
35642
35643         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
35644         (default_assembly_name_resolver): Make the resolver take the
35645         "base" directory where the assembly was originally defined, so we
35646         can load DLLs that are in the same directory as the assembly that
35647         is being referenced.
35648
35649 2002-03-28  Dick Porter  <dick@ximian.com>
35650
35651         * file-io.h: 
35652         * file-io.c:
35653         * socket-io.c: 
35654         * unicode.h: 
35655         * unicode.c: Warning cleanups
35656
35657 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
35658
35659         * object.h, reflection.h: use the correct type instead of MonoObject.
35660
35661 2002-03-28  Martin Baulig  <martin@gnome.org>
35662
35663         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
35664         (mono_debug_update_symbol_file): Initialize classes if necessary.
35665
35666 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35667
35668         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
35669         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
35670
35671 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
35672
35673         * assembly.h: fix function prototype.
35674         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
35675         * mono-endian.h: use const cast.
35676
35677 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35678
35679         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
35680
35681 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35682
35683         * loader.c: don't assert when a typeref can't be loaded, give
35684         a chance to the runtime to trow an exception instead.
35685         * loader.h: fix warning.
35686
35687 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35688
35689         * class.c (mono_class_proxy_vtable): added proxy support
35690
35691 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
35692
35693         * icall.c: removed last of PAL calls, added System.Environment
35694         * file-io.h, file-io.c: MonoIO implementation
35695         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
35696
35697 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35698
35699         * appdomain.c: do not use the byte marker in ldstr table lookup.
35700         * debug-helpers.c: allow two ':' to separate class and method name.
35701         * object.c: allocate arrays bounds with the GC, too.
35702         * verify: add a few more checks.
35703
35704 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
35705
35706         * reflection.c: output also literal strings. Allocate parameter data
35707         with GC_malloc() (thanks, Martin, for catching this!).
35708
35709 2002-03-26  Martin Baulig  <martin@gnome.org>
35710
35711         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
35712         include the `this' offset in the `param_offsets'.
35713
35714 2002-03-25  Martin Baulig  <martin@gnome.org>
35715
35716         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
35717         mono_debug_get_class() function to get the classes. Added new
35718         relocation types for arrays and strings.
35719         (mono_debug_get_class): New static function to search in all
35720         referenced assemblies for a metadata token.
35721
35722         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
35723
35724 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
35725
35726         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
35727         hold gc-allocated objects. Make the string heap a stream like the
35728         others. Removed duplicated code when writing stream info.
35729         Added asserts to catch possible buffer overflows. Set the sorted map
35730         for tables that need sorting. Added some documentation.
35731
35732 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
35733
35734         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
35735         for interned strings and vtables.
35736
35737 2002-03-24  Martin Baulig  <martin@gnome.org>
35738
35739         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
35740         it in the array since it was created with g_slist_prepend().
35741
35742 2002-03-24  Martin Baulig  <martin@gnome.org>
35743
35744         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
35745         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
35746         (mono_debug_method_from_token): Renamed to
35747         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
35748         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
35749
35750         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
35751         relocation types.
35752
35753         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
35754
35755 2002-03-24  Martin Baulig  <martin@gnome.org>
35756
35757         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
35758         (mono_debug_method_from_token): New func.
35759
35760         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
35761         New interncall, calls mono_debug_local_type_from_signature().
35762         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
35763         calls mono_debug_method_from_token().
35764
35765 2002-03-23  Martin Baulig  <martin@gnome.org>
35766
35767         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
35768         specifies the number of bytes to be converted, not the array size.
35769         Return the number of chars, not the number of bytes.
35770         (ves_icall_iconv_get_chars): The `byteCount' argument
35771         specifies the number of bytes to be converted, not the array size.
35772
35773 2002-03-23  Martin Baulig  <martin@gnome.org>
35774
35775         * reflection.h (MonoReflectionSigHelper): New type.
35776
35777         * reflection.c (mono_reflection_sighelper_get_signature_local),
35778         (mono_reflection_sighelper_get_signature_local): New functions.
35779
35780         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
35781         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
35782         interncalls.
35783
35784 2002-03-23  Martin Baulig  <martin@gnome.org>
35785
35786         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
35787         is_writeable is set.
35788         (mono_raw_buffer_update): New function to write the modified map
35789         back to disk.
35790
35791         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
35792
35793         * debug-symfile.c (mono_debug_update_symbol_file): Call
35794         mono_raw_buffer_update() when done writing.
35795
35796 2002-03-23  Martin Baulig  <martin@gnome.org>
35797
35798         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
35799
35800         * debug-symfile.c: Added support for arguments and local variables.
35801
35802 2002-03-23  Dick Porter  <dick@ximian.com>
35803
35804         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
35805         protected by ifdefs, hence breaking the w32 build.
35806
35807 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35808
35809         * object.c: implement is_interned() the right way.
35810
35811 2002-03-21  Martin Baulig  <martin@gnome.org>
35812
35813         * debug-symfile.[ch]: New files to handle debugging information
35814         files. There's also support to dynamically update these symbol
35815         files to include machine dependent information.
35816
35817 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
35818
35819         * threads.c (mono_thread_create): new function to create thread
35820         from C
35821
35822 2002-03-20  Martin Baulig  <martin@gnome.org>
35823
35824         * icall.c (ves_icall_InternalInvoke): Create a new object if the
35825         method is a constructor.
35826         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
35827         points to ves_icall_InternalInvoke().
35828
35829 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
35830
35831         * file-io.c: Flush shouldn't throw exceptions.
35832
35833 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
35834
35835         * file-io.c: FileStream flush support; FileSetLength now
35836         restores file pointer.
35837
35838 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
35839
35840         * class.c: set image for pointer classes.
35841
35842 2002/03/19  Nick Drochak <ndrochak@gol.com>
35843
35844         * sysmath.c: Forgot one.
35845
35846 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
35847
35848         * sysmath.c: Avoid redefining existing names.
35849
35850 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
35851
35852         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
35853         handled by runtime as icall rather than dllimport from libm.so
35854         * file-io.c, file-io.h: fixed handle argument type.
35855
35856 2002-03-18  Dick Porter  <dick@ximian.com>
35857
35858         * reflection.c (mono_image_get_type_info): rename interface to
35859         iface, because of "#define interface struct" on windows.
35860
35861 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
35862
35863         * class.c, class.h: rename and export mono_ptr_class_get().
35864         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
35865         * reflection.c, reflection.h, icall.c: better/saner type name
35866         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
35867         method signatures.
35868
35869 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
35870
35871         * class.c (mono_class_init): removed hardcoded GHC_SLOT
35872
35873         * icall.c (ves_icall_InternalInvoke): impl.
35874
35875 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
35876
35877         * reflection.c: output the interface map table, too.
35878
35879 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35880
35881         * class.c (class_compute_field_layout): separate computation of 
35882         static field layout
35883
35884 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
35885
35886         * icall.c: added System.Buffer support.
35887         * file-io.c: moved file icalls from PAL to FileStream.
35888
35889 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35890
35891         * icall.c (ves_icall_System_Object_GetHashCode): impl.
35892
35893 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
35894
35895         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
35896
35897 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35898
35899         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
35900
35901 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
35902
35903         * debug-helpers.{c,h}: moved here from monograph some useful functions
35904         to locate a method by name/signature in a class or image. Included
35905         also a small and flexible IL disassembler.
35906
35907 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35908
35909         * reflection.c: fixup tokens in methods with small header size, too.
35910
35911 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
35912
35913         * object.c (mono_string_to_utf8): remove assert(!error), instead
35914         print a warning. 
35915
35916 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
35917
35918         * icall.c: update to the new mono_Array_class_get interface.
35919
35920 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35921
35922         * appdomain.c, object.c: Boehm-GC enable.
35923         * icall.c: make get_data_chunk() support split data requests.
35924         Ensure a class is initialized in more cases. Return only the first
35925         property found in GetProperties() or the compiler gets confused. 
35926         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
35927         * reflection.h, reflection.c: add fixup mechanism for field and method
35928         tokens. Initialize assembly->typeref in a single place. Output
35929         properties after events. Support custom attributes for events, too.
35930         Typo fix for paramter custom attrs.
35931
35932 2002-03-07  Martin Baulig  <martin@gnome.org>
35933
35934         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
35935
35936 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
35937
35938         * class.c (mono_array_class_get): fix. for multi. dim. arrays
35939
35940 2002-03-06  Martin Baulig  <martin@gnome.org>
35941
35942         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
35943         non-zero lower bounds. See testcases #F10-#F13.
35944
35945 2002-03-05  Martin Baulig  <martin@gnome.org>
35946
35947         * exception.c (mono_get_exception_argument_out_of_range): New exception.
35948
35949         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
35950         ves_icall_System_Array_GetValue(), only calculate the absolute array position
35951         here.
35952         (ves_icall_System_Array_SetValue): Likewise.
35953         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
35954         as argument and does the actual work. This function is used when copying a
35955         multi-dimensional array.
35956         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
35957         now do all the widening conversions of value types.
35958         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
35959
35960 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35961
35962         * class.c: remove some magic numbers and use the smbolic names,
35963         instead. Added init_events() to load event info at class init time.
35964         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
35965         and mono_metadata_methods_from_event().
35966         * reflection.h, reflection.c: added support for writing out the evnets
35967         related information.
35968
35969 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35970
35971         * reflection.h, icall.c: use a different method (GetInterfaces)
35972         to gather interface info and add isbyref, isprimitive and
35973         ispointer to the ves_icall_get_type_info() return value.
35974
35975 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35976
35977         * class.h: stared adding support for events.
35978         * icall.c: split find_members implementation. Added debug icall to get
35979         the address of an object.
35980         * reflection.c: handle TypeBuilders in mono_type_get_object().
35981
35982 2002-03-01  Martin Baulig  <martin@gnome.org>
35983
35984         * icall.c (ves_icall_System_Array_GetLength): This must throw an
35985         ArgumentOutOfRangeException(), not an ArgumentException().
35986         (ves_icall_System_Array_GetLowerBound): Likewise.
35987         (ves_icall_System_Array_GetValue): Improved argument checking.
35988         (ves_icall_System_Array_SetValue): Improved argument checking.
35989
35990 2002-03-01  Martin Baulig  <martin@gnome.org>
35991
35992         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
35993         called with invalid arguments rather than just dying with g_assert().
35994         (ves_icall_System_Array_SetValue): Likewise.
35995         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
35996         raise a NotImplementedException instead.
35997         (ves_icall_System_Array_GetLength): Added argument checking.
35998         (ves_icall_System_Array_GetLowerBound): Added argument checking.
35999
36000 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
36001
36002         * object.h (mono_assert): new macros mono_assert and
36003         mono_assert_not_reached
36004
36005 2002-02-28  Martin Baulig  <martin@gnome.org>
36006
36007         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
36008         and "System::String::IsInterned" to "System::String::_IsInterned".
36009
36010 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
36011
36012         * icall.c: remove hacks for typebuilder. Added icall to create a
36013         modified type from a tybebuilder.
36014         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
36015         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
36016         to create a backing MonoClass for a TypeBuilder.
36017
36018 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36019
36020         * class.c, class.h: more refactoring of class init.
36021         Export mono_class_setup_mono_type() and mono_class_setup_parent().
36022
36023 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
36024
36025         * marshal.c, marshal.h: start of marshaling interface.
36026
36027 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36028
36029         * icall.c: fix order in assembly qualified name icall.
36030
36031 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36032
36033         * class.c: do not free str, since we store it in the hash table.
36034         * reflection.h: add label field to MonoILExceptionInfo.
36035         * reflection.c: handle references to more than one assembly. Handle
36036         case when there isn't a module created in the assembly.
36037
36038 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36039
36040         * class.c: Fix typo. Start refactoring of class init code.
36041
36042 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36043
36044         * appdomain.c: exit with 1 on error.
36045         * class.c: we already have the name in MonoClassField.
36046         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
36047         MonoStreamHeader instead of an offset of image->raw_metadata.
36048
36049 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
36050
36051         * appdomain.c (mono_init): Be even more descriptive about the error.
36052
36053 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
36054
36055         * appdomain.c: give the user an informative message when corlib can't
36056         be loaded.
36057
36058 2002-02-26  Martin Baulig  <martin@gnome.org>
36059
36060         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
36061         New icall to get the time zone data.
36062
36063 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36064
36065         * reflection.c: set virtual and raw size of section correctly.
36066         * threads.c: transfer domain information to newly created threads.
36067
36068 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36069
36070         * class.c: when instancing a class in a domain, load the default
36071         vaules for static fields from the constant table. Fix System.Enum to
36072         not be an enum.
36073         * icall.c: implement Object::GetType() internalcall. Implemented
36074         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
36075         Fixed checking of binding flags in find_members().
36076         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
36077         * reflection.c: handle enumerations when writing to the constant
36078         table. Use a different object cache for types.
36079
36080
36081 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
36082
36083         * object.c (mono_object_isinst): fix for arrays
36084
36085         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
36086
36087 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36088
36089         * object.c: don't use mprotect ()  and fix intern pool hash table
36090         lookup for big endian systems.
36091
36092 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36093
36094         * icall.c: change type_is_subtype_of () signature.
36095
36096 2002-02-21  Mark Crichton  <crichton@gimp.org>
36097
36098         * rand.c, rand.h: Added random number generator for
36099         System.Security.Cryptography classes.
36100
36101         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
36102
36103         * icall.c: Added System.Security.Cryptography calls.
36104
36105 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
36106
36107         * class.c, icall.c, metadata.c: better support for pointer types.
36108         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
36109         * reflection.c: Add support for getting custom attrs for properties
36110         and simplify some code.
36111
36112 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36113
36114         * icall.c: change getToken () and add custom attribute GetBlob()helper
36115         method.
36116         * reflection.h: add custom attrs array to the reflection builder structures.
36117         * reflection.c: encode and emit custom attributes for all the relevant
36118         reflection objects. Cache fieldref and methodref tokens. Change
36119         mono_image_create_token() interface to take a MonoDynamicAssembly.
36120         More complete custom attributes decoder. Load custom attributes for
36121         Assembly, Field, Method and Constructor objects, too. Make the
36122         returned array an Attribute[] one, not object[]. Added
36123         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
36124         custom attribute constructor.
36125
36126 2002-02-20  Dick Porter  <dick@ximian.com>
36127
36128         * icall.c:
36129         * rawbuffer.c:
36130         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
36131         problem code out for now).
36132
36133 2002-02-19  Radek Doulik  <rodo@ximian.com>
36134
36135         * object.c (mono_ldstr): use hash table to avoid multiple swapping
36136
36137 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
36138
36139         * icall.c: register the GetCustomAttributes method.
36140         * object.c, object.h: add mono_string_new_len ().
36141         * reflection.h, reflection.c: added mono_runtime_invoke(),
36142         mono_install_runtime_invoke(). Added
36143         mono_reflection_get_custom_attrs () to load custom attributes and
36144         create the attribute objects.
36145
36146 2002-02-19  Dick Porter  <dick@ximian.com>
36147         * threads-dummy-types.c:
36148         * threads-dummy-types.h:
36149         * threads-dummy.c:
36150         * threads-dummy.h:
36151         * threads-pthread-types.c:
36152         * threads-pthread-types.h:
36153         * threads-pthread.c:
36154         * threads-pthread.h:  Deleted obsolete files
36155
36156 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
36157
36158         * class.c (mono_class_vtable): runtime init the class when we
36159         allocate static class data.
36160
36161         * icall.c (ves_icall_System_Array_SetValue): check for null values.
36162
36163         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
36164         and String - but we will need generic marshalling support in the
36165         future. 
36166         (mono_init): set the domain name in a ms compatible way
36167
36168         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
36169         String[].
36170
36171 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
36172
36173         * object.c (mono_array_clone): use alloca() instead of g_malloc  
36174         for sizes
36175
36176         * appdomain.c (mono_domain_unload): impl.
36177
36178 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36179
36180         * appdomain.c, object.c: fix intern pool implementation.
36181         * class.c: fix alignment code.
36182
36183 2002-02-16  Radek Doulik  <rodo@ximian.com>
36184
36185         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
36186         and s2 > s1, just copy lower bytes to be compatible with little
36187         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
36188         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
36189
36190         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
36191         force big_endian to be 1 for big endian machines 
36192         (ves_icall_iconv_new_decoder): ditto
36193
36194 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
36195
36196         * socket-io.c (convert_sockopt_level_and_name): If the system
36197         doesn't define SOL_IP or SOL_TCP, get them by hand using
36198         getprotobyname() and caching the values (because this could be a
36199         slow operation).
36200         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
36201         Use the appropriate struct when the system does support it. Ie,
36202         not all systems have struct ip_mreqn so use struct ip_mreq when
36203         appropriate.
36204
36205 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
36206
36207         * reflection.c: handle finally clauses.
36208
36209 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
36210
36211         * socket-io.c: use g_snprintf() instead of snprintf.
36212
36213 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36214
36215         * reflection.c (mono_param_get_objects): Cast second argument to
36216         mono_method_get_param_names to a const char** to silence the
36217         compiler warning.
36218
36219         * appdomain.c (mono_domain_assembly_open): Put parens around the
36220         truth statement in the for-loop.
36221
36222         * unicode.c (iconv_convert): Got rid of a compiler warning about
36223         int i being unused when the system has a new iconv.
36224         (iconv_get_length): Same.
36225
36226         * image.c (load_class_names): Cast the second argument to
36227         g_hash_table_insert() to char* to hush compiler warnings about the
36228         arg being a const.
36229         (mono_image_open): Same here.
36230
36231         * socket-io.c: Don't conditionally include sys/filio.h or
36232         sys/sockio.h here anymore since we now get them from
36233         io-layer/io-layer.h
36234         (inet_pton): If the system doesn't support inet_aton, implement
36235         using inet_addr and also #define INADDR_NONE if it isn't defined
36236         by the system.
36237
36238 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
36239
36240         * metadata.c, metadata.h: added function to get packing and size info
36241         of a typedef.
36242         * reflection.h, reflection.c: handle field RVA data. Save info about
36243         the table layout if needed. Assign typedef indexes to all the types
36244         before dumping the info about them to avoid forward reference problems.
36245
36246 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
36247
36248         * socket-io.c (convert_sockopt_level_and_name): ifdef
36249         SO_ACCEPTCONN because it is not defined on my system (old debian)
36250
36251 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36252
36253         * opcode.c: use stddef.h to get NULL.
36254
36255 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36256
36257         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
36258         for FIONBIO, FIONREAD and SIOCATMARK.
36259         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
36260         define INADDR_NONE and besides, inet_addr() is deprecated and
36261         should not be used. Use inet_pton() instead - it also has the
36262         added bonus that it can easily handle IPv6 addresses as well.
36263         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
36264
36265 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36266
36267         * decimal.c: remove _MSC_VER conditional.
36268
36269 2002-02-13  Dick Porter  <dick@ximian.com>
36270
36271         * socket-io.c: 
36272         * icall.c: Internal calls for Blocking, Select, Shutdown,
36273         GetSocketOption and SetSocketOption
36274
36275 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36276
36277         * assembly.cs: better resolver: use it instead of some kludgy
36278         code.
36279
36280 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
36281
36282         * reflection.c: the best way to speed-up the compiler is to avoid
36283         infinite loops.
36284
36285 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
36286
36287         * class.c (mono_class_vtable): changed the object layout
36288         (obj->vtable->class). 
36289         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
36290
36291 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36292
36293         * assembly.c: look for assemblies in the assembly dir, too.
36294
36295 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36296
36297         * class.c: fix thinko in mono_class_from_type().
36298
36299 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36300
36301         * exception.h, exception.c: added TypeLoadException.
36302         * object.h, object.c: added mono_array_clone ().
36303         * icall.c: handle throwOnError in AssemblyGetType().
36304         Added Array.Clone().
36305         * opcode.h, opcode.c: use a single value for the opcode val.
36306         Compile fix for non-gcc compilers.
36307
36308 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
36309
36310         * opcodes.c, opcodes.h: export interesting info about opcodes.
36311
36312 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
36313
36314         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
36315         icalls. 
36316
36317         * class.c (class_compute_field_layout): set element_class for enums
36318         (mono_class_create_from_typedef): set element_class for normal classes
36319
36320         * icall.c (ves_icall_System_Enum_get_value): impl.
36321
36322         * class.c (mono_class_create_from_typedef): do not set valuetype
36323         flag for System.ValueType and System.Enum
36324
36325 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
36326
36327         * unicode.c (iconv_convert): fix big endian problem.
36328
36329 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36330
36331         * class.c: add asserts if we are ever going to scribble over memory.
36332         * socket-io.c: not all systems have AF_IRDA defined.
36333
36334 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
36335
36336         * class.c (class_compute_field_layout): do not consider static
36337         fields to compute alignment
36338
36339 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
36340
36341         * appdomain.c (mono_appdomain_get): impl.
36342         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
36343
36344 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36345
36346         * icall.c: ignore "file://" prefix when loading an assembly.
36347
36348 2002-01-23  Dick Porter  <dick@ximian.com>
36349
36350         * socket-io.c:
36351         * icall.c:
36352         * Makefile.am: Added socket support
36353
36354 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36355
36356         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
36357         code back.  This should return the assemblies that are loaded by
36358         the runtime on behalf of an application domain. 
36359
36360         The current implementation is still broken, it just returns every
36361         assembly loaded, but until we get real applications domain this
36362         will do.
36363
36364 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
36365
36366         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
36367         AppDomain object.
36368
36369 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36370
36371         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
36372         the mono_class_from_name lookup.
36373         (ves_icall_get_parameter_info): ditto.
36374         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
36375         method.
36376         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
36377
36378 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
36379
36380         * class.c: load also nested classes on class init.
36381         System.ValueType instance methods gets passed boxed
36382         values, unless methods in derived classed that get a pointer to the
36383         data.
36384         * icall.c: use better name parsing code in GetType().
36385         * image.c, image.h: add mono_image_loaded ().
36386         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
36387         * reflection.c, reflection.h: added mono_reflection_parse_type().
36388
36389 2002-01-22  Veronica De Santis <veron78@interfree.it>
36390
36391         * icall.c : Added mapping of internal calls for Manual and Auto reset events
36392         * threads.c : Added the implementation of internal calls for events
36393         * threads.h : Added prototypes of internal calls for events
36394         
36395 2002-01-21  Radek Doulik  <rodo@ximian.com>
36396
36397         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
36398
36399 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
36400
36401         * class.c (mono_class_init): set min_align to 1 (instead of 0)
36402         (mono_class_value_size): use min_align
36403
36404 2002-01-20  Dick Porter  <dick@ximian.com>
36405
36406         * threads.h:
36407         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
36408         so it compiles on w32.
36409
36410 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
36411
36412         * metadata.c (mono_type_stack_size): impl.
36413
36414         * class.c (mono_class_get_field): impl. memberref token
36415
36416 2002-01-16 Veronica De Santis <veron78@@interfree.it>
36417
36418         * icall.h : Added the internal calls mapping for CreateMutex_internal
36419                     and ReleaseMutex_internal.
36420         * threads.h : Added the prototype of mutexes internal calls.
36421         * threads.c : Added the implementations of mutexes internal calls.
36422
36423 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36424
36425         * metaparse.h: removed unused file.
36426         * reflection.c, reflection.h: added stream_data_align () function 
36427         to align data in streams and keep stream aligned. Add support for
36428         exception support in method headers.
36429
36430 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
36431
36432         * unicode.c: make iconv_convert () return the number of bytess written
36433         in the output buffer.
36434
36435 2002-01-15  Dick Porter  <dick@ximian.com>
36436         * threads.c: Make the runtime's idea of infinite timeouts coincide
36437         with the class library's
36438
36439         Fix a particularly egregious bug in mono_thread_cleanup(). That
36440         code was so utterly bogus it must have been written on a Monday.
36441
36442 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36443
36444         * reflection.h: add subtypes field to TypeBuilder.
36445         * reflection.c: encode constants for literal fields.
36446         Handle subtypes. Fix user string token (and add a zero byte)
36447         at the end.
36448         
36449 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
36450
36451         * class.c (mono_class_init): bug fix: assign slot numbers for
36452         abstract methods.
36453
36454 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36455
36456         * reflection.c: don't try to output a code RVA for abstract methods.
36457         Small fixes for method header format. Output parameter info to the
36458         ParamDef table. Save method overriding info to MethodImpl table.
36459         Fix property support. Allow typedef.extends to be a type in the
36460         building assembly.
36461         * verify.c: fix off-by-one error.
36462
36463 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
36464
36465         * class.c: fix mono_class_from_mono_type () for szarray types.
36466         Remove unused cache check in mono_class_from_type_spec().
36467         * icall.c: *type_from_name () functions handle simple arrays and byref.
36468         * reflection.c: handle byref and szarray types. Handle methods without
36469         body (gets P/Invoke compilation working). Handle types and fields in
36470         get_token ().
36471         * reflection.h: add rank to MonoTypeInfo.
36472
36473 2002-01-10  Dick Porter  <dick@ximian.com>
36474
36475         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
36476         internal calls
36477
36478 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36479
36480         * icall.c: initialize class in type_from_handle ().
36481         Loop also in parent classes for get_method ().
36482         * reflection.c: properly encode class and valuetype types.
36483         Start on encoding TypeBuilder types. Handle fieldrefs.
36484         Use correct length when registering a user string.
36485         Handle ConstructorBuilder and MonoMethod in get_token ().
36486         Make mono_type_get_object () aware of cached types.
36487         * object.c: back out change to mono_string_new ().
36488
36489 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
36490         * object.c: mono_string_new should return a NULL when the string 
36491         passed in is NULL -- not try to deference it.
36492         
36493 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36494
36495         * icall.c: hack to make IsSubType work for TypeBuilders.
36496         * reflection.c: emit constructors before methods.
36497         Retrieve param names in mono_param_get_objects().
36498
36499 2002/01/05  Nick Drochak  <ndrochak@gol.com>
36500
36501         * Makefile.am: fix list of headers and sources so automake 1.5
36502         doesn't complain. Removed \# at end of list.
36503
36504 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36505
36506         * reflection.c: get token for a method ref. Set return type of
36507         constructor to void.
36508         * loader.c: debug message.
36509         * class.c: typo fix.
36510
36511 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
36512
36513         * icall.c: fix array init with rank > 1. FindMembers
36514         loops in parent class as well.
36515         * image.c: do not insert nested types in name cache.
36516         * reflection.c: warning fix.
36517         * reflection.h: add override method (for interface impl).
36518
36519 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
36520
36521         * metadata.c: fix customattr decoding.
36522
36523 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
36524
36525         * rawbuffer.cs: Added native Win32 implementation, avoids using
36526         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
36527
36528 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
36529
36530         * class.c: make the low-level routines handle the cache.
36531
36532 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
36533
36534         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
36535
36536 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
36537
36538         * class.c: fix mono_array_element_size() for objects.
36539         * class.h, class.c: add properties to MonoClass and load them
36540         at init time.
36541         * icall.c: check with isinst() when assigning a value to an array
36542         instead of requiring the classes to match exactly.
36543         Implemented icall for System.Type::GetType().
36544         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
36545         enums. Handle bindingflags when looking for methods and fields.
36546         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
36547         and mono_metadata_methods_from_property().
36548         * reflection.h, reflection.c: added structures for propreties,
36549         parameters and enums. Implemented mono_property_get_object() and
36550         mono_param_get_objects().
36551
36552 2001-12-18  Dick Porter  <dick@ximian.com>
36553
36554         * file-io.c: Use mono_string_to_utf16() instead of
36555         mono_string_chars()
36556
36557         * object.c: Added mono_string_to_utf16(), which copies the non
36558         NULL-terminated MonoString into a new double-null-terminated
36559         buffer.
36560
36561 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
36562
36563         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
36564
36565 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
36566
36567         * file-io.c: raise exceptions if handle is invalid.
36568
36569 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
36570
36571         * assembly.c: yet another check for mscorlib.
36572         * class.c, class.h: load nesting info for classes.
36573         * icall.c: many new functions to support the Reflection classes.
36574         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
36575         * reflection.h, reflection.c: mono_image_create_token(),
36576         mono_assembly_get_object(), mono_type_get_object(),
36577         mono_method_get_object(), mono_field_get_object(): methods to return
36578         objects that parallel the C representation of assemblies, types,
36579         methods, fields.
36580
36581 2001-12-11  Dick Porter  <dick@ximian.com>
36582
36583         * icall.c:
36584         * file-io.c: Internal calls for file IO.
36585
36586 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
36587
36588         * tabledefs.h: missing FileAttributes.
36589         * verify.h, verify.c: use is_valid_string () to simplify and check for
36590         valid strings more correctly. Fix warnings and speeling.
36591         Check more tables: Filed, File, ModuleRef, StandAloneSig.
36592         Check code: branches, maxstack, method calls.
36593
36594 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
36595
36596         * object.c (mono_object_allocate): removed static, so that the jit
36597         can allocate value types.
36598
36599         * icall.c (ves_icall_System_DateTime_GetNow): impl.
36600
36601 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36602
36603         * class.c: init enum types right away and register the
36604         token->MonoClass map in mono_class_create_from_typedef ().
36605         * verify.h, verify.c: first cut of the verifier.
36606         * pedump.c: add --verify switch to verify metadata tables.
36607         * tabledefs.h: add some missing enums.
36608
36609 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
36610
36611         * class.c (mono_install_runtime_class_init): impl.
36612         (mono_class_init): renamed mono_class_metadata_init to
36613         mono_class_init, also removed the metadata_inited flag
36614
36615         * object.c (mono_object_isinst): use faster algorithm
36616
36617 2001-11-30  Radek Doulik  <rodo@ximian.com>
36618
36619         * mono-endian.h: reverted last change
36620         added function prototypes
36621
36622         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
36623         add mono-endian.c back
36624
36625         * mono-endian.c: returned back, as Paolo pointed out, it's needed
36626         for unaligned access, I've mistaked it with endianess. I am
36627         sorry.
36628         (mono_read16): fix reverted endianess
36629         (mono_read64): ditto
36630         (mono_read32): ditto
36631
36632 2001-11-30  Dick Porter  <dick@ximian.com>
36633
36634         * exception.c: Implement mono_exception_from_name()
36635
36636 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36637
36638         * metadata.h, metadata.c: remove params_size and locals_size and their
36639         calculation from the metadata code: they are only usefult to the
36640         interp.
36641
36642 2001-11-29  Radek Doulik  <rodo@ximian.com>
36643
36644         * object.c (mono_ldstr): swap bytes here, it's probably not the
36645         best place, but works for me now, I'll redo it once I know mono
36646         better, also note that I add PROT_WRITE and don't reset back, also
36647         note that it's only affects big endians, so x86 should be OK
36648
36649         * mono-endian.h (read16): use just glib macros for both endians
36650
36651         * mono-endian.c: removed as glib macros are used in in
36652         mono-endian.h so we don't need to care about endianess for read
36653         macros as glib does that for us already
36654
36655 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
36656
36657         * class.h, class.h: take minimum alignment into consideration so
36658         that the fields of a class remain aligned also when in an array.
36659
36660 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36661
36662         * loader.h, loader.c: add mono_method_get_param_names().
36663         * class.c: 0-init class fields.
36664
36665 2001-11-26  Dick Porter  <dick@ximian.com>
36666
36667         * icall.c:
36668         * threads-types.h:
36669         * threads.c: New file that handles System.Threading on all platforms
36670
36671         * object.c: 
36672         * object.h: Remove the synchronisation struct from MonoObject,
36673         replace it with a pointer that gets initialised on demand
36674
36675         * Makefile.am: Replace all the system-specific threading code with
36676         a single file that uses the new wrapper library
36677
36678 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
36679
36680         * class.c, class.h: add mono_install_trampoline() so that the runtime
36681         can register a function to create a trampoline: removes the ugly
36682         requirement that a runtime needed to export arch_create_jit_trampoline.
36683         * object.h, object.c: added mono_install_handler() so that the runtime
36684         can install an handler for exceptions generated in C code (with
36685         mono_raise_exception()). Added C struct for System.Delegate.
36686         * pedump.c: removed arch_create_jit_trampoline.
36687         * reflection.c: some cleanups to allow registering user strings and
36688         later getting a token for methodrefs and fieldrefs before the assembly
36689         is built.
36690         * row-indexes.h: updates and fixes from the new ECMA specs.
36691
36692 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
36693
36694         * class.h, class.c: add enum_basetype field to MonoClass.
36695         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
36696         to get index in the constant table reated to a field, param or
36697         property.
36698         * reflection.h, reflection.c: handle constructors. Set public-key and
36699         version number of the built assembly to 0.
36700         * row-indexes.h: update from new ECMA spec.
36701
36702 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36703
36704         * class.h, class.c: add a max_interface_id to MonoClass.
36705         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
36706         since it's used to do that. Added mono_type_type_from_obj().
36707         Make GetType() return NULL instead of segfaulting if the type was not
36708         found. Handle simple arrays in assQualifiedName.
36709         * object.h: add a struct to represent an Exception.
36710         * reflection.c: output call convention in method signature.
36711         Add code to support P/Invoke methods and fixed offsets for fields.
36712
36713 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
36714
36715         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
36716         the value.
36717         * icall.c: use mono_array_addr instead of array->vector: fixes the
36718         reflection image writing.
36719         * reflection.c: init call convention byte to 0 in method signature.
36720         Encode the property signature. Don't output property-related methods
36721         twice. Really process the properties for a type (don't cast a field to
36722         a property, my mom always told me that).
36723         Fix 64 bit issues in pointer alignment in a different and more
36724         readable way.
36725
36726 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
36727
36728         * loader.h: Removed type class from MonoDefaults, added monotype
36729
36730         * loader.c: Loaded MonoType, removed loading of Type
36731
36732         * icall.c (my_mono_new_object): Now returns a System.MonoType,
36733         and fills in System.Type._impl with a RuntimeTypeHandle rather
36734         than the actual MonoClass *
36735
36736         (ves_icall_type_from_handle): change from type_class to
36737         monotype_class
36738
36739         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
36740         implemented
36741
36742         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
36743         implemented
36744
36745         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
36746
36747         (ves_icall_System_Reflection_Assembly_GetType): implemented
36748
36749         (ves_icall_System_MonoType_assQualifiedName): implemented
36750
36751         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
36752
36753 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
36754
36755         * assembly.c (mono_assembly_open): Implement a cache for the
36756         assemblies. 
36757
36758         (mono_assembly_close): only destroy the assembly when the last
36759         reference is gone.
36760         
36761 2001-11-09  Dick Porter  <dick@ximian.com>
36762
36763         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
36764
36765 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
36766
36767         * class.c (mono_class_metadata_init): bug fix: compute the right slot
36768
36769 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36770
36771         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
36772         from Martin Weindel.
36773         * object.h: add mono_string_chars ().
36774
36775 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
36776
36777         * reflection.c (build_compressed_metadata): Eliminates warnings
36778         and uses 64-bit clean code.
36779
36780         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
36781         (mono_type_equal): Change signature to eliminate warnings.
36782
36783 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36784
36785         * icall.c, loader.c: remove the internalcall array constructors.
36786         Changes to match the new MonoArray structure.
36787         * object.h, object.c: an array object doesn't allocate an extra
36788         vector. Add mono_array_new_full () to create jagged arrays easily.
36789
36790 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36791
36792         * metadata.h, metadata.c: add mono_metadata_field_info () to
36793         retreive all the info about a field from vairous tables.
36794         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
36795         * class.h, class.c: augment MonoClassField with more info.
36796         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
36797         policy and load a field's RVA if needed.
36798
36799 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
36800
36801         * class.c (mono_class_metadata_init): create a trampoline for all
36802         virtual functions instead of actually compiling them.
36803
36804 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
36805
36806         * class.h, class.c: include name in MonoClassField.
36807         * class.c: fix fundamental type of System.Object and System.String.
36808         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
36809         tokens in ldtoken.
36810         * icall.c: remove internalcalls for the Reflection stuff that is now
36811         done in C# code.
36812         * loader.c: mono_field_from_memberref () implementation.
36813         * mono-endian.c: thinko (s/struct/union/g).
36814         * object.c, object.h: make the mono_string_* prototypes actually use
36815         MonoString instead of MonoObject.
36816         * reflection.c, reflection.h: updates for changes in the reflection
36817         code in corlib: we use C structures that map to the actual C# classes.
36818         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
36819         fat method header if needed and use the info from the ILGenerator for
36820         methods. Handle fields in types. Misc fixes.
36821
36822 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
36823
36824         * class.c (mono_class_metadata_init): bug fix: always allocate
36825         space for static class data
36826
36827 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
36828
36829         * class.c (mono_compute_relative_numbering): use relative
36830         numbering to support fast runtime type checks.
36831
36832 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
36833
36834         * class.c (mono_class_create_from_typeref): added debugging output
36835         to print class name when MonoDummy is returned instead of real class
36836
36837 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
36838
36839         * class.c (mono_class_metadata_init): interface offset table now
36840         contains pointers into the vtable - this is more efficient for the jit
36841
36842 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
36843
36844         * class.c (mono_class_metadata_init): use a temporary vtable (the
36845         old algorithm only worked for the interpreter, but not for the jit)
36846
36847 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
36848
36849         * loader.c (method_from_memberref): use mono_class_get to get the
36850         class of an array instead of using System.Array directly.
36851         (mono_get_method): also add MEMBERREF methods to the method cache
36852         which usefull for arrays.
36853
36854 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
36855
36856         * pedump.c (arch_compile_method): added to compute vtable entry
36857
36858         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
36859         number of interfaces.
36860         
36861         * class.h: merged MonoArrayClass into MonoClass
36862
36863         * class.c (mono_class_create_from_typedef): compute the vtable size and
36864         allocate space to include the vtable inside MonoClass
36865         (mono_class_metadata_init): initialize the vtable
36866
36867 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
36868
36869         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
36870         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
36871         * image.c: endian fixes by Laurent Rioux.
36872         * object.h, object.c: rename MonoStringObject to MonoString and
36873         MonoArrayObject to MonoArray. Change some function names to conform to
36874         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
36875         guint16* as first argument, so don't use char*.
36876         Provide macros to do the interesting things on arrays in a portable way.
36877         * threads-pthread.c: updates for the API changes and #include <sched.h>
36878         (required for sched_yield()).
36879         * icall.c: updates for the API changes above.
36880         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
36881         platforms that need them.
36882
36883 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36884
36885         * class.c: set the correct type for all the fundamental
36886         type when loading the class.
36887
36888 2001-10-05  Dick Porter  <dick@ximian.com>
36889
36890         * threads-pthread.c (pthread_mutex_timedlock): Simple
36891         compatibility version for C libraries that lack this call.
36892
36893 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36894
36895         * class.c: MonoTypes stored in MonoClass are stored as
36896         fundamental MonoTypes when the class represents a
36897         fundamental type (System.Int32, ...).
36898         The TypeHandle return by ldtoken is a MonoType*.
36899         * icall.c: ves_icall_get_data_chunk () write out all the
36900         PE/COFF stuff. Implement ves_icall_define_method (),
36901         ves_icall_set_method_body (), ves_icall_type_from_handle ().
36902         * image.c: properly skip unknown streams.
36903         * loader.h, loader.c: add type_class to mono_defaults.
36904         * metadata.c, metadata.h: export compute_size () as
36905         mono_metadata_compute_size () with a better interface.
36906         Typo and C&P fixes.
36907         * pedump.c: don't try to print the entry point RVA if there is no entry point.
36908         * reflection.c, reflection.h: many cleanups, fixes, output method
36909         signatures and headers, typedef and typeref info, compress the metadata
36910         tables, output all the heap streams, cli header etc.
36911         * row-indexes.h: typo fixes.
36912
36913 2001-10-04  Dick Porter  <dick@ximian.com>
36914
36915         * object.h: Add a synchronisation mutex struct to MonoObject
36916
36917         * object.c (mono_new_object): Initialise the object
36918         synchronisation mutexes
36919
36920         * icall.c: System.Threading.Monitor internal calls
36921         
36922         * threads-pthread.h:
36923         * threads-pthread.c: System.Threading.Monitor internal calls
36924
36925         * threads-types.h: New file, includes the system-specific thread
36926         structures
36927         
36928         * threads-pthread-types.h:
36929         * threads-pthread-types.c: New files, handle pthread-specific
36930         synchronisation types
36931
36932         * threads-dummy-types.h: 
36933         * threads-dummy-types.c: New files of dummy support for
36934         thread-specific types
36935
36936         * metadata.c:
36937         * image.c:
36938         * pedump.c: include mono-endian.h not endian.h
36939         
36940         * Makefile.am: More threads files.
36941         Name mono-endian.h not endian.h
36942
36943 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
36944
36945         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
36946         stuff and implement a few more bits.
36947         * icall.c: a field needs to be dereferenced twice. Do not use the same
36948         name for two variables in the same scope.
36949         * image.c, image.h: cleanups.
36950
36951 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
36952
36953         * class.c (mono_class_metadata_init): bug fix: compute the right size
36954
36955 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
36956
36957         * icall.c: implemented some of the Reflection internalcalls.
36958         * image.c, image.h: start writing out the PE/COFF image.
36959         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
36960         that does the reverse than decode_blob_size ().
36961         * object.c: use mono_metadata_encode_value (). Move here
36962         temporary implementation of mono_string_to_utf8 ().
36963         * rawbuffer.c: make malloc_map static.
36964
36965 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36966
36967         * metadata.c: fix type comparison for arrays.
36968         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
36969         Added a couple of new classes to monodefaults.
36970         * icall.c: added a couple of Reflection-related internalcalls.
36971         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
36972         Added a byval_arg MonoType to MonoClass.
36973
36974 2001-09-28  Dick Porter  <dick@ximian.com>
36975
36976         * icall.c:
36977         * threads-pthread.h: 
36978         * threads-pthread.c: Implemented internal calls for
36979         LocalDataStoreSlot operations.  Applied mutexes around all shared
36980         data.  Reworked the thread creation and Start() operations to
36981         avoid a race condition.
36982         
36983         * threads-dummy.h:
36984         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
36985
36986 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
36987
36988         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
36989
36990 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
36991
36992         * class.c, loader.c: warn and return NULL instead of erroring out.
36993         * icall.c: added System.AppDomain::getCurDomain().
36994         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
36995
36996 2001-09-25  Dick Porter  <dick@ximian.com>
36997
36998         * threads-pthread.h:
36999         * threads-pthread.c: Implemented timed thread joining and added
37000         System.Threading.Thread::Join_internal internal call
37001
37002         * icall.c: Added System.Threading.Thread::Join_internal internal call
37003
37004         * threads-dummy.h:
37005         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
37006
37007 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
37008
37009         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
37010         mono_string_intern () to implement the semantics of the ldstr opcode
37011         and the interning of System.Strings.
37012         * icall.c: provide hooks to make String::IsIntern and String::Intern
37013         internalcalls.
37014
37015 2001-09-23  Dick Porter  <dick@ximian.com>
37016
37017         * threads-dummy.c: 
37018         * threads-dummy.h: New files of dummy threading routines
37019
37020         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
37021         support code based on system specifics
37022
37023         Rename PTHREAD_LIBS to THREAD_LIBS
37024         
37025 2001-09-23  Dick Porter  <dick@ximian.com>
37026
37027         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
37028         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
37029         internal calls.
37030         (mono_thread_init): Set up a Thread object instance to return when
37031         the main thread calls Thread.CurrentThread
37032         (mono_thread_cleanup): Wait for all subthreads to exit
37033
37034         * icall.c: New internal calls for System.Threading.Thread::Sleep
37035         (including Schedule) and CurrentThread
37036
37037         * threads.h: New file, to insulate thread-specific stuff from the
37038         rest of the code
37039
37040 2001-09-21  Dick Porter  <dick@ximian.com>
37041
37042         * threads-pthread.h: 
37043         * threads-pthread.c: New file, for handling pthreads-style
37044         threading support.  Start() now starts a new thread and executes
37045         the ThreadStart delegate instance.
37046
37047         * icall.c: Added the internalcall for
37048         System.Threading.Thread::Start_internal
37049
37050         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
37051
37052 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
37053
37054         * loader.c: work around the different signatures for delegates
37055         constructors csc generates in compiled code vs the ones compiled in mscorlib.
37056
37057 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37058
37059         * class.h, class.c: add mono_class_get_field_from_name ().
37060         * *: Fix C comments and other ANSI C issues.
37061
37062 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
37063
37064         * endian.h, assembly.c: fix some endianness issues.
37065
37066 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
37067
37068         * loader.h, load.c: add delegate_class to mono_defaults.
37069         Handle runtime provided methods in mono_get_method ().
37070
37071 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
37072
37073         * loader.c (mono_get_method): use pinvoke for internal call
37074
37075         * icall.c: use pinvoke for internal call
37076
37077         * loader.c (method_from_memberref): set the method name
37078
37079 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
37080
37081         * metadata.c: help the compiler generate better code for
37082         mono_class_from_mono_type ().
37083
37084 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
37085
37086         * class.c (mono_class_metadata_init): delayed computing of the
37087         class size to mono_class_metadata_init ()
37088
37089 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
37090
37091         * class.c, class.h: add an interfaces member to MonoClass.
37092         * image.c, image.h: add assembly_name field to MonoImage
37093         from the assembly table.
37094         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
37095
37096 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37097
37098         * class.c: Handle Array in mono_class_from_mono_type ().
37099         * metadata.c, pedump.c: some endian fixes.
37100
37101 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37102
37103         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
37104         * metadata.c: fix small problem introduced with the latest commit.
37105
37106 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
37107
37108         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
37109         We don't need a MonoMetadata pointer anymore to compare signatures in
37110         mono_metadata_signature_equal (), update callers.
37111         Reduced memory usage an number of allocations for MonoMethodHeader and
37112         MonoMethodSignature.
37113
37114 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
37115
37116         * metadata.c: added compare for szarray.
37117
37118 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
37119
37120         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
37121         and add a couple more types to it and mono_defaults. Give an hint on
37122         classes that need implementing in our corlib and are referenced
37123         in mscorlib.
37124
37125 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
37126
37127         * class.h, class.c: keep track if a class is also an Enum.
37128         * loader.c: Implement a couple more types for use in libffi
37129         marshalling. Gives better diagnostics when failing to dlopen
37130         a library. Set method->klass for P/Invoke methods, too.
37131
37132 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
37133
37134         * class.c, class.h: add a MonoType this_arg to MonoClass that
37135         represents a pointer to an object of the class' type that
37136         can be used by the interpreter and later the type cache.
37137         Add best guess alignment info for valuetype objects.
37138
37139 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
37140
37141         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
37142         into MonoType: one less level of indirection and allocation and
37143         simplifies quite a bit of code. Added cache for MonoTypes that are
37144         used frequently, so that we don't need to allocate them all the time.
37145
37146 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
37147
37148         * class.c (mono_class_create_from_typedef): System.Enum is also a
37149         value type, although it does not derive from System.ValueType
37150         (maybe a bug in the ms compiler?)
37151
37152         * metadata.c (mono_type_size): return the right size for value types
37153
37154         * loader.c (mono_get_method): only initialize method header if not abstract
37155
37156         * class.c (mono_class_from_mono_type): use mono_default values. 
37157
37158 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
37159
37160         * *: use MonoClass pointers instead of <type_tokens>
37161         
37162         * class.h: new flag: metadata_inited.
37163
37164         * class.c (mono_class_metadata_init): impl.
37165         (mono_class_instance_size): impl.
37166         (mono_class_data_size): impl.
37167
37168 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37169
37170         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
37171         MonoClass now has the name and name_space fields. 
37172         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
37173         mono_get_method () takes and optional MonoClass as argument.
37174         Removed mono_typedef_from_name() and added mono_class_token_from_name()
37175         instead that takes advantage of a map from class names to typedef
37176         tokens in MonoImage.
37177
37178 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
37179
37180         * metadata.c: zero is not a valid alignment boundary.
37181         Merge MONO_TYPE_VOID in default decoding code.
37182
37183 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
37184
37185         * image.h: merged MonoMetadata into MonoImage
37186
37187         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
37188         identify the type of elements.
37189
37190 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
37191
37192         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
37193         * cil-coff.h: split MonoMSDOSHeader and add size info.
37194         * image.c: add some consistency checks.
37195         * metadata.c: fix row size computation: one programmer
37196         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
37197         add explanation for the locator routine.
37198         Fix decoding of size in method header.
37199         
37200 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
37201
37202         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
37203         (g_concat_dir_and_file): Bring g_concat_dir_and_file
37204         function from gnome-libs.  This uses the right path separator
37205         based on the OS, and also works around a bug in some systems where
37206         a double slash is not allowed. 
37207         (default_assembly_name_resolver): Use g_concat_dir_and_file
37208         (mono_assembly_open): ditto.
37209
37210 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
37211
37212         * metadata.c (mono_metadata_signature_equal): impl.
37213
37214         * *: void is now a realy MonoType (instead of using NULL)
37215         
37216         * metadata.c (do_mono_metadata_parse_type): use
37217         mono_metadata_parse_type to parse void value.
37218
37219 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
37220
37221         * metadata.c, metadata.h: in the signature and method header store
37222         only the space required for holding the loca vars and incoming arguments.
37223
37224 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
37225
37226         * metadata.c (do_mono_metadata_parse_type): treat void like any
37227         other type (instead of assigning NULL);
37228
37229 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
37230
37231         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
37232
37233 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
37234
37235         * image.c (do_mono_image_open): added a cache for arrays.
37236
37237 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37238
37239         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
37240         decode a single column from a row in a metadata table and changes
37241         to take advantage of it in the typedef locator (gives a nice speed up).
37242         Store offset info for function params.
37243
37244 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
37245
37246         * image.h (MONO_IMAGE_IS_CORLIB): removed 
37247
37248 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
37249
37250         * assembly.c: how could mono_assembly_close () had ever worked?
37251         * metadata.c, metadata.h: provide offset info for local vars.
37252         Implement mono_type_size () to take care of alignment as well
37253         as size (it was mono_field_type_size in cli/class.c before).
37254
37255 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
37256
37257         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
37258
37259         * assembly.h (CORLIB_NAME): set to corlib.dll
37260
37261         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
37262
37263 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37264
37265         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
37266         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
37267         tokentype.h: massive namespace cleanup.
37268
37269 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37270
37271         * metadata.h, metadata.c: decode exception clauses when parsing method header.
37272
37273 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
37274
37275         * metadata.c (mono_metadata_free_type): added check for type !=
37276         NULL (void) before calling mono_metadata_free_type()
37277
37278 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
37279
37280         * metadata.h, row_indexes.h: added header with enumerations to use
37281         to index in the columns from tables in metadata and to decode coded
37282         tokens: we should start using this instead of embedding magic numbers
37283         all over the code.
37284
37285 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
37286
37287         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
37288         Move metadata_t info from cli_image_info_t to MonoImage, where
37289         it's easily accessible. Changed all the uses accordingly.
37290         Added the method and class caches to MonoImage.
37291         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
37292         and mono_metadata_decode_value () signature to be more consistent
37293         with the other parse functions (and simplify code). Taken advantage
37294         of zero-length array allocation with GCC. Removed reduntant (and
37295         wrong) MonoFieldType struct and use MonoParam instead. Changed
37296         mono_metadata_parse_field_type () to use common code for parsing.
37297         Added mono_metadata_typedef_from_field () and
37298         mono_metadata_typedef_from_method () to lookup a typedef index from a
37299         field or method token.
37300         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
37301
37302 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
37303
37304         * metadata.c (mono_metadata_parse_field_type): Implement. 
37305         (do_mono_metadata_parse_type): Split engine from
37306         mono_metadata_parse_type, so that we can create smaller structures
37307         for things that just have one pointer to the MonoType (look at
37308         the MonoFieldType)
37309
37310 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
37311
37312         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
37313         as Jan Gray found out, it is incorrect. 
37314
37315 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
37316
37317         * assembly.c: Implement asssembly loading.  This loads an image
37318         and loads all the referenced assemblies.  Come to think of it, we
37319         could always do lazy loading of the assemblies. 
37320
37321         * image.c (mono_image_open): Keep loaded images in a hashtable.
37322
37323         * image.h (MonoImage): Add reference count.
37324
37325 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
37326
37327         * assembly.c (mono_assembly_open): Keep track of the file name in
37328         case the assembly has no ASSEMBLY table.
37329
37330         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
37331         from get.c here.
37332
37333 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
37334
37335         * metadata.c, metadata.h: decode local vars in method header
37336         parse function. Change callers accordingly.
37337
37338 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
37339
37340         * metadata.h, cil-coff.h: protect against multiple inclusion.
37341         Added some new structures to hold information decoded from metadata:
37342         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
37343         and relevant decoding/free functions.
37344         * metadata.c: implement decoding functions. Add warning for out of bounds
37345         index in mono_metadata_locate(). Implement mono_get_method () to retreive
37346         all the info about a method signature and invocation. Remove check on
37347         uninitialized local var in parse_mh() and fix memory leak.
37348
37349 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
37350
37351         * metadata.h: More macros.
37352
37353         * tokentype.h: New file.
37354
37355 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
37356
37357         * assembly.c: added a consistency check and initialize
37358         some structures with g_new0().
37359         * metadata.c: fixed a couple more bugs in table size computation
37360         and add other checks for out-of bound access to metadata.
37361
37362 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
37363
37364         * metatada.c: fix bugs computing table sizes. Spew a
37365         warning when index in string heap is out of bounds.
37366
37367 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
37368
37369         * metadata.h: Add a couple of macros to manipulate tokens. 
37370
37371 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37372
37373         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
37374         cli_section_tables).
37375
37376 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
37377
37378         * metadata.c (mono_metadata_user_string): New function, provides
37379         access to the UserString heap. 
37380
37381 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
37382
37383         * metadata.c: Add inline documentation.
37384
37385 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
37386
37387         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
37388         files. 
37389
37390 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
37391
37392         * typeattr.h: New file, TypeAttribute flags. 
37393
37394 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
37395
37396         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
37397         mono_assembly_ensure_section): Section loading code.
37398         (load_section_tables): Load the sections.
37399
37400         * mono/metadata/metadata.c (mono_metadata_locate_token,
37401         mono_metadata_locate): Functions to locate the information
37402         definition given a token or a table and an index.
37403         (mono_metadata_compute_table_bases): New.
37404         (compute_size): New function to compute the sizes of the various
37405         tables.
37406
37407         * mono/metadata/metadata.h: Finish listing the different index
37408         types. 
37409
37410         * mono/metadata/pedump.c: Improve to dump new information.
37411
37412 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
37413
37414         * mono/metadata/metadata.c: Entered all the tables matching
37415         Beta2. 
37416
37417         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
37418
37419
37420
37421